user-emails

The emails for the user.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-user-emails-schema.json Raw ↑
{
  "$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
      }
    }
  }
}