TM Forum · Schema

FloatArrayCharacteristicValueSpecification

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

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