{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-create-account-model-schema.json", "title": "CreateAccountModel", "description": "Create account model", "type": "object", "properties": { "Email": { "description": "Email address", "type": "string", "example": "owner@example.com" }, "StoreName": { "description": "Store name", "type": "string", "example": "Example Name" }, "LanguageId": { "description": "LanguageId", "type": "string", "example": "500123" }, "Rid": { "format": "int32", "description": "Referral ID", "type": "integer", "nullable": true, "example": 500123 }, "Cid": { "description": "Campaign ID", "type": "string", "example": "500123" }, "RecaptchaToken": { "description": "Google Recaptcha Token", "type": "string", "example": "string" } }, "required": [ "Email", "StoreName" ] }