{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.emailAddress",
"title": "emailAddress",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "The email address of the person or entity.",
"nullable": true
},
"name": {
"type": "string",
"description": "The display name of the person or entity.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}