Files
libretiny/families.schema.json
2023-05-18 21:03:08 +02:00

49 lines
785 B
JSON

{
"type": "object",
"properties": {
"$schema": {
"type": "string"
}
},
"patternProperties": {
"^[a-z0-9-]+$": {
"type": "object",
"properties": {
"parent": {
"type": [
"string",
"null"
],
"pattern": "^[a-z0-9-]+$"
},
"code": {
"type": "string",
"pattern": "^[a-z0-9]+$"
},
"description": {
"type": "string"
},
"id": {
"type": "string",
"pattern": "^0x[0-9A-F]{8}$"
},
"short_name": {
"type": "string",
"pattern": "^[A-Z0-9]+$"
},
"package": {
"type": "string",
"pattern": "^framework-[a-z0-9-]+$"
}
},
"additionalProperties": false,
"required": [
"parent",
"code",
"description"
]
}
},
"additionalProperties": false
}