Sentry · Schema
ProjectDetail
APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| slug | string | |
| name | string | |
| platform | string | |
| dateCreated | string | |
| isBookmarked | boolean | |
| isMember | boolean | |
| features | array | |
| firstEvent | string | |
| firstTransactionEvent | boolean | |
| hasAccess | boolean | |
| team | object | |
| teams | array | |
| organization | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProjectDetail",
"title": "ProjectDetail",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"slug": {
"type": "string"
},
"name": {
"type": "string"
},
"platform": {
"type": "string",
"nullable": true
},
"dateCreated": {
"type": "string",
"format": "date-time"
},
"isBookmarked": {
"type": "boolean"
},
"isMember": {
"type": "boolean"
},
"features": {
"type": "array",
"items": {
"type": "string"
}
},
"firstEvent": {
"type": "string",
"format": "date-time",
"nullable": true
},
"firstTransactionEvent": {
"type": "boolean"
},
"hasAccess": {
"type": "boolean"
},
"team": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"slug": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"teams": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"slug": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
},
"organization": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"slug": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
},
"required": [
"id",
"slug",
"name"
]
}