TM Forum · Schema

NumberArrayCharacteristic

NumberArrayCharacteristic schema from TM Forum API

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tmf622-product-ordering-number-array-characteristic-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/tmf622-product-ordering-number-array-characteristic-schema.json",
  "title": "NumberArrayCharacteristic",
  "description": "NumberArrayCharacteristic schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Characteristic"
    },
    {
      "type": "object",
      "description": "A characteristic which value is an array of Number(s).",
      "properties": {
        "value": {
          "type": "array",
          "items": {
            "type": "number"
          }
        }
      }
    }
  ]
}