{ "$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" } } }