action consumerfinance_query_slice_hmda { label: "Query a slice in this dataset." provider: consumerfinance method: GET path: "/data/hmda/slice/{slice}" encoding: json input: { type: "object" properties: { "$callback": { type: "string" } "$group": { type: "string" } "$limit": { type: "string" } "$offset": { type: "string" } "$orderBy": { type: "string" } "$select": { type: "string" } "$where": { type: "string" } slice: { type: "string" } } required: ["slice"] additionalProperties: false } output: { type: "object" additionalProperties: true } }