{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/devices-card-reader-registration-request-schema.json", "title": "CardReaderRegistrationRequest", "description": "Card reader registration request", "type": "object", "properties": { "RegistrationCode": { "description": "The reader registration code", "type": "string", "example": "string" }, "KioskDeviceId": { "description": "The kiosk device id", "type": "string", "example": "500123" } }, "required": [ "RegistrationCode" ] }