action digitallinguistics_delete_lexeme_by_language { label: "Delete a Lexeme by ID" provider: digitallinguistics method: DELETE path: "/languages/{languageID}/lexemes/{lexemeID}" encoding: json input: { type: "object" properties: { ifMatch: { type: "string" } languageID: { type: "string" } lexemeID: { type: "string" } } required: ["languageID", "lexemeID"] additionalProperties: false } output: { type: "object" additionalProperties: true } }