{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RegistrantCreateResponse", "title": "RegistrantCreateResponse", "type": "object", "properties": { "id": { "type": "string", "example": "123456", "description": "New registrant's ID." }, "status": { "type": "string", "enum": [ "approved", "pending", "rejected" ], "description": "New registrant's status.\n * `approved` - Registrant has been approved.\n * `pending` - Registrant is in a pending list waiting for host or cohost approval.\n * `rejected` - Registrant has been rejected by the host or cohost.\n" }, "firstName": { "type": "string", "example": "bob", "description": "Registrant's first name." }, "lastName": { "type": "string", "example": "Lee", "description": "Registrant's last name." }, "email": { "type": "string", "example": "bob@example.com", "description": "Registrant's email." }, "jobTitle": { "type": "string", "example": "manager", "description": "Registrant's job title." }, "companyName": { "type": "string", "example": "cisco", "description": "Registrant's company." }, "address1": { "type": "string", "example": "address1 string", "description": "Registrant's first address line." }, "address2": { "type": "string", "example": "address2 string", "description": "Registrant's second address line." }, "city": { "type": "string", "example": "New York", "description": "Registrant's city name." }, "state": { "type": "string", "example": "New York", "description": "Registrant's state." }, "zipCode": { "type": "number", "example": 123456, "description": "Registrant's postal code." }, "countryRegion": { "type": "string", "example": "United States", "description": "Registrant's country or region." }, "workPhone": { "type": "string", "example": "+1 123456", "description": "Registrant's work phone number." }, "fax": { "type": "string", "example": "123456", "description": "Registrant's FAX number." }, "registrationTime": { "type": "string", "example": "2021-09-07T09:29:13+08:00", "description": "Registrant's registration time." }, "customizedQuestions": { "type": "array", "items": { "$ref": "#/components/schemas/CustomizedRegistrant" }, "description": "Registrant's answers for customized questions, Registration options define whether or not this is required." } } }