Axway · Schema

platform.team.user.remove

Published when a user or client is removed from a team.

API ManagementEnterpriseIntegrationSecurity

Properties

Name Type Description
team_guid object
team_name object
View JSON Schema on GitHub

JSON Schema

axway-platformteamuserremove-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/platform.team.user.remove",
  "title": "platform.team.user.remove",
  "type": "object",
  "description": "Published when a user or client is removed from a team.",
  "x-context": "team",
  "allOf": [
    {
      "$ref": "#/components/schemas/EventDataOrg"
    },
    {
      "$ref": "#/components/schemas/EventDataActor"
    },
    {
      "oneOf": [
        {
          "$ref": "#/components/schemas/EventDataUser"
        },
        {
          "$ref": "#/components/schemas/EventDataClient"
        }
      ]
    }
  ],
  "properties": {
    "team_guid": {
      "$ref": "#/components/schemas/Team/properties/guid"
    },
    "team_name": {
      "$ref": "#/components/schemas/Team/properties/name"
    }
  }
}