mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 05:54:22 +00:00
22 lines
534 B
JSON
22 lines
534 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"$id": "fif-product.json",
|
||
|
"title": "FIF single product schema",
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"arch",
|
||
|
"distri",
|
||
|
"flavor",
|
||
|
"version"
|
||
|
],
|
||
|
"properties": {
|
||
|
"arch": { "$ref": "fif-arch.json" },
|
||
|
"distri": { "$ref": "fif-distri.json" },
|
||
|
"flavor": { "type": "string" },
|
||
|
"version": { "$ref": "fif-version.json" },
|
||
|
"settings": { "$ref": "fif-settingshash.json" },
|
||
|
"name": { "type": "string" }
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|