LookAtMySuitBot/js/node_modules/protodef-validator/ProtoDef/schemas/protocol_schema.json

44 lines
861 B
JSON
Raw Normal View History

2023-12-24 20:08:39 -05:00
{
"title": "protocol",
"type": "object",
"properties": {
"types": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_]+$": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": [
{
"type": "string"
},
{
"oneOf": [
{
"type": "object"
},
{
"type": "array"
}
]
}
]
}
]
}
},
"additionalProperties": false
}
},
"patternProperties": {
"^(?!types)[a-zA-Z_]+$": {
"$ref": "#"
}
},
"additionalProperties": false
}