{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BooleanArrayCharacteristic_FVO", "title": "BooleanArrayCharacteristic_FVO", "allOf": [ { "$ref": "#/components/schemas/Characteristic_FVO" }, { "type": "object", "description": "A characteristic which value is an array of Boolean(s).", "properties": { "value": { "type": "array", "description": "A characteristic which value is an array of Boolean(s).", "items": { "type": "boolean", "description": "Characteristic item boolean value" } } }, "required": [ "value" ] } ] }