Crystal Reports · JSON Structure

Crystal Reports Data Source Structure

A data source connection used by the report

Type: object Properties: 3
Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP

DataSource is a JSON Structure definition published by Crystal Reports, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name type tables

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/crystal-reports/refs/heads/main/json-structure/crystal-reports-data-source-structure.json",
  "name": "DataSource",
  "description": "A data source connection used by the report",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the data source",
      "example": "xtreme"
    },
    "type": {
      "type": "string",
      "description": "Type of data source connection",
      "example": "JDBC (JNDI)"
    },
    "tables": {
      "type": "array",
      "description": "Tables used from this data source",
      "items": {
        "type": "string"
      },
      "example": [
        "Customer",
        "Orders"
      ]
    }
  }
}