Custom Field Collection Record
Represents a collection of custom fields, for example: All the CFs of a project.
Learn more how custom fields are configured in the platform: Custom field configuration
| 
 | An array of 0, 1 or more custom fields. Elements are described here: Custom Field Record | object[] | 
EXAMPLES
Example payload: with 2 fields:
        CODE
    
    {
    "fields" : [
      {
          "id": 2,
          "title": "Category",
          "value": "Medical"
      },
      {
          "id": 22,
          "title": "QA Issue",
          "value": null
      }
    ]
}
