TM Forum · JSON Structure

Tmf637 Product Inventory Price Structure

Price schema from TM Forum API

Type: Properties: 0
TelcoTelecommunicationsBSSOSSOpen APIsStandards

Price is a JSON Structure definition published by TM Forum. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-structure/tmf637-product-inventory-price-structure.json",
  "name": "Price",
  "description": "Price schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "Provides all amounts (tax included, duty free, tax rate), used currency and percentage to apply for Price and Price Alteration.",
      "properties": {
        "dutyFreeAmount": {
          "$ref": "#/components/schemas/Money"
        },
        "percentage": {
          "type": "float",
          "description": "Percentage to apply for ProdOfferPriceAlteration"
        },
        "taxIncludedAmount": {
          "$ref": "#/components/schemas/Money"
        },
        "taxRate": {
          "type": "float",
          "description": "Tax rate"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "Price": "#/components/schemas/Price"
    }
  }
}