blob: b3927befa37bf151876a16d0b7383589d59b9fe5 [file]
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://gpio-port.local/sgpiom/banks.schema.json",
"title": "SGPIOM Banks",
"type": "array",
"items": {
"type": "object",
"required": ["name", "pin_offset", "ngpios", "reserved_pins"],
"properties": {
"name": { "type": "string", "minLength": 1 },
"pin_offset": { "type": "integer", "minimum": 0 },
"ngpios": { "type": "integer", "minimum": 1, "maximum": 32 },
"reserved_pins": {
"type": "array",
"items": { "type": "integer", "minimum": 0 }
}
},
"additionalProperties": true
}
}