action learnifier_patch_orgunits_orgid_projects_projectid { label: "Update project information" description: "Updates information about a project. Values are only updated if the fields are specified in the input\n" provider: learnifier method: PATCH path: "/orgunits/{orgid}/projects/{projectid}" encoding: json input: { type: "object" properties: { orgid: { type: "string" } projectid: { type: "string" } } required: ["orgid", "projectid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }