Amazon WorkMail · Schema

Member

The representation of a user or group.

Business CommunicationCalendarEmailExchangeEnterprise

Properties

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

JSON Schema

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