Email

Matches a specific email.

APIs.ioEngineeringPlatform

Properties

Name Type Description
email object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-email-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/access_email_rule",
  "title": "Email",
  "description": "Matches a specific email.",
  "properties": {
    "email": {
      "properties": {
        "email": {
          "description": "The email of the user.",
          "example": "[email protected]",
          "format": "email",
          "type": "string"
        }
      },
      "required": [
        "email"
      ],
      "type": "object"
    }
  },
  "required": [
    "email"
  ],
  "type": "object"
}