TM Forum · Schema

PricingLogicAlgorithm_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-pricinglogicalgorithm-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PricingLogicAlgorithm_FVO",
  "title": "PricingLogicAlgorithm_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Entity_FVO"
    },
    {
      "type": "object",
      "description": "The PricingLogicAlgorithm entity represents an instantiation of an interface specification to external rating function (without a modeled bahavior in SID). Some of the parameters of the interface definiition may be already set (such as price per unit) and some may be gathered during the rating process from the event (such as call duration) or from ProductCharacteristicValues (such as assigned bandwidth)",
      "properties": {
        "description": {
          "type": "string",
          "description": "Description of the PricingLogicAlgorithm"
        },
        "name": {
          "type": "string",
          "description": "Name given to the PricingLogicAlgorithm"
        },
        "plaSpecId": {
          "type": "string",
          "description": "id of corresponding PricingLogicAlgorithm specification"
        },
        "validFor": {
          "$ref": "#/components/schemas/TimePeriod"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "PricingLogicAlgorithm": "#/components/schemas/PricingLogicAlgorithm_FVO"
    }
  }
}