{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ObjectArrayCharacteristicValueSpecification",
"title": "ObjectArrayCharacteristicValueSpecification",
"allOf": [
{
"$ref": "#/components/schemas/CharacteristicValueSpecification"
},
{
"type": "object",
"description": "A specification for a characteristic for which the value is an array of objects",
"properties": {
"value": {
"type": "array",
"items": {
"type": "object"
}
}
}
}
]
}