{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EndpointColumn", "title": "EndpointColumn", "type": "object", "description": "A column in the endpoint's query result.", "properties": { "name": { "type": "string", "description": "Column name from the query SELECT clause." }, "type": { "type": "string", "description": "Serialized column type: integer, float, string, datetime, date, boolean, array, json, or unknown." } }, "required": [ "name", "type" ] }