mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-01 03:21:24 +00:00
23 lines
568 B
JSON
23 lines
568 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"$id": "openqa-product.json",
|
||
|
"title": "Upstream openQA single product schema",
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"arch",
|
||
|
"distri",
|
||
|
"flavor",
|
||
|
"version"
|
||
|
],
|
||
|
"properties": {
|
||
|
"arch": { "type": "string" },
|
||
|
"distri": { "type": "string" },
|
||
|
"flavor": { "type": "string" },
|
||
|
"version": { "type": "string" },
|
||
|
"settings": { "$ref": "openqa-settingsarray.json" },
|
||
|
"name": { "type": "string" },
|
||
|
"description": { "type": "string" }
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|