TM Forum · Schema

StringCharacteristicValueSpecification

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-stringcharacteristicvaluespecification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StringCharacteristicValueSpecification",
  "title": "StringCharacteristicValueSpecification",
  "allOf": [
    {
      "$ref": "#/components/schemas/CharacteristicValueSpecification"
    },
    {
      "type": "object",
      "description": "A specification for a characteristic for which the value is a string",
      "properties": {
        "value": {
          "type": "string",
          "description": "Value of the characteristic"
        }
      }
    }
  ]
}