TM Forum · Schema

FloatArrayCharacteristic_MVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-floatarraycharacteristic-mvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FloatArrayCharacteristic_MVO",
  "title": "FloatArrayCharacteristic_MVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Characteristic_MVO"
    },
    {
      "type": "object",
      "description": "A characteristic which value is an array of Float(s).",
      "properties": {
        "value": {
          "type": "array",
          "items": {
            "type": "number",
            "format": "float"
          }
        }
      },
      "required": [
        "value"
      ]
    }
  ]
}