action digitallinguistics_update_language { label: "Perform a partial update on a Language" description: "Performs a partial update the Language whose ID is specified in the URL. If the Language object has an `id` property, is ignored in favor of the ID in the URL." provider: digitallinguistics method: PATCH path: "/languages/{languageID}" encoding: json input: { type: "object" properties: { ifMatch: { type: "string" } languageID: { type: "string" } } required: ["languageID"] additionalProperties: false } output: { type: "object" additionalProperties: true } }