Cisco Webex · Schema
RegistrantInput
CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| firstName | string | First name of the registrant. |
| lastName | string | Last name of the registrant. |
| string | Email address of the registrant. | |
| jobTitle | string | Job title of the registrant. |
| companyName | string | Company name of the registrant. |
| address1 | string | Address line 1. |
| city | string | City. |
| state | string | State or province. |
| zipCode | string | Postal or zip code. |
| countryRegion | string | Country or region. |
| phone | string | Phone number. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RegistrantInput",
"title": "RegistrantInput",
"type": "object",
"required": [
"firstName",
"lastName",
"email"
],
"properties": {
"firstName": {
"type": "string",
"description": "First name of the registrant."
},
"lastName": {
"type": "string",
"description": "Last name of the registrant."
},
"email": {
"type": "string",
"format": "email",
"description": "Email address of the registrant."
},
"jobTitle": {
"type": "string",
"description": "Job title of the registrant."
},
"companyName": {
"type": "string",
"description": "Company name of the registrant."
},
"address1": {
"type": "string",
"description": "Address line 1."
},
"city": {
"type": "string",
"description": "City."
},
"state": {
"type": "string",
"description": "State or province."
},
"zipCode": {
"type": "string",
"description": "Postal or zip code."
},
"countryRegion": {
"type": "string",
"description": "Country or region."
},
"phone": {
"type": "string",
"description": "Phone number."
}
}
}