TM Forum · Schema

MapArrayCharacteristicValueSpecification_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-maparraycharacteristicvaluespecification-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MapArrayCharacteristicValueSpecification_FVO",
  "title": "MapArrayCharacteristicValueSpecification_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/CharacteristicValueSpecification_FVO"
    },
    {
      "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"
                }
              }
            }
          }
        }
      }
    }
  ]
}