TM Forum · Schema

BooleanArrayCharacteristicValueSpecification_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-booleanarraycharacteristicvaluespecification-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BooleanArrayCharacteristicValueSpecification_FVO",
  "title": "BooleanArrayCharacteristicValueSpecification_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/CharacteristicValueSpecification_FVO"
    },
    {
      "type": "object",
      "description": "A specification for a characteristic for which the value is an array booleans",
      "properties": {
        "value": {
          "type": "array",
          "items": {
            "type": "boolean"
          }
        }
      }
    }
  ]
}