TM Forum · JSON Structure

Tmf632 Party Management Boolean Array Characteristic Structure

BooleanArrayCharacteristic schema from TM Forum API

Type: Properties: 0
TelcoTelecommunicationsBSSOSSOpen APIsStandards

BooleanArrayCharacteristic is a JSON Structure definition published by TM Forum. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-structure/tmf632-party-management-boolean-array-characteristic-structure.json",
  "name": "BooleanArrayCharacteristic",
  "description": "BooleanArrayCharacteristic schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Characteristic"
    },
    {
      "type": "object",
      "description": "A characteristic which value is an array of Boolean(s).",
      "properties": {
        "value": {
          "type": "array",
          "items": {
            "type": "boolean"
          }
        }
      }
    }
  ]
}