action elmah_logs_create { label: "Create a new log." description: "Required permission: `logs_write`" provider: elmah method: POST path: "/v3/logs" encoding: json input: { type: "object" required: ["name"] properties: { name: { type: "string" description: "Name of the new log." } } } output: { type: "object" properties: { location: { type: "string" format: "uri" description: "The location of the created log." } } } }