Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ID of the report type. |
| name | string | The name of the report type. |
| systemManaged | boolean | Whether the report type is system-managed. |
| deprecateTime | string | The date and time when the report type was deprecated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReportType",
"title": "ReportType",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The ID of the report type.",
"example": "abc123def456"
},
"name": {
"type": "string",
"description": "The name of the report type.",
"example": "Example Title"
},
"systemManaged": {
"type": "boolean",
"description": "Whether the report type is system-managed.",
"example": true
},
"deprecateTime": {
"type": "string",
"format": "date-time",
"description": "The date and time when the report type was deprecated.",
"example": "2026-01-15T10:30:00Z"
}
}
}