action trello_get_checklists_by_id_checklist_by_field { label: "getChecklistsByIdChecklistByField()" provider: trello method: GET path: "/checklists/{idChecklist}/{field}" encoding: json input: { type: "object" properties: { field: { type: "string" } idChecklist: { type: "string" } key: { type: "string" } token: { type: "string" } } required: ["field", "idChecklist", "key", "token"] additionalProperties: false } output: { type: "object" additionalProperties: true } }