{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "OnlineOrderCheckinResponse", "description": "OnlineOrderCheckinResponse schema from PAR Punchh Online Ordering and SSO API", "$id": "https://raw.githubusercontent.com/api-evangelist/punchh/refs/heads/main/json-schema/online-ordering-online-order-checkin-response-schema.json", "type": "object", "properties": { "first_name": { "type": "string", "example": "Jane Smith" }, "last_name": { "type": "string", "example": "Jane Smith" }, "total_checkins": { "type": "integer", "example": "example" }, "points_balance": { "type": "number", "example": "example" }, "checkin": { "type": "object", "properties": { "checkin_id": { "type": "integer", "example": "500123" }, "points_earned": { "type": "number", "example": "example" } } } } }