mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-01 03:21:24 +00:00
24 lines
676 B
JSON
24 lines
676 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"$id": "openqa-complete.json",
|
||
|
"type": "object",
|
||
|
"title": "Schema for complete upstream format openQA job template data",
|
||
|
"required": [
|
||
|
"Machines",
|
||
|
"TestSuites",
|
||
|
"Products"
|
||
|
],
|
||
|
"anyOf": [
|
||
|
{"required": [ "JobTemplates" ]},
|
||
|
{"required": [ "JobGroups" ]}
|
||
|
],
|
||
|
"properties": {
|
||
|
"Machines": { "$ref": "openqa-machines.json" },
|
||
|
"TestSuites": { "$ref": "openqa-testsuites.json" },
|
||
|
"Products": { "$ref": "openqa-products.json" },
|
||
|
"JobTemplates": { "$ref": "openqa-jobtemplates.json" },
|
||
|
"JobGroups": { "$ref": "openqa-jobgroups.json" }
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|