Crystal Reports · Schema
InfostoreEntry
An object in the infostore repository (folder, report, etc.)
Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique infostore object identifier |
| cuid | string | Cluster unique identifier |
| name | string | Display name of the object |
| type | string | Object type (e.g., Folder, CrystalReport) |
| description | string | Object description |
| uri | string | Relative URI to access this object |
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-infostore-entry-schema.json",
"title": "InfostoreEntry",
"description": "An object in the infostore repository (folder, report, etc.)",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique infostore object identifier",
"example": 5765
},
"cuid": {
"type": "string",
"description": "Cluster unique identifier",
"example": "AaGKDkx9w5RMoGANrfKwmn0"
},
"name": {
"type": "string",
"description": "Display name of the object",
"example": "Sales Report Q4"
},
"type": {
"type": "string",
"description": "Object type (e.g., Folder, CrystalReport)",
"example": "CrystalReport"
},
"description": {
"type": "string",
"description": "Object description",
"example": "Quarterly sales report for all regions"
},
"uri": {
"type": "string",
"description": "Relative URI to access this object",
"example": "/biprws/infostore/5765"
}
}
}