action xtrf_get_by_type_and_id { label: "Returns specific value from a given dictionary." description: "Returns specific value from a given dictionary." provider: xtrf method: GET path: "/dictionaries/{type}/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } type: { type: "string" } } required: ["id", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }