{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClientTrustedAdvisor",
"title": "ClientTrustedAdvisor",
"required": [
"email",
"name",
"role"
],
"type": "object",
"properties": {
"role": {
"type": "string",
"description": "Role of the Client Trusted Advisor: Example : Lawyer , Accountant , etc..."
},
"name": {
"type": "string",
"description": "Name of the client trusted advisor"
},
"email": {
"type": "string",
"description": "Email Id of the Client Trusted Advisor: PRIMARY , SECONDARY , PERSONAL , WORK and OTHERS"
}
}
}