{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-structure/public-api-v6-contract-item-structure.json", "name": "ContractItem", "description": "Implementation of the 'ContractItem' model.", "type": "object", "properties": { "Id": { "type": "string", "description": "The ID of the item.", "example": "example-value" }, "Name": { "type": "string", "description": "The name of the item.", "example": "Sunset Yoga Studio" }, "Description": { "type": "string", "description": "A description of the item.", "example": "Example note for Mindbody Public API." }, "Type": { "type": "string", "description": "The type of the item.", "example": "example-value" }, "Price": { "type": "double", "description": "The price of the item.", "example": 49.99 }, "Quantity": { "type": "int32", "description": "The quantity of the item.", "example": 10 }, "OneTimeItem": { "type": "boolean", "description": "When `true`, indicates that the item is charged only once.
When `false`, indicates that the item is charged multiple times.", "example": true } } }