Price Format

v3.0.0
price_format.json

Shared pricing structures for commercial and financial fields.

Canonical File

URL: https://schemas.meta-aiml.org/v3.0.0/components/price_format.json

Component endpoint: https://schemas.meta-aiml.org/v3.0.0/components/price_format.json

Definitions
Definitions:
- Price (required: price, priceCurrency)
- PriceRange
- Discount
- Subscription
- Offer
Schema Reference Example
{
  "properties": {
    "averageTicket": {
      "$ref": "https://schemas.meta-aiml.org/v3.0.0/components/price_format.json#/$defs/PriceRange"
    },
    "subscriptions": {
      "type": "array",
      "items": {
        "$ref": "https://schemas.meta-aiml.org/v3.0.0/components/price_format.json#/$defs/Subscription"
      }
    }
  }
}
Value Example
{
  "averageTicket": {
    "minPrice": 45,
    "maxPrice": 130,
    "currency": "USD",
    "label": "premium"
  },
  "offer": {
    "name": "Dinner Tasting",
    "price": 95,
    "priceCurrency": "USD",
    "availability": "InStock"
  }
}