Amazon WorkMail · JSON Structure

Workmail Group Structure

The representation of an WorkMail group.

Type: object Properties: 6
Business CommunicationCalendarEmailExchangeEnterprise

Group is a JSON Structure definition published by Amazon WorkMail, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Id Email Name State EnabledDate DisabledDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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-structure.org/meta/core/v0/#",
  "name": "Group",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-structure/workmail-group-structure.json"
}