36 lines
525 B
JSON
36 lines
525 B
JSON
|
{
|
||
|
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
||
|
|
||
|
"type": "object",
|
||
|
|
||
|
"required": [
|
||
|
"pat",
|
||
|
"agent_pool",
|
||
|
"devops_url",
|
||
|
"machine_name",
|
||
|
"box_name",
|
||
|
"box_version"
|
||
|
],
|
||
|
|
||
|
"properties": {
|
||
|
"pat": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"agent_pool": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"devops_url": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"machine_name": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"box_name": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"box_version": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
}
|