TM Forum · Schema

IntegerArrayCharacteristic

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-integerarraycharacteristic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegerArrayCharacteristic",
  "title": "IntegerArrayCharacteristic",
  "allOf": [
    {
      "$ref": "#/components/schemas/Characteristic"
    },
    {
      "type": "object",
      "description": "A characteristic which value is an array of Integer(s).",
      "properties": {
        "value": {
          "type": "array",
          "description": "A characteristic which value is an array of Integer(s).",
          "items": {
            "type": "integer",
            "description": "Characteristic value"
          }
        }
      }
    }
  ]
}