TM Forum · Schema

ObjectArrayCharacteristic

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-objectarraycharacteristic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ObjectArrayCharacteristic",
  "title": "ObjectArrayCharacteristic",
  "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"
          }
        }
      }
    }
  ]
}