action openlinksw_logout { label: "Logout" description: "Logs a user out of the OSDB server, ending their OSDB session" provider: openlinksw method: GET path: "/api/v1/logout" encoding: json output: { type: "object" required: ["api", "method", "response", "status"] properties: { api: { type: "string" description: "The path of the REST API method" } method: { type: "string" description: "The name of the REST API method" } response: { type: "object" required: ["user"] properties: { user: { type: "string" description: "The WebID of the user who has logged out." } } } status: { type: "string" enum: ["success"] } } } }