action xtrf_get_custom_fields_2 { label: "Returns custom fields of a given person." description: "Returns custom fields of a given person." provider: xtrf method: GET path: "/providers/persons/{personId}/customFields" encoding: json input: { type: "object" properties: { personId: { type: "integer" format: "int64" } } required: ["personId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }