{ "type": "object", "name": "Registration-InitializeRequest", "properties": { "userdata": { "type": "object", "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" }, "email": { "type": "string" }, "username": { "type": "string" } }, "required": [ "firstName", "lastName", "email", "username" ] }, "customdata": { "type": "object", "properties": { "mobilePhone": { "type": "string" }, "streetAddress": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" }, "zip": { "type": "string" }, "privacyPolicy": { "type": "boolean" } }, "required": [ "mobilePhone", "streetAddress", "city", "state", "zip", "privacyPolicy" ] }, "password": { "type": "string" }, "recaptcha": { "type": "string" }, "verificationmethod": { "type": "string" } }, "required": [ "userdata", "customdata", "password", "recaptcha", "verificationmethod" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }