{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EmailAddress",
"type": "object",
"description": "Represents an email address entity.",
"properties": {
"name": {
"type": "string",
"description": "The display name of the person or entity."
},
"address": {
"type": "string",
"description": "The email address of the person or entity."
}
}
}