mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 05:54:22 +00:00
22 lines
451 B
JSON
22 lines
451 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"$id": "openqa-settingsarray.json",
|
||
|
"title": "openQA settings array schema",
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"key",
|
||
|
"value"
|
||
|
],
|
||
|
"properties": {
|
||
|
"key": {
|
||
|
"type": "string",
|
||
|
"pattern": "^[+]?[A-Z0-9_].*$"
|
||
|
},
|
||
|
"value": { "type": [ "string", "number" ] }
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|
||
|
}
|