Axway · Schema

UserTeams

List of teams the user belongs to.

API ManagementEnterpriseIntegrationSecurity
View JSON Schema on GitHub

JSON Schema

axway-userteams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserTeams",
  "title": "UserTeams",
  "type": "array",
  "description": "List of teams the user belongs to.",
  "items": {
    "type": "object",
    "description": "Teams a user belongs to.",
    "properties": {
      "default": {
        "$ref": "#/components/schemas/Team/properties/default"
      },
      "guid": {
        "$ref": "#/components/schemas/Team/properties/guid"
      },
      "name": {
        "$ref": "#/components/schemas/Team/properties/name"
      },
      "roles": {
        "type": "array",
        "description": "A list of roles the user has in the team",
        "items": {
          "type": "object",
          "properties": {
            "id": {
              "$ref": "#/components/schemas/Role/properties/id"
            },
            "name": {
              "$ref": "#/components/schemas/Role/properties/name"
            }
          }
        }
      },
      "tags": {
        "$ref": "#/components/schemas/Team/properties/tags"
      }
    }
  }
}