TM Forum · Schema

StringArrayCharacteristic_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-stringarraycharacteristic-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StringArrayCharacteristic_FVO",
  "title": "StringArrayCharacteristic_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Characteristic_FVO"
    },
    {
      "type": "object",
      "description": "A characteristic which value is an array of String(s).",
      "properties": {
        "value": {
          "type": "array",
          "description": "Collection of string characteristics",
          "items": {
            "type": "string",
            "description": "Characteristic value"
          }
        }
      },
      "required": [
        "value"
      ]
    }
  ]
}