The emails for the user.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/user-emails", "title": "user-emails", "type": "array", "description": "The emails for the user.", "items": { "type": "object", "required": [ "value", "type", "primary" ], "properties": { "value": { "type": "string", "description": "The email address.", "example": "[email protected]" }, "type": { "type": "string", "description": "The type of email address.", "example": "work" }, "primary": { "type": "boolean", "description": "Whether this email address is the primary address.", "example": true } } } }