{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/bundleItemsItem", "title": "bundleItemsItem", "description": "An item included in a bundle, representing a service or product.", "type": "object", "properties": { "type": { "type": "string", "description": "Service type.", "example": "type" }, "id": { "type": "integer", "description": "Service identifier.", "example": 7436 }, "name": { "type": "string", "description": "Service name.", "example": "name" }, "price": { "type": "integer", "description": "Service price. The last two digits are the cents.", "example": 1000 } } }