TM Forum · Schema

NumberCharacteristic_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-numbercharacteristic-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NumberCharacteristic_FVO",
  "title": "NumberCharacteristic_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Characteristic_FVO"
    },
    {
      "type": "object",
      "description": "A characteristic which value is a Number.",
      "properties": {
        "value": {
          "type": "number",
          "description": "Value of the characteristic"
        }
      },
      "required": [
        "value"
      ]
    }
  ]
}