action xtrf_get_all_by_type { label: "Returns all values (both active and not active) from a given dictionary." description: "Returns all values (both active and not active) from a given dictionary." provider: xtrf method: GET path: "/dictionaries/{type}/all" encoding: json input: { type: "object" properties: { nameEquals: { type: "string" } type: { type: "string" } } required: ["type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }