Axway · Schema

platform.team.default

Published when a team is changed to the default within an org.

API ManagementEnterpriseIntegrationSecurity

Properties

Name Type Description
team object The created team
View JSON Schema on GitHub

JSON Schema

axway-platformteamdefault-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/platform.team.default",
  "title": "platform.team.default",
  "type": "object",
  "description": "Published when a team is changed to the default within an org.",
  "x-context": "team",
  "allOf": [
    {
      "$ref": "#/components/schemas/EventDataOrg"
    },
    {
      "$ref": "#/components/schemas/EventDataActor"
    }
  ],
  "properties": {
    "team": {
      "type": "object",
      "description": "The created team",
      "properties": {
        "default": {
          "$ref": "#/components/schemas/Team/properties/default"
        },
        "guid": {
          "$ref": "#/components/schemas/Team/properties/guid"
        },
        "name": {
          "$ref": "#/components/schemas/Team/properties/name"
        }
      },
      "example": {
        "default": {},
        "guid": {},
        "name": {}
      }
    }
  }
}