Email domain

Match an entire email domain.

APIs.ioEngineeringPlatform

Properties

Name Type Description
email_domain object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-domain-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/access_domain_rule",
  "title": "Email domain",
  "description": "Match an entire email domain.",
  "properties": {
    "email_domain": {
      "properties": {
        "domain": {
          "description": "The email domain to match.",
          "example": "example.com",
          "type": "string"
        }
      },
      "required": [
        "domain"
      ],
      "type": "object"
    }
  },
  "required": [
    "email_domain"
  ],
  "type": "object"
}