Crystal Reports · Schema
ReportSummary
Summary information about a Crystal Report
Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP
Properties
| Name | Type | Description |
|---|---|---|
| report_name | string | Internal name of the report |
| report_title | string | Display title of the report |
| file_format_version | object | |
| author | string | Author of the report |
| subject | string | Subject of the report |
| keywords | string | Keywords associated with the report |
| comments | string | Comments about the report |
| last_data_refresh_date | string | Last time the report data was refreshed |
| export_uri | string | URI for exporting the report |
| service_uri | string | URI for the OData data service |
| edit_uri | string | URI for editing or managing the report |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/crystal-reports/refs/heads/main/json-schema/crystal-reports-report-summary-schema.json",
"title": "ReportSummary",
"description": "Summary information about a Crystal Report",
"type": "object",
"properties": {
"report_name": {
"type": "string",
"description": "Internal name of the report",
"example": "WorldSalesReport.rpt"
},
"report_title": {
"type": "string",
"description": "Display title of the report",
"example": "World Sales Report"
},
"file_format_version": {
"$ref": "#/components/schemas/FileFormatVersion"
},
"author": {
"type": "string",
"description": "Author of the report",
"example": "John Smith"
},
"subject": {
"type": "string",
"description": "Subject of the report",
"example": "Global Sales Data"
},
"keywords": {
"type": "string",
"description": "Keywords associated with the report",
"example": "sales, quarterly, revenue"
},
"comments": {
"type": "string",
"description": "Comments about the report",
"example": "Updated for Q4 2023 data"
},
"last_data_refresh_date": {
"type": "string",
"format": "date-time",
"description": "Last time the report data was refreshed",
"example": "2023-12-15T14:30:00Z"
},
"export_uri": {
"type": "string",
"description": "URI for exporting the report",
"example": "/biprws/infostore/5765/rpt/export"
},
"service_uri": {
"type": "string",
"description": "URI for the OData data service",
"example": "/biprws/infostore/5765/rpt/data.svc"
},
"edit_uri": {
"type": "string",
"description": "URI for editing or managing the report",
"example": "/biprws/infostore/5765/rpt/instance"
}
}
}