action watchful_get_site_by_id { label: "Find sites by ID" description: "Return a site based on ID" provider: watchful method: GET path: "/sites/{id}" encoding: json input: { type: "object" properties: { fields: { type: "string" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }