TM Forum · Schema

FloatCharacteristicValueSpecification_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-floatcharacteristicvaluespecification-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FloatCharacteristicValueSpecification_FVO",
  "title": "FloatCharacteristicValueSpecification_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/CharacteristicValueSpecification_FVO"
    },
    {
      "type": "object",
      "description": "A specification for a characteristic for which the value is a floating point number",
      "properties": {
        "value": {
          "type": "number",
          "format": "float",
          "description": "Value of the characteristic"
        }
      }
    }
  ]
}