action powerdns_rectify_zone { label: "Rectify the zone data." description: "This does not take into account the API-RECTIFY metadata. Fails on slave zones and zones that do not have DNSSEC." provider: powerdns method: PUT path: "/servers/{server_id}/zones/{zone_id}/rectify" encoding: json input: { type: "object" properties: { server_id: { type: "string" } zone_id: { type: "string" } } required: ["server_id", "zone_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }