{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IntroductoryPriceInfo", "title": "IntroductoryPriceInfo", "type": "object", "description": "Contains the introductory price information for a subscription.", "properties": { "introductoryPriceCurrencyCode": { "type": "string", "description": "ISO 4217 currency code for the introductory price.", "example": "example_value" }, "introductoryPriceAmountMicros": { "type": "string", "format": "int64", "description": "Introductory price in micro-units of the currency.", "example": "example_value" }, "introductoryPricePeriod": { "type": "string", "description": "Introductory price period in ISO 8601 format (e.g., P1W for one week, P1M for one month).", "example": "example_value" }, "introductoryPriceCycles": { "type": "integer", "description": "Number of billing periods the introductory price applies for.", "example": 10 } } }