action openai_list_files { label: "Returns a list of files that belong to the user's organization." provider: openai method: GET path: "/files" encoding: json output: { type: "object" required: ["data", "object"] properties: { data: { type: "array" items: { required: ["id", "object", "bytes", "created_at", "filename", "purpose"] properties: { bytes: { type: "integer" } created_at: { type: "integer" } filename: { type: "string" } id: { type: "string" } object: { type: "string" } purpose: { type: "string" } status: { type: "string" } status_details: { type: "object" } } } } object: { type: "string" } } } }