action files_get_projects_id { label: "Show Project" description: "Show Project" provider: files method: GET path: "/projects/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "List Projects" properties: { global_access: { type: "string" description: "Global access settings" enum: ["none", "anyone_with_read", "anyone_with_full"] } id: { type: "integer" format: "int32" description: "Project ID" } } } }