action contract_p_get_formats_doc_types_resource { label: "Get supported document_types" description: "**Permission required:** edit_format_settings" provider: contract_p method: GET path: "/formats/document_types" encoding: json input: { type: "object" properties: { "X-Fields": { type: "string" format: "mask" } } additionalProperties: false } output: { type: "object" properties: { document_types: { type: "array" items: { type: "object" required: ["field_name"] properties: { display_name: { type: "string" } field_name: { type: "string" } } } } } } }