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