action clearblade_get_columns { label: "DATA(id) - Get columns" description: "Returns the columns and their data type for the specified collection." provider: clearblade method: GET path: "/api/v/1/data/{collectionID}/columns" encoding: json input: { type: "object" properties: { "ClearBlade-SystemKey": { type: "string" } "ClearBlade-SystemSecret": { type: "string" } "ClearBlade-UserToken": { type: "string" } collectionID: { type: "string" } } required: ["ClearBlade-SystemKey", "ClearBlade-SystemSecret", "ClearBlade-UserToken", "collectionID"] additionalProperties: false } output: { type: "object" additionalProperties: true } }