Penumbra/schemas/structs/meta_shp.json
2025-05-18 15:52:47 +02:00

27 lines
615 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"Entry": {
"type": "boolean"
},
"Slot": {
"$ref": "meta_enums.json#HumanSlot"
},
"Id": {
"$ref": "meta_enums.json#U16"
},
"Shape": {
"type": "string",
"minLength": 5,
"maxLength": 30,
"pattern": "^shpx_"
},
"ConnectorCondition": {
"$ref": "meta_enums.json#ShapeConnectorCondition"
}
},
"required": [
"Shape"
]
}