TM Forum · Schema

MapArrayCharacteristicValueSpecification

MapArrayCharacteristicValueSpecification schema from TM Forum API

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tmf621-trouble-ticket-map-array-characteristic-value-specification-schema.json Raw ↑
{
  "$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-map-array-characteristic-value-specification-schema.json",
  "title": "MapArrayCharacteristicValueSpecification",
  "description": "MapArrayCharacteristicValueSpecification schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/CharacteristicValueSpecification"
    },
    {
      "type": "object",
      "description": "A specification for a characteristic for which the value is an array of mapped objects",
      "properties": {
        "value": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "value": {
                "type": "object",
                "additionalProperties": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  ]
}