schema/platform.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"minItems": 1,
"uniqueItems": true,
"items": {
"type": "object",
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"marketingName": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"version": {
"type": "string"
},
"manufacturer": {
"type": "string"
},
"bits": {
"type": "integer"
}
},
"required": [
"name",
"marketingName",
"version",
"manufacturer",
"bits"
]
}
}