action apicurio_list_config_properties { label: "List all configuration properties" description: "Returns a list of all configuration properties that have been set. The list is not paged.\n\nThis operation may fail for one of the following reasons:\n\n* A server error occurred (HTTP error `500`)\n" provider: apicurio method: GET path: "/admin/config/properties" encoding: json output: { type: "array" items: { type: "object" required: ["name", "value", "type", "label", "description"] properties: { description: { type: "string" } label: { type: "string" } name: { type: "string" } type: { type: "string" } value: { type: "string" } } } } }