Crystal Reports · Schema

UsedField

A field used in the report

Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP

Properties

Name Type Description
name string Field name
table string Table the field belongs to
type string Data type of the field
View JSON Schema on GitHub

JSON Schema

crystal-reports-used-field-schema.json Raw ↑
{
  "$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-used-field-schema.json",
  "title": "UsedField",
  "description": "A field used in the report",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Field name",
      "example": "Customer Name"
    },
    "table": {
      "type": "string",
      "description": "Table the field belongs to",
      "example": "Customer"
    },
    "type": {
      "type": "string",
      "description": "Data type of the field",
      "example": "String"
    }
  }
}