{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-schema/tmf621-trouble-ticket-boolean-array-characteristic-schema.json",
"title": "BooleanArrayCharacteristic",
"description": "BooleanArrayCharacteristic schema from TM Forum API",
"allOf": [
{
"$ref": "#/components/schemas/Characteristic"
},
{
"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"
}
}
}
}
]
}