action contract_p_get_accuracy_resource { label: "Get the Accuracy counts on documents, sections and fields in the given inbox" description: "**Permission required:** view_statistics" provider: contract_p method: GET path: "/stats/{scope}/accuracy" encoding: json input: { type: "object" properties: { end_date: { type: "string" format: "date-time" } filter_by: { type: "string" } start_date: { type: "string" format: "date-time" } stp_fields_only: { type: "boolean" } stp_files_only: { type: "boolean" } version_name: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }