Sentry · Schema

TeamDetail

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
slug string
name string
dateCreated string
isMember boolean
memberCount integer
avatar object
organization object
projects array
View JSON Schema on GitHub

JSON Schema

sentry-system-teamdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TeamDetail",
  "title": "TeamDetail",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "dateCreated": {
      "type": "string",
      "format": "date-time"
    },
    "isMember": {
      "type": "boolean"
    },
    "memberCount": {
      "type": "integer"
    },
    "avatar": {
      "type": "object",
      "properties": {
        "avatarType": {
          "type": "string"
        },
        "avatarUuid": {
          "type": "string",
          "nullable": true
        }
      }
    },
    "organization": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "slug": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "projects": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Project"
      }
    }
  },
  "required": [
    "id",
    "slug",
    "name"
  ]
}