choices schema id=null
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sebastian Frank 2022-08-16 11:07:52 +02:00
parent 5d77340b4e
commit cbe4d1f48b

View File

@ -84,6 +84,19 @@
"items": {
"type": "object",
"properties": {
"id": {
"oneOf": [
{
"type": "null"
},
{
"type": "string"
},
{
"type": "number"
}
]
},
"name": {
"description": "name is human readable value",
"$ref": "#/definitions/i18nString"
@ -92,22 +105,6 @@
"$ref": "https://raw.githubusercontent.com/rcorp/css-schema/master/schema.json"
}
},
"oneOf": [
{
"properties": {
"id": {
"type": "number"
}
}
},
{
"properties": {
"id": {
"type": "string"
}
}
}
],
"required": ["id", "name"]
}
},