Email

Email

APIs.ioEngineeringPlatform

Properties

Name Type Description
email string
primary boolean
verified boolean
visibility string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-email-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/email",
  "title": "Email",
  "description": "Email",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "primary": {
      "type": "boolean",
      "example": true
    },
    "verified": {
      "type": "boolean",
      "example": true
    },
    "visibility": {
      "type": "string",
      "example": "public",
      "nullable": true
    }
  },
  "required": [
    "email",
    "primary",
    "verified",
    "visibility"
  ]
}