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