Amazon WorkMail · Schema

Group

The representation of an WorkMail group.

Business CommunicationCalendarEmailExchangeEnterprise

Properties

Name Type Description
Id object
Email object
Name object
State object
EnabledDate object
DisabledDate object
View JSON Schema on GitHub

JSON Schema

workmail-group-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "Id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkMailIdentifier"
        },
        {
          "description": "The identifier of the group."
        }
      ]
    },
    "Email": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EmailAddress"
        },
        {
          "description": "The email of the group."
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GroupName"
        },
        {
          "description": "The name of the group."
        }
      ]
    },
    "State": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityState"
        },
        {
          "description": "The state of the group, which can be ENABLED, DISABLED, or DELETED."
        }
      ]
    },
    "EnabledDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date indicating when the group was enabled for WorkMail use."
        }
      ]
    },
    "DisabledDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date indicating when the group was disabled from WorkMail use."
        }
      ]
    }
  },
  "description": "The representation of an WorkMail group.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Group",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-schema/workmail-group-schema.json"
}