Sentry · Schema

OrganizationMember

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
email string
name string
role string
roleName string
pending boolean
expired boolean
dateCreated string
user object
teams array
View JSON Schema on GitHub

JSON Schema

sentry-system-organizationmember-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationMember",
  "title": "OrganizationMember",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "name": {
      "type": "string"
    },
    "role": {
      "type": "string"
    },
    "roleName": {
      "type": "string"
    },
    "pending": {
      "type": "boolean"
    },
    "expired": {
      "type": "boolean"
    },
    "dateCreated": {
      "type": "string",
      "format": "date-time"
    },
    "user": {
      "type": "object",
      "nullable": true,
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "username": {
          "type": "string"
        },
        "email": {
          "type": "string",
          "format": "email"
        }
      }
    },
    "teams": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "id",
    "email",
    "role"
  ]
}