action formapi_create_folder { label: "Create a folder" provider: formapi method: POST path: "/folders/" encoding: json input: { type: "object" required: ["folder"] properties: { folder: { type: "object" required: ["name"] properties: { name: { type: "string" } parent_folder_id: { type: "string" } } } } } output: { type: "object" properties: { id: { type: "string" } name: { type: "string" } parent_folder_id: { type: "string" } path: { type: "string" } } } }