dokytree/samples/it_v2/schemas_builder/parts/software.json

23 lines
296 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"publisher": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
},
"licenses": {
"oneOf": [
{"type": "integer"},
{"type": "string"},
{"enum": [
"''"
]}
]
}
}
}