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