action openlinksw_unload_service { label: "Unload service" description: "Removes a service description from the OSDB Service Registry" provider: openlinksw method: DELETE path: "/api/v1/services/{serviceId}" encoding: json input: { type: "object" properties: { serviceId: { type: "string" } } required: ["serviceId"] additionalProperties: false } 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: "string" description: "Confirmation message" } status: { type: "string" enum: ["success"] } } } }