action gitea_repo_get_wiki_page { label: "Get a wiki page" provider: gitea method: GET path: "/repos/{owner}/{repo}/wiki/page/{pageName}" encoding: json input: { type: "object" properties: { owner: { type: "string" } pageName: { type: "string" } repo: { type: "string" } } required: ["owner", "pageName", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }