action netlify_get_site_file_by_path_name { label: "getSiteFileByPathName" provider: netlify method: GET path: "/sites/{site_id}/files/{file_path}" encoding: json input: { type: "object" properties: { file_path: { type: "string" } site_id: { type: "string" } } required: ["file_path", "site_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }