Skip to content

Active Steward API 1.0

Servers

Description URL
Your Company's Active Steward Instance /ActiveSteward

Studies


GET /api/studies/{id}

Get a Study

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "001-Cat Z-Analysis-Int",
    "status": "ACTIVE",
    "start": "2022-04-13",
    "end": "2022-04-13",
    "purpose": "VI",
    "archived": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "001-Cat Z-Analysis-Int"
        },
        "status": {
            "type": "string",
            "enum": [
                "PLANNED",
                "CONTRACTING",
                "ACTIVE",
                "COMPLETE",
                "CANCELLED"
            ],
            "example": "ACTIVE"
        },
        "start": {
            "type": "string",
            "format": "date"
        },
        "end": {
            "type": "string",
            "format": "date"
        },
        "purpose": {
            "type": "string",
            "enum": [
                "VI",
                "VII",
                "VIII",
                "IX",
                "X",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "EU_BIO",
                "EU_PLANT",
                "UD_TSCA",
                "PROD_SAFETY",
                "INV_WORK"
            ]
        },
        "archived": {
            "type": "boolean"
        }
    },
    "required": [
        "end",
        "name",
        "partitionId",
        "start",
        "status"
    ]
}

Response 404 Not Found

Response 500 Internal Server Error


PUT /api/studies/{id}

Fully Update a Study

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "001-Cat Z-Analysis-Int",
    "status": "ACTIVE",
    "start": "2022-04-13",
    "end": "2022-04-13",
    "purpose": "VI",
    "archived": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "001-Cat Z-Analysis-Int"
        },
        "status": {
            "type": "string",
            "enum": [
                "PLANNED",
                "CONTRACTING",
                "ACTIVE",
                "COMPLETE",
                "CANCELLED"
            ],
            "example": "ACTIVE"
        },
        "start": {
            "type": "string",
            "format": "date"
        },
        "end": {
            "type": "string",
            "format": "date"
        },
        "purpose": {
            "type": "string",
            "enum": [
                "VI",
                "VII",
                "VIII",
                "IX",
                "X",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "EU_BIO",
                "EU_PLANT",
                "UD_TSCA",
                "PROD_SAFETY",
                "INV_WORK"
            ]
        },
        "archived": {
            "type": "boolean"
        }
    },
    "required": [
        "end",
        "name",
        "partitionId",
        "start",
        "status"
    ]
}

Response 400 Bad Request

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "001-Cat Z-Analysis-Int",
    "status": "ACTIVE",
    "start": "2022-04-13",
    "end": "2022-04-13",
    "purpose": "VI",
    "archived": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "001-Cat Z-Analysis-Int"
        },
        "status": {
            "type": "string",
            "enum": [
                "PLANNED",
                "CONTRACTING",
                "ACTIVE",
                "COMPLETE",
                "CANCELLED"
            ],
            "example": "ACTIVE"
        },
        "start": {
            "type": "string",
            "format": "date"
        },
        "end": {
            "type": "string",
            "format": "date"
        },
        "purpose": {
            "type": "string",
            "enum": [
                "VI",
                "VII",
                "VIII",
                "IX",
                "X",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "EU_BIO",
                "EU_PLANT",
                "UD_TSCA",
                "PROD_SAFETY",
                "INV_WORK"
            ]
        },
        "archived": {
            "type": "boolean"
        }
    },
    "required": [
        "end",
        "name",
        "partitionId",
        "start",
        "status"
    ]
}

Response 404 Not Found

Response 403 Forbidden

Response 500 Internal Server Error


DELETE /api/studies/{id}

Delete a Study

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 204 No Content

Response 403 Forbidden

Response 500 Internal Server Error


PATCH /api/studies/{id}

Partially Update a Study

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "001-Cat Z-Analysis-Int",
    "status": "ACTIVE",
    "start": "2022-04-13",
    "end": "2022-04-13",
    "purpose": "VI",
    "archived": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "001-Cat Z-Analysis-Int"
        },
        "status": {
            "type": "string",
            "enum": [
                "PLANNED",
                "CONTRACTING",
                "ACTIVE",
                "COMPLETE",
                "CANCELLED"
            ],
            "example": "ACTIVE"
        },
        "start": {
            "type": "string",
            "format": "date"
        },
        "end": {
            "type": "string",
            "format": "date"
        },
        "purpose": {
            "type": "string",
            "enum": [
                "VI",
                "VII",
                "VIII",
                "IX",
                "X",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "EU_BIO",
                "EU_PLANT",
                "UD_TSCA",
                "PROD_SAFETY",
                "INV_WORK"
            ]
        },
        "archived": {
            "type": "boolean"
        }
    },
    "required": [
        "end",
        "name",
        "partitionId",
        "start",
        "status"
    ]
}

Response 400 Bad Request

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "001-Cat Z-Analysis-Int",
    "status": "ACTIVE",
    "start": "2022-04-13",
    "end": "2022-04-13",
    "purpose": "VI",
    "archived": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "001-Cat Z-Analysis-Int"
        },
        "status": {
            "type": "string",
            "enum": [
                "PLANNED",
                "CONTRACTING",
                "ACTIVE",
                "COMPLETE",
                "CANCELLED"
            ],
            "example": "ACTIVE"
        },
        "start": {
            "type": "string",
            "format": "date"
        },
        "end": {
            "type": "string",
            "format": "date"
        },
        "purpose": {
            "type": "string",
            "enum": [
                "VI",
                "VII",
                "VIII",
                "IX",
                "X",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "EU_BIO",
                "EU_PLANT",
                "UD_TSCA",
                "PROD_SAFETY",
                "INV_WORK"
            ]
        },
        "archived": {
            "type": "boolean"
        }
    },
    "required": [
        "end",
        "name",
        "partitionId",
        "start",
        "status"
    ]
}

Response 404 Not Found

Response 403 Forbidden

Response 500 Internal Server Error


GET /api/studies

Get all Studies

Input parameters

Parameter In Type Default Nullable Description
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 200 OK

{
    "totalElements": 244,
    "totalPages": 278,
    "first": true,
    "size": 26,
    "content": [
        {
            "id": 1,
            "partitionId": 100,
            "name": "001-Cat Z-Analysis-Int",
            "status": "ACTIVE",
            "start": "2022-04-13",
            "end": "2022-04-13",
            "purpose": "VI",
            "archived": true
        }
    ],
    "number": 118,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 4,
        "sort": null,
        "pageNumber": 0,
        "paged": true,
        "unpaged": true,
        "pageSize": 85
    },
    "numberOfElements": 217,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/StudyData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

Response 403 Forbidden


POST /api/studies

Create a Study

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "001-Cat Z-Analysis-Int",
    "status": "ACTIVE",
    "start": "2022-04-13",
    "end": "2022-04-13",
    "purpose": "VI",
    "archived": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "001-Cat Z-Analysis-Int"
        },
        "status": {
            "type": "string",
            "enum": [
                "PLANNED",
                "CONTRACTING",
                "ACTIVE",
                "COMPLETE",
                "CANCELLED"
            ],
            "example": "ACTIVE"
        },
        "start": {
            "type": "string",
            "format": "date"
        },
        "end": {
            "type": "string",
            "format": "date"
        },
        "purpose": {
            "type": "string",
            "enum": [
                "VI",
                "VII",
                "VIII",
                "IX",
                "X",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "EU_BIO",
                "EU_PLANT",
                "UD_TSCA",
                "PROD_SAFETY",
                "INV_WORK"
            ]
        },
        "archived": {
            "type": "boolean"
        }
    },
    "required": [
        "end",
        "name",
        "partitionId",
        "start",
        "status"
    ]
}

Response 400 Bad Request

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "001-Cat Z-Analysis-Int",
    "status": "ACTIVE",
    "start": "2022-04-13",
    "end": "2022-04-13",
    "purpose": "VI",
    "archived": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "001-Cat Z-Analysis-Int"
        },
        "status": {
            "type": "string",
            "enum": [
                "PLANNED",
                "CONTRACTING",
                "ACTIVE",
                "COMPLETE",
                "CANCELLED"
            ],
            "example": "ACTIVE"
        },
        "start": {
            "type": "string",
            "format": "date"
        },
        "end": {
            "type": "string",
            "format": "date"
        },
        "purpose": {
            "type": "string",
            "enum": [
                "VI",
                "VII",
                "VIII",
                "IX",
                "X",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "EU_BIO",
                "EU_PLANT",
                "UD_TSCA",
                "PROD_SAFETY",
                "INV_WORK"
            ]
        },
        "archived": {
            "type": "boolean"
        }
    },
    "required": [
        "end",
        "name",
        "partitionId",
        "start",
        "status"
    ]
}

Response 403 Forbidden

Response 500 Internal Server Error


GET /api/studies/{id}/costs

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 200 OK

[
    {
        "study": {
            "id": 290,
            "code": "string",
            "status": "PLANNED",
            "species": [
                {
                    "id": 260,
                    "description": "string"
                }
            ],
            "purpose": "VI",
            "start": "2022-04-13",
            "end": "2022-04-13",
            "folder": {
                "id": 250,
                "partitionId": 184,
                "name": "string",
                "parent": null,
                "children": null,
                "documents": [
                    {
                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                        "id": 102,
                        "partition": {
                            "id": 44,
                            "partitionName": "string",
                            "logoID": "859e4bae-50a4-4f05-9b26-87d1f03ffa9a",
                            "email": "string",
                            "userPartitions": [
                                {
                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                    "id": 138,
                                    "user": {
                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                        "id": 174,
                                        "firstName": "string",
                                        "lastName": "string",
                                        "emailAddress": "string",
                                        "principal": "string",
                                        "lastLoggedIn": "2022-04-13T15:42:05.901Z",
                                        "created": "2022-04-13T15:42:05.901Z",
                                        "enabled": true,
                                        "locked": true,
                                        "failedLoginCount": 83,
                                        "notActiveAfter": "2022-04-13",
                                        "passwordExpires": "2022-04-13",
                                        "deleted": true,
                                        "version": 152,
                                        "owner": {
                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                            "id": 139,
                                            "name": "string",
                                            "version": 206,
                                            "companyNo": "string",
                                            "vatNo": "string",
                                            "remarks": "string",
                                            "dunnNo": "string",
                                            "utr": "string",
                                            "uclidID": "string",
                                            "reachID": "string",
                                            "clientPartitionId": 215,
                                            "sapBusinessReference": "string",
                                            "hasInvoicingAddress": true,
                                            "deleted": true,
                                            "entityEntityGroups": [
                                                {
                                                    "id": 202,
                                                    "entity": null,
                                                    "entityGroup": {
                                                        "name": "string",
                                                        "partitionId": 124
                                                    }
                                                }
                                            ],
                                            "invoiceOverdueDays": 284,
                                            "comments": [
                                                {
                                                    "id": 298,
                                                    "replyTo": {
                                                        "id": 58,
                                                        "replyTo": null,
                                                        "createdDate": "2022-04-13T15:42:05.901Z",
                                                        "user": null,
                                                        "contact": {
                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                            "id": 163,
                                                            "partition": null,
                                                            "user": null,
                                                            "title": "MR",
                                                            "firstName": "string",
                                                            "lastName": "string",
                                                            "nameSuffix": "string",
                                                            "jobDescription": "string",
                                                            "email": "string",
                                                            "telephone": "string",
                                                            "fax": "string",
                                                            "mobile": "string",
                                                            "skype": "string",
                                                            "remarks": "string",
                                                            "reachIt": true,
                                                            "deactivated": true,
                                                            "deleted": true,
                                                            "productEntityContacts": [
                                                                {
                                                                    "id": 145,
                                                                    "productEntity": {
                                                                        "id": 208,
                                                                        "product": {
                                                                            "id": 197,
                                                                            "name": "string",
                                                                            "ownerManufacturer": "string",
                                                                            "partitionId": 31,
                                                                            "archived": true
                                                                        },
                                                                        "baseEntity": null,
                                                                        "entityRoles": [
                                                                            {
                                                                                "id": "string",
                                                                                "display": "string",
                                                                                "name": "string",
                                                                                "url": "string",
                                                                                "partitionId": 250,
                                                                                "partition": null,
                                                                                "idInPartition": 95,
                                                                                "recordName": "string",
                                                                                "displayAttributes": [
                                                                                    {}
                                                                                ],
                                                                                "displayCodePartial": "string",
                                                                                "displayArgs": [
                                                                                    "string"
                                                                                ],
                                                                                "breadcrumbParent": {
                                                                                    "name": "string",
                                                                                    "id": {},
                                                                                    "url": "string",
                                                                                    "partitionId": 7,
                                                                                    "partition": null,
                                                                                    "display": "string",
                                                                                    "idInPartition": 283,
                                                                                    "recordName": "string",
                                                                                    "displayAttributes": [
                                                                                        {}
                                                                                    ],
                                                                                    "displayCodePartial": "string",
                                                                                    "displayArgs": [
                                                                                        "string"
                                                                                    ],
                                                                                    "breadcrumbParent": null,
                                                                                    "iconClass": "string",
                                                                                    "iconColour": "string"
                                                                                },
                                                                                "iconClass": "string",
                                                                                "iconColour": "string"
                                                                            }
                                                                        ],
                                                                        "deleted": true,
                                                                        "partitionId": 186
                                                                    },
                                                                    "contact": null,
                                                                    "deleted": true
                                                                }
                                                            ],
                                                            "productPartyContacts": [
                                                                {
                                                                    "id": 30,
                                                                    "productParty": {
                                                                        "id": 68,
                                                                        "product": null,
                                                                        "party": {
                                                                            "id": 8,
                                                                            "entity": null,
                                                                            "description": "string",
                                                                            "addressLine1": "string",
                                                                            "addressLine2": "string",
                                                                            "addressLine3": "string",
                                                                            "townCity": "string",
                                                                            "countyStateRegion": "string",
                                                                            "postcode": "string",
                                                                            "country": {
                                                                                "id": 18,
                                                                                "name": "string",
                                                                                "iso3166alpha2CountryCode": "string",
                                                                                "iso3166alpha3CountryCode": "string",
                                                                                "iso3166numeric3CountryCode": "string",
                                                                                "partitionId": 1
                                                                            },
                                                                            "website": "string",
                                                                            "telephone": "string",
                                                                            "fax": "string",
                                                                            "remarks": "string",
                                                                            "addressType": "PRIMARY_ADDRESS",
                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                            "lastUpdatedByEmail": "string",
                                                                            "lastUpdatedById": 204,
                                                                            "sapBusinessReference": "string",
                                                                            "deleted": true,
                                                                            "contacts": null,
                                                                            "plants": [
                                                                                {
                                                                                    "id": 295,
                                                                                    "party": null,
                                                                                    "name": "string",
                                                                                    "plantCode": "string",
                                                                                    "constituentPlants": [
                                                                                        {
                                                                                            "id": 158,
                                                                                            "constituent": {
                                                                                                "id": 296,
                                                                                                "casNumber": "string",
                                                                                                "ecName": "string",
                                                                                                "ecNumber": "string",
                                                                                                "ecDescription": "string",
                                                                                                "iupac": "string",
                                                                                                "iuclidUuid": "string",
                                                                                                "tsca": "string",
                                                                                                "molecularFormula": "string",
                                                                                                "smiles": "string",
                                                                                                "inChl": "string",
                                                                                                "name": "string",
                                                                                                "partitionId": 101,
                                                                                                "type": "ACTIVE_INGREDIENT",
                                                                                                "archived": true
                                                                                            },
                                                                                            "plant": null
                                                                                        }
                                                                                    ],
                                                                                    "productPlants": [
                                                                                        {
                                                                                            "id": 68,
                                                                                            "product": null,
                                                                                            "plant": null
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ],
                                                                            "lastUpdatedBy": null,
                                                                            "partitionId": 259
                                                                        },
                                                                        "deleted": true
                                                                    },
                                                                    "contact": null,
                                                                    "deleted": true
                                                                }
                                                            ],
                                                            "productContacts": [
                                                                {
                                                                    "id": 269,
                                                                    "product": null,
                                                                    "contact": null,
                                                                    "contactType": "KEY",
                                                                    "deleted": true
                                                                }
                                                            ],
                                                            "constituentEntityContacts": [
                                                                {
                                                                    "id": 284,
                                                                    "constituentEntity": {
                                                                        "id": 151,
                                                                        "constituent": null,
                                                                        "entity": null,
                                                                        "entityRoles": null,
                                                                        "partitionId": 164
                                                                    },
                                                                    "contact": null,
                                                                    "deleted": true
                                                                }
                                                            ],
                                                            "constituentPartyContacts": [
                                                                {
                                                                    "id": 254,
                                                                    "constituentParty": {
                                                                        "id": 46,
                                                                        "constituent": null,
                                                                        "party": null,
                                                                        "deleted": true
                                                                    },
                                                                    "contact": null,
                                                                    "deleted": true
                                                                }
                                                            ],
                                                            "constituentContacts": [
                                                                {
                                                                    "id": 166,
                                                                    "constituent": null,
                                                                    "contact": null,
                                                                    "contactType": "KEY",
                                                                    "deleted": true
                                                                }
                                                            ],
                                                            "contactGroups": [
                                                                {
                                                                    "id": 167,
                                                                    "contact": null,
                                                                    "contactGroup": {
                                                                        "groupName": "string"
                                                                    },
                                                                    "deleted": true
                                                                }
                                                            ],
                                                            "primaryInvoicingEntities": null,
                                                            "secondaryInvoicingEntities": null,
                                                            "tonnageAndUseEnquiries": [
                                                                {
                                                                    "reachLegislation": "EU_REACH",
                                                                    "contact": null,
                                                                    "baseEntity": null,
                                                                    "enquiryYear": 235,
                                                                    "documentLink": {
                                                                        "id": 177,
                                                                        "contact": null,
                                                                        "code": "string",
                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                        "documentLinkAttachments": [
                                                                            {
                                                                                "id": 122,
                                                                                "document": null,
                                                                                "documentLinks": null
                                                                            }
                                                                        ],
                                                                        "expiryDays": 0,
                                                                        "clientPartition": null,
                                                                        "allDownloaded": true,
                                                                        "link": "string",
                                                                        "autoExpire": true,
                                                                        "reminderDate": "2022-04-13",
                                                                        "dateAllDownLoaded": "2022-04-13T15:42:05.901Z",
                                                                        "emails": [
                                                                            {
                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                "id": 261,
                                                                                "partition": null,
                                                                                "title": "string",
                                                                                "description": "string",
                                                                                "fileName": "string",
                                                                                "originalFileName": "string",
                                                                                "link": true,
                                                                                "fileSize": 165,
                                                                                "uploadDate": "2022-04-13T15:42:05.901Z",
                                                                                "documentCreationDate": "2022-04-13",
                                                                                "fileType": "UNKNOWN",
                                                                                "docType": "DOCUMENT",
                                                                                "expiryDate": "2022-04-13",
                                                                                "retentionDate": "2022-04-13",
                                                                                "permanent": true,
                                                                                "products": null,
                                                                                "constituents": null,
                                                                                "categoryGroups": [
                                                                                    {
                                                                                        "id": 110,
                                                                                        "groupName": "string",
                                                                                        "partitionId": 18
                                                                                    }
                                                                                ],
                                                                                "productGroups": [
                                                                                    {
                                                                                        "groupName": "string",
                                                                                        "partitionId": 120
                                                                                    }
                                                                                ],
                                                                                "entities": null,
                                                                                "documentEntityGroups": [
                                                                                    {
                                                                                        "id": 210,
                                                                                        "document": null,
                                                                                        "entityGroup": null
                                                                                    }
                                                                                ],
                                                                                "entityGroups": null,
                                                                                "documentContactGroups": [
                                                                                    {
                                                                                        "id": 135,
                                                                                        "document": null,
                                                                                        "contactGroup": null,
                                                                                        "deleted": true
                                                                                    }
                                                                                ],
                                                                                "contactGroups": null,
                                                                                "documentTagSet": [
                                                                                    {
                                                                                        "id": 197,
                                                                                        "document": null,
                                                                                        "tag": {
                                                                                            "id": {
                                                                                                "partitionId": 224,
                                                                                                "id": 168
                                                                                            },
                                                                                            "tagText": "string"
                                                                                        },
                                                                                        "deleted": true
                                                                                    }
                                                                                ],
                                                                                "linkedDocuments": null,
                                                                                "version": 140,
                                                                                "versionIdentifier": "string",
                                                                                "currentDocumentId": 177,
                                                                                "currentDocument": null,
                                                                                "newsItem": true,
                                                                                "issues": [
                                                                                    {
                                                                                        "id": 251,
                                                                                        "clientPartition": null,
                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                        "version": 97,
                                                                                        "issue": "string",
                                                                                        "statement": "string",
                                                                                        "basis": "string",
                                                                                        "reviewDate": "2022-04-13",
                                                                                        "reviewNotified": true,
                                                                                        "supportingDocuments": null,
                                                                                        "products": null,
                                                                                        "constituents": null,
                                                                                        "studies": null,
                                                                                        "entities": null,
                                                                                        "notes": "string",
                                                                                        "inventoryId": "8743a3ac-fb27-48d6-96f5-77f4d589f247",
                                                                                        "comments": [
                                                                                            {
                                                                                                "id": 196,
                                                                                                "replyTo": null,
                                                                                                "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                "user": null,
                                                                                                "contact": null,
                                                                                                "text": "string",
                                                                                                "published": true,
                                                                                                "replies": null,
                                                                                                "notifications": [
                                                                                                    {
                                                                                                        "id": 166,
                                                                                                        "partitionId": 96,
                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                        "user": null,
                                                                                                        "read": true,
                                                                                                        "comment": null,
                                                                                                        "type": "ADDED",
                                                                                                        "baseUrl": "string",
                                                                                                        "parent": {
                                                                                                            "watchingUsers": null,
                                                                                                            "comments": null,
                                                                                                            "watching": true,
                                                                                                            "watchers": null,
                                                                                                            "commentType": "string",
                                                                                                            "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                            "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                                                            "commentDisplayUrl": "string",
                                                                                                            "name": "string",
                                                                                                            "id": {},
                                                                                                            "url": "string",
                                                                                                            "partitionId": 285,
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 209,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "iconColour": "string"
                                                                                                        },
                                                                                                        "url": "string",
                                                                                                        "mailjetTemplateName": "string",
                                                                                                        "displayCode": "string",
                                                                                                        "mailjetTemplateVars": {},
                                                                                                        "mailjetTemplateEmail": {
                                                                                                            "templateName": "string",
                                                                                                            "subject": "string",
                                                                                                            "globalTemplateVars": {},
                                                                                                            "recipients": [
                                                                                                                {
                                                                                                                    "email": "string",
                                                                                                                    "templateVars": {}
                                                                                                                }
                                                                                                            ],
                                                                                                            "attachments": [
                                                                                                                {
                                                                                                                    "type": "string",
                                                                                                                    "filename": "string",
                                                                                                                    "data": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ="
                                                                                                                }
                                                                                                            ],
                                                                                                            "priority": "LOW_FIFO"
                                                                                                        },
                                                                                                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                        "name": "string",
                                                                                                        "partition": null,
                                                                                                        "display": "string",
                                                                                                        "idInPartition": 154,
                                                                                                        "recordName": "string",
                                                                                                        "displayAttributes": [
                                                                                                            {}
                                                                                                        ],
                                                                                                        "displayCodePartial": "string",
                                                                                                        "displayArgs": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "breadcrumbParent": null,
                                                                                                        "iconClass": "string",
                                                                                                        "iconColour": "string"
                                                                                                    }
                                                                                                ],
                                                                                                "hidden": true,
                                                                                                "reply": true,
                                                                                                "greatestAncestor": null,
                                                                                                "replyToIsUnpublished": true,
                                                                                                "serverCreatedReadableDate": "string",
                                                                                                "lastUpdatedBy": null,
                                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                "lastUpdatedById": 161,
                                                                                                "name": "string",
                                                                                                "partition": null,
                                                                                                "display": "string",
                                                                                                "idInPartition": 294,
                                                                                                "recordName": "string",
                                                                                                "displayAttributes": [
                                                                                                    {}
                                                                                                ],
                                                                                                "displayCodePartial": "string",
                                                                                                "displayArgs": [
                                                                                                    "string"
                                                                                                ],
                                                                                                "breadcrumbParent": null,
                                                                                                "iconClass": "string",
                                                                                                "iconColour": "string",
                                                                                                "calendarSource": "PRODUCT",
                                                                                                "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                "allDay": true,
                                                                                                "calendarExtendedProps": {}
                                                                                            }
                                                                                        ],
                                                                                        "watchingUsers": null,
                                                                                        "relevantEntities": null,
                                                                                        "tasks": [
                                                                                            {
                                                                                                "id": 259,
                                                                                                "clientPartition": null,
                                                                                                "campaign": {
                                                                                                    "id": 55,
                                                                                                    "clientPartition": null,
                                                                                                    "name": "string",
                                                                                                    "description": "string",
                                                                                                    "startDate": "2022-04-13",
                                                                                                    "endDate": "2022-04-13",
                                                                                                    "menuName": "string",
                                                                                                    "section": {
                                                                                                        "id": 161,
                                                                                                        "clientPartition": null,
                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                        "campaign": null,
                                                                                                        "constituent": null,
                                                                                                        "name": "string",
                                                                                                        "parentSection": null,
                                                                                                        "children": null,
                                                                                                        "expand": true,
                                                                                                        "deleted": true,
                                                                                                        "pages": [
                                                                                                            {
                                                                                                                "id": 224,
                                                                                                                "clientPartition": null,
                                                                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                "name": "string",
                                                                                                                "index": 200,
                                                                                                                "content": "string",
                                                                                                                "caretPosition": "string",
                                                                                                                "type": "COMPANY_INFO",
                                                                                                                "roles": [
                                                                                                                    {
                                                                                                                        "id": 251,
                                                                                                                        "clientPartition": null,
                                                                                                                        "name": "string",
                                                                                                                        "description": "string",
                                                                                                                        "campaign": null,
                                                                                                                        "campaignContacts": [
                                                                                                                            {
                                                                                                                                "id": 157,
                                                                                                                                "clientPartition": null,
                                                                                                                                "campaign": null,
                                                                                                                                "contact": null,
                                                                                                                                "roles": null,
                                                                                                                                "tasks": null,
                                                                                                                                "pages": null,
                                                                                                                                "lastLoggedIn": "2022-04-13T15:42:05.901Z",
                                                                                                                                "deleted": true,
                                                                                                                                "fullName": "string",
                                                                                                                                "email": "string",
                                                                                                                                "user": null,
                                                                                                                                "lastName": "string",
                                                                                                                                "firstName": "string",
                                                                                                                                "recordName": "string",
                                                                                                                                "breadcrumbParent": null,
                                                                                                                                "iconClass": "string",
                                                                                                                                "iconColour": "string",
                                                                                                                                "fullNameFallback": "string",
                                                                                                                                "name": "string",
                                                                                                                                "url": "string",
                                                                                                                                "partitionId": 39,
                                                                                                                                "partition": null,
                                                                                                                                "display": "string",
                                                                                                                                "idInPartition": 184,
                                                                                                                                "displayAttributes": [
                                                                                                                                    {}
                                                                                                                                ],
                                                                                                                                "displayCodePartial": "string",
                                                                                                                                "displayArgs": [
                                                                                                                                    "string"
                                                                                                                                ]
                                                                                                                            }
                                                                                                                        ],
                                                                                                                        "pages": null,
                                                                                                                        "tasks": null,
                                                                                                                        "contactCount": 192,
                                                                                                                        "tabCount": 151,
                                                                                                                        "taskCount": 50,
                                                                                                                        "inUse": true,
                                                                                                                        "breadcrumbParent": null,
                                                                                                                        "iconClass": "string",
                                                                                                                        "url": "string",
                                                                                                                        "partitionId": 110,
                                                                                                                        "partition": null,
                                                                                                                        "display": "string",
                                                                                                                        "idInPartition": 144,
                                                                                                                        "recordName": "string",
                                                                                                                        "displayAttributes": [
                                                                                                                            {}
                                                                                                                        ],
                                                                                                                        "displayCodePartial": "string",
                                                                                                                        "displayArgs": [
                                                                                                                            "string"
                                                                                                                        ],
                                                                                                                        "iconColour": "string"
                                                                                                                    }
                                                                                                                ],
                                                                                                                "access": "PUBLIC",
                                                                                                                "deleted": true,
                                                                                                                "visibleToDeactivated": true,
                                                                                                                "source": "ENTITY",
                                                                                                                "entity": null,
                                                                                                                "entityGroup": null,
                                                                                                                "cutOffDate": "2022-04-13",
                                                                                                                "invoicePageInfo": {
                                                                                                                    "purchaseNumber": "string",
                                                                                                                    "showing": "BOTH",
                                                                                                                    "otherEntity": null,
                                                                                                                    "address": "string",
                                                                                                                    "vat": "string",
                                                                                                                    "invoicePageFooter": "string",
                                                                                                                    "invoicingContacts": "string"
                                                                                                                },
                                                                                                                "docType": "DOCUMENT",
                                                                                                                "tags": null,
                                                                                                                "task": null,
                                                                                                                "notifications": [
                                                                                                                    {
                                                                                                                        "id": 56,
                                                                                                                        "partitionId": 220,
                                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                                        "user": null,
                                                                                                                        "read": true,
                                                                                                                        "page": null,
                                                                                                                        "type": "ADDED",
                                                                                                                        "baseUrl": "string",
                                                                                                                        "url": "string",
                                                                                                                        "mailjetTemplateName": "string",
                                                                                                                        "displayCode": "string",
                                                                                                                        "mailjetTemplateVars": {},
                                                                                                                        "mailjetTemplateEmail": null,
                                                                                                                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                        "name": "string",
                                                                                                                        "partition": null,
                                                                                                                        "display": "string",
                                                                                                                        "idInPartition": 12,
                                                                                                                        "recordName": "string",
                                                                                                                        "displayAttributes": [
                                                                                                                            {}
                                                                                                                        ],
                                                                                                                        "displayCodePartial": "string",
                                                                                                                        "displayArgs": [
                                                                                                                            "string"
                                                                                                                        ],
                                                                                                                        "breadcrumbParent": null,
                                                                                                                        "iconClass": "string",
                                                                                                                        "iconColour": "string"
                                                                                                                    }
                                                                                                                ],
                                                                                                                "hidden": true,
                                                                                                                "public": true,
                                                                                                                "entities": null,
                                                                                                                "url": "string",
                                                                                                                "visible": true,
                                                                                                                "archived": true,
                                                                                                                "issues": [
                                                                                                                    {
                                                                                                                        "uuid": "527fba30-8796-4bb1-a423-5ec89ddacd79",
                                                                                                                        "error": "string",
                                                                                                                        "html": "string"
                                                                                                                    }
                                                                                                                ],
                                                                                                                "contact": null,
                                                                                                                "activeEntities": null,
                                                                                                                "constituent": null,
                                                                                                                "sections": null,
                                                                                                                "nameWithSections": "string",
                                                                                                                "ancestorsString": "string",
                                                                                                                "campaignContacts": null,
                                                                                                                "campaignNavigationLevel": 204,
                                                                                                                "menuIndex": 254,
                                                                                                                "allUsers": true,
                                                                                                                "menuParent": {
                                                                                                                    "campaignNavigationLevel": 21,
                                                                                                                    "expand": true,
                                                                                                                    "menuIndex": 174,
                                                                                                                    "menuParent": null,
                                                                                                                    "menuAncestors": null,
                                                                                                                    "name": "string",
                                                                                                                    "id": {},
                                                                                                                    "url": "string",
                                                                                                                    "partitionId": 243,
                                                                                                                    "partition": null,
                                                                                                                    "display": "string",
                                                                                                                    "idInPartition": 68,
                                                                                                                    "recordName": "string",
                                                                                                                    "displayAttributes": [
                                                                                                                        {}
                                                                                                                    ],
                                                                                                                    "displayCodePartial": "string",
                                                                                                                    "displayArgs": [
                                                                                                                        "string"
                                                                                                                    ],
                                                                                                                    "breadcrumbParent": null,
                                                                                                                    "iconClass": "string",
                                                                                                                    "iconColour": "string"
                                                                                                                },
                                                                                                                "highestSection": null,
                                                                                                                "allFields": "string",
                                                                                                                "iconClass": "string",
                                                                                                                "associatedToArchivedContact": true,
                                                                                                                "membersUrl": "string",
                                                                                                                "expand": true,
                                                                                                                "menuAncestors": null,
                                                                                                                "partitionId": 188,
                                                                                                                "partition": null,
                                                                                                                "display": "string",
                                                                                                                "idInPartition": 12,
                                                                                                                "recordName": "string",
                                                                                                                "displayAttributes": [
                                                                                                                    {}
                                                                                                                ],
                                                                                                                "displayCodePartial": "string",
                                                                                                                "displayArgs": [
                                                                                                                    "string"
                                                                                                                ],
                                                                                                                "iconColour": "string",
                                                                                                                "lastUpdatedById": 72
                                                                                                            }
                                                                                                        ],
                                                                                                        "menuIndex": 294,
                                                                                                        "url": "string",
                                                                                                        "display": "string",
                                                                                                        "descendants": null,
                                                                                                        "ancestorsString": "string",
                                                                                                        "campaignNavigationLevel": 166,
                                                                                                        "allPages": null,
                                                                                                        "menuParent": null,
                                                                                                        "recordName": "string",
                                                                                                        "breadcrumbParent": null,
                                                                                                        "iconClass": "string",
                                                                                                        "iconColour": "string",
                                                                                                        "updateOptions": {
                                                                                                            "campaignId": 77,
                                                                                                            "updateRole": true,
                                                                                                            "defaultRoleId": 129,
                                                                                                            "createCampaigns": true,
                                                                                                            "createContacts": true,
                                                                                                            "forCampaign": true
                                                                                                        },
                                                                                                        "menuAncestors": null,
                                                                                                        "partitionId": 228,
                                                                                                        "partition": null,
                                                                                                        "idInPartition": 196,
                                                                                                        "displayAttributes": [
                                                                                                            {}
                                                                                                        ],
                                                                                                        "displayCodePartial": "string",
                                                                                                        "displayArgs": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "lastUpdatedById": 234
                                                                                                    },
                                                                                                    "expand": true,
                                                                                                    "footerAddress": "string",
                                                                                                    "footerLink": "string",
                                                                                                    "footerPhone": "string",
                                                                                                    "termsAndConditionsText": "string",
                                                                                                    "menuIndex": 26,
                                                                                                    "deleted": true,
                                                                                                    "uploadingLock": true,
                                                                                                    "contacts": null,
                                                                                                    "roles": null,
                                                                                                    "sections": null,
                                                                                                    "pages": null,
                                                                                                    "tasks": null,
                                                                                                    "taskGroups": [
                                                                                                        {
                                                                                                            "id": 274,
                                                                                                            "clientPartition": null,
                                                                                                            "name": "string",
                                                                                                            "description": "string",
                                                                                                            "campaign": null,
                                                                                                            "taskLinks": [
                                                                                                                {
                                                                                                                    "id": {
                                                                                                                        "taskGroupId": 57,
                                                                                                                        "taskId": 207
                                                                                                                    },
                                                                                                                    "taskGroup": null,
                                                                                                                    "task": null,
                                                                                                                    "index": 28
                                                                                                                }
                                                                                                            ],
                                                                                                            "pages": [
                                                                                                                {
                                                                                                                    "id": 139,
                                                                                                                    "taskGroup": null,
                                                                                                                    "page": null,
                                                                                                                    "cutOffDate": "2022-04-13",
                                                                                                                    "index": 196
                                                                                                                }
                                                                                                            ],
                                                                                                            "url": "string",
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "descriptionContainsHtml": true,
                                                                                                            "partitionId": 81,
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 267,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "iconColour": "string"
                                                                                                        }
                                                                                                    ],
                                                                                                    "campaignEvents": [
                                                                                                        {
                                                                                                            "id": 252,
                                                                                                            "campaign": null,
                                                                                                            "eventTime": "2022-04-13T15:42:05.901Z",
                                                                                                            "campaignContacts": null,
                                                                                                            "displayName": "string"
                                                                                                        }
                                                                                                    ],
                                                                                                    "watchingUsers": null,
                                                                                                    "securityIssueNotifications": [
                                                                                                        {
                                                                                                            "id": 219,
                                                                                                            "partitionId": 217,
                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                            "user": null,
                                                                                                            "read": true,
                                                                                                            "campaign": null,
                                                                                                            "hasPageSecurityIssues": true,
                                                                                                            "url": "string",
                                                                                                            "mailjetTemplateName": "string",
                                                                                                            "displayCode": "string",
                                                                                                            "mailjetTemplateVars": {},
                                                                                                            "displayIssueType": "string",
                                                                                                            "mailjetTemplateEmail": null,
                                                                                                            "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                            "name": "string",
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 111,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "iconColour": "string"
                                                                                                        }
                                                                                                    ],
                                                                                                    "closed": true,
                                                                                                    "url": "string",
                                                                                                    "visible": true,
                                                                                                    "display": "string",
                                                                                                    "campaignNavigationLevel": 262,
                                                                                                    "onlyPublicAccessForUser": true,
                                                                                                    "watching": true,
                                                                                                    "menuParent": null,
                                                                                                    "breadcrumbParent": null,
                                                                                                    "iconClass": "string",
                                                                                                    "iconColour": "string",
                                                                                                    "footerPresent": true,
                                                                                                    "menuAncestors": null,
                                                                                                    "partitionId": 93,
                                                                                                    "partition": null,
                                                                                                    "idInPartition": 150,
                                                                                                    "recordName": "string",
                                                                                                    "displayAttributes": [
                                                                                                        {}
                                                                                                    ],
                                                                                                    "displayCodePartial": "string",
                                                                                                    "displayArgs": [
                                                                                                        "string"
                                                                                                    ],
                                                                                                    "emailCode": "string",
                                                                                                    "emailPrefix": "string",
                                                                                                    "oneToOne": true
                                                                                                },
                                                                                                "campaignContact": null,
                                                                                                "role": null,
                                                                                                "access": "PUBLIC",
                                                                                                "template": {
                                                                                                    "id": 87,
                                                                                                    "clientPartition": null,
                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                    "campaign": null,
                                                                                                    "name": "string",
                                                                                                    "instructions": "string",
                                                                                                    "endingInstructions": "string",
                                                                                                    "type": "DISCUSSION",
                                                                                                    "fields": [
                                                                                                        {
                                                                                                            "id": 19,
                                                                                                            "template": null,
                                                                                                            "type": "BOOLEAN",
                                                                                                            "index": 224,
                                                                                                            "required": true,
                                                                                                            "range": true,
                                                                                                            "rangeMinimum": 10.12,
                                                                                                            "rangeMaximum": 10.12,
                                                                                                            "question": "string",
                                                                                                            "defaultValue": "string",
                                                                                                            "options": [
                                                                                                                {
                                                                                                                    "id": 16,
                                                                                                                    "template": null,
                                                                                                                    "option": "string"
                                                                                                                }
                                                                                                            ]
                                                                                                        }
                                                                                                    ],
                                                                                                    "iconClass": "string",
                                                                                                    "lastUpdatedById": 263,
                                                                                                    "url": "string",
                                                                                                    "partitionId": 169,
                                                                                                    "partition": null,
                                                                                                    "display": "string",
                                                                                                    "idInPartition": 85,
                                                                                                    "recordName": "string",
                                                                                                    "displayAttributes": [
                                                                                                        {}
                                                                                                    ],
                                                                                                    "displayCodePartial": "string",
                                                                                                    "displayArgs": [
                                                                                                        "string"
                                                                                                    ],
                                                                                                    "breadcrumbParent": null,
                                                                                                    "iconColour": "string"
                                                                                                },
                                                                                                "dueByDate": "2022-04-13",
                                                                                                "closesOnDate": "2022-04-13",
                                                                                                "instructions": "string",
                                                                                                "endingInstructions": "string",
                                                                                                "name": "string",
                                                                                                "taskType": "DISCUSSION",
                                                                                                "document": null,
                                                                                                "documentTwo": null,
                                                                                                "documentLinks": [
                                                                                                    {
                                                                                                        "id": {
                                                                                                            "taskId": 107,
                                                                                                            "documentId": 171,
                                                                                                            "documentPartitionId": 187,
                                                                                                            "document": null
                                                                                                        },
                                                                                                        "task": null,
                                                                                                        "document": null,
                                                                                                        "index": 107,
                                                                                                        "campaign": null
                                                                                                    }
                                                                                                ],
                                                                                                "constituent": null,
                                                                                                "surveyFields": [
                                                                                                    {
                                                                                                        "id": 195,
                                                                                                        "fieldType": "BOOLEAN",
                                                                                                        "name": "string",
                                                                                                        "defaultValue": "string",
                                                                                                        "selectOptionValues": [
                                                                                                            {
                                                                                                                "id": 169,
                                                                                                                "surveyField": null,
                                                                                                                "value": "string",
                                                                                                                "index": 220
                                                                                                            }
                                                                                                        ],
                                                                                                        "index": 83,
                                                                                                        "required": true,
                                                                                                        "range": true,
                                                                                                        "rangeMinimum": 10.12,
                                                                                                        "rangeMaximum": 10.12,
                                                                                                        "campaignContactTask": null,
                                                                                                        "surveyValues": [
                                                                                                            {
                                                                                                                "id": 49,
                                                                                                                "surveyField": null,
                                                                                                                "value": "string",
                                                                                                                "deleted": true,
                                                                                                                "campaignContactEvent": {
                                                                                                                    "id": 134,
                                                                                                                    "clientPartition": null,
                                                                                                                    "task": null,
                                                                                                                    "contact": null,
                                                                                                                    "eventDate": "2022-04-13T15:42:05.901Z",
                                                                                                                    "completed": true,
                                                                                                                    "surveyValues": null,
                                                                                                                    "documentDates": [
                                                                                                                        {
                                                                                                                            "id": 74,
                                                                                                                            "document": null,
                                                                                                                            "dateAccessed": "2022-04-13T15:42:05.901Z",
                                                                                                                            "events": null
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "useSurvey": {
                                                                                                                        "id": 93,
                                                                                                                        "clientPartition": null,
                                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                        "event": null,
                                                                                                                        "contact": null,
                                                                                                                        "campaign": null,
                                                                                                                        "entity": null,
                                                                                                                        "company": "string",
                                                                                                                        "referrer": null,
                                                                                                                        "referralCode": "string",
                                                                                                                        "role": null,
                                                                                                                        "date": "2022-04-13",
                                                                                                                        "constituent": null,
                                                                                                                        "status": "ACTIVE",
                                                                                                                        "importedTonnage": 10.12,
                                                                                                                        "exportedTonnage": 10.12,
                                                                                                                        "orTonnage": 10.12,
                                                                                                                        "useTonnages": [
                                                                                                                            {
                                                                                                                                "id": 134,
                                                                                                                                "useSurvey": null,
                                                                                                                                "use": "10a8c941-af97-4ea2-8266-6716a42a3a1d",
                                                                                                                                "useNameFallback": "string",
                                                                                                                                "useLifeCycleFallback": "string",
                                                                                                                                "tonnage": 10.12,
                                                                                                                                "maxSiteTonnage": 10.12,
                                                                                                                                "notes": "string",
                                                                                                                                "exposureMonitored": true,
                                                                                                                                "proceduresDocumented": true,
                                                                                                                                "legalEmissions": true,
                                                                                                                                "functions": [
                                                                                                                                    {
                                                                                                                                        "id": 257,
                                                                                                                                        "useSurveyTonnage": null,
                                                                                                                                        "functionId": 211,
                                                                                                                                        "functionNameFallback": "string"
                                                                                                                                    }
                                                                                                                                ],
                                                                                                                                "tonnageDetails": [
                                                                                                                                    {
                                                                                                                                        "id": 187,
                                                                                                                                        "useSurveyTonnage": null,
                                                                                                                                        "productCategory": "string",
                                                                                                                                        "processCategory": 73,
                                                                                                                                        "localVentilation": true,
                                                                                                                                        "roomVentilation": "BASIC",
                                                                                                                                        "additionalMeasures": [
                                                                                                                                            "CLOSED_LOOP_SAMPLING"
                                                                                                                                        ],
                                                                                                                                        "goggles": true,
                                                                                                                                        "masks": "YES_10",
                                                                                                                                        "gloves": "YES_80",
                                                                                                                                        "location": "INDOOR",
                                                                                                                                        "duration": "BELOW_15",
                                                                                                                                        "temperature": 10.12,
                                                                                                                                        "concentrationRange": "BELOW_1",
                                                                                                                                        "concentration": 10.12
                                                                                                                                    }
                                                                                                                                ],
                                                                                                                                "sdsFileIds": [
                                                                                                                                    "aa46860d-984c-4dbb-8635-ef8829625dfe"
                                                                                                                                ],
                                                                                                                                "sdsFileNames": [
                                                                                                                                    "string"
                                                                                                                                ]
                                                                                                                            }
                                                                                                                        ],
                                                                                                                        "notes": "string",
                                                                                                                        "empty": true,
                                                                                                                        "entities": null,
                                                                                                                        "ceasedManufacture": true,
                                                                                                                        "onlyRepresentative": true,
                                                                                                                        "lastUpdatedById": 258,
                                                                                                                        "name": "string",
                                                                                                                        "url": "string",
                                                                                                                        "partitionId": 1,
                                                                                                                        "partition": null,
                                                                                                                        "display": "string",
                                                                                                                        "idInPartition": 137,
                                                                                                                        "recordName": "string",
                                                                                                                        "displayAttributes": [
                                                                                                                            {}
                                                                                                                        ],
                                                                                                                        "displayCodePartial": "string",
                                                                                                                        "displayArgs": [
                                                                                                                            "string"
                                                                                                                        ],
                                                                                                                        "breadcrumbParent": null,
                                                                                                                        "iconClass": "string",
                                                                                                                        "iconColour": "string"
                                                                                                                    },
                                                                                                                    "fileId": "f8bec0ef-3c1f-4d5c-89a4-fe68b8962251",
                                                                                                                    "url": "string",
                                                                                                                    "campaign": null,
                                                                                                                    "display": "string",
                                                                                                                    "responses": [
                                                                                                                        {
                                                                                                                            "id": 241,
                                                                                                                            "surveyField": null,
                                                                                                                            "value": "string",
                                                                                                                            "deleted": true,
                                                                                                                            "fieldType": "BOOLEAN",
                                                                                                                            "file": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ=",
                                                                                                                            "fileName": "string",
                                                                                                                            "valueAsUUID": "2b82d5f1-b6c7-4591-933b-35135b937bd5",
                                                                                                                            "valueAsDate": "2022-04-13",
                                                                                                                            "valueSanitized": "string"
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "deleted": true,
                                                                                                                    "calendarStart": "2022-04-13T15:42:05.901Z",
                                                                                                                    "responsesDeleted": true,
                                                                                                                    "downloadedDocumentIds": [
                                                                                                                        247
                                                                                                                    ],
                                                                                                                    "downloadedOldDocumentsOf": [
                                                                                                                        125
                                                                                                                    ],
                                                                                                                    "calendarSource": "PRODUCT",
                                                                                                                    "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                    "allDay": true,
                                                                                                                    "calendarDisplay": "string",
                                                                                                                    "calendarExtendedProps": {},
                                                                                                                    "name": "string",
                                                                                                                    "partitionId": 29,
                                                                                                                    "partition": null,
                                                                                                                    "idInPartition": 5,
                                                                                                                    "recordName": "string",
                                                                                                                    "displayAttributes": [
                                                                                                                        {}
                                                                                                                    ],
                                                                                                                    "displayCodePartial": "string",
                                                                                                                    "displayArgs": [
                                                                                                                        "string"
                                                                                                                    ],
                                                                                                                    "breadcrumbParent": null,
                                                                                                                    "iconClass": "string",
                                                                                                                    "iconColour": "string"
                                                                                                                },
                                                                                                                "fieldType": "BOOLEAN",
                                                                                                                "file": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ=",
                                                                                                                "fileName": "string",
                                                                                                                "valueAsUUID": "c78b8b46-8f2a-4f8d-9875-251ea6ac81ce",
                                                                                                                "valueAsDate": "2022-04-13",
                                                                                                                "valueSanitized": "string"
                                                                                                            }
                                                                                                        ],
                                                                                                        "nameIssues": null,
                                                                                                        "nameContainsHtml": true,
                                                                                                        "nameAsText": "string",
                                                                                                        "selectValuesArray": [
                                                                                                            "string"
                                                                                                        ]
                                                                                                    }
                                                                                                ],
                                                                                                "entityRoles": null,
                                                                                                "uses": [
                                                                                                    "70aebad4-6c7f-4b99-b16a-43631e8c06c4"
                                                                                                ],
                                                                                                "user": null,
                                                                                                "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                "uploadNotificationEmail": "string",
                                                                                                "pages": null,
                                                                                                "taskGroupLinks": null,
                                                                                                "deleted": true,
                                                                                                "watchingUsers": null,
                                                                                                "comments": [
                                                                                                    {
                                                                                                        "id": 149,
                                                                                                        "replyTo": null,
                                                                                                        "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                        "user": null,
                                                                                                        "contact": null,
                                                                                                        "text": "string",
                                                                                                        "published": true,
                                                                                                        "replies": null,
                                                                                                        "notifications": null,
                                                                                                        "calendarSource": "PRODUCT",
                                                                                                        "hidden": true,
                                                                                                        "reply": true,
                                                                                                        "greatestAncestor": null,
                                                                                                        "replyToIsUnpublished": true,
                                                                                                        "serverCreatedReadableDate": "string",
                                                                                                        "lastUpdatedBy": null,
                                                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                        "lastUpdatedById": 56,
                                                                                                        "name": "string",
                                                                                                        "partition": null,
                                                                                                        "display": "string",
                                                                                                        "idInPartition": 74,
                                                                                                        "recordName": "string",
                                                                                                        "displayAttributes": [
                                                                                                            {}
                                                                                                        ],
                                                                                                        "displayCodePartial": "string",
                                                                                                        "displayArgs": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "breadcrumbParent": null,
                                                                                                        "iconClass": "string",
                                                                                                        "iconColour": "string",
                                                                                                        "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                        "allDay": true,
                                                                                                        "calendarExtendedProps": {}
                                                                                                    }
                                                                                                ],
                                                                                                "events": null,
                                                                                                "uploadNotifications": [
                                                                                                    {
                                                                                                        "id": 28,
                                                                                                        "partitionId": 218,
                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                        "user": null,
                                                                                                        "read": true,
                                                                                                        "campaignContactTask": null,
                                                                                                        "contact": null,
                                                                                                        "fileName": "string",
                                                                                                        "baseUrl": "string",
                                                                                                        "url": "string",
                                                                                                        "mailjetTemplateName": "string",
                                                                                                        "displayCode": "string",
                                                                                                        "mailjetTemplateVars": {},
                                                                                                        "mailjetTemplateEmail": null,
                                                                                                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                        "name": "string",
                                                                                                        "partition": null,
                                                                                                        "display": "string",
                                                                                                        "idInPartition": 295,
                                                                                                        "recordName": "string",
                                                                                                        "displayAttributes": [
                                                                                                            {}
                                                                                                        ],
                                                                                                        "displayCodePartial": "string",
                                                                                                        "displayArgs": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "breadcrumbParent": null,
                                                                                                        "iconClass": "string",
                                                                                                        "iconColour": "string"
                                                                                                    }
                                                                                                ],
                                                                                                "surveyNotifications": [
                                                                                                    {
                                                                                                        "id": 230,
                                                                                                        "partitionId": 204,
                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                        "user": null,
                                                                                                        "read": true,
                                                                                                        "campaignContactTask": null,
                                                                                                        "contact": null,
                                                                                                        "baseUrl": "string",
                                                                                                        "url": "string",
                                                                                                        "mailjetTemplateName": "string",
                                                                                                        "taskUrl": "string",
                                                                                                        "displayCode": "string",
                                                                                                        "mailjetTemplateVars": {},
                                                                                                        "mailjetTemplateEmail": null,
                                                                                                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                        "name": "string",
                                                                                                        "partition": null,
                                                                                                        "display": "string",
                                                                                                        "idInPartition": 163,
                                                                                                        "recordName": "string",
                                                                                                        "displayAttributes": [
                                                                                                            {}
                                                                                                        ],
                                                                                                        "displayCodePartial": "string",
                                                                                                        "displayArgs": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "breadcrumbParent": null,
                                                                                                        "iconClass": "string",
                                                                                                        "iconColour": "string"
                                                                                                    }
                                                                                                ],
                                                                                                "iuclidReviewNotifications": [
                                                                                                    {
                                                                                                        "id": 26,
                                                                                                        "partitionId": 243,
                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                        "user": null,
                                                                                                        "read": true,
                                                                                                        "campaignContactTask": null,
                                                                                                        "contact": null,
                                                                                                        "baseUrl": "string",
                                                                                                        "url": "string",
                                                                                                        "mailjetTemplateName": "string",
                                                                                                        "approval": true,
                                                                                                        "displayCode": "string",
                                                                                                        "mailjetTemplateVars": {},
                                                                                                        "mailjetTemplateEmail": null,
                                                                                                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                        "name": "string",
                                                                                                        "partition": null,
                                                                                                        "display": "string",
                                                                                                        "idInPartition": 134,
                                                                                                        "recordName": "string",
                                                                                                        "displayAttributes": [
                                                                                                            {}
                                                                                                        ],
                                                                                                        "displayCodePartial": "string",
                                                                                                        "displayArgs": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "breadcrumbParent": null,
                                                                                                        "iconClass": "string",
                                                                                                        "iconColour": "string"
                                                                                                    }
                                                                                                ],
                                                                                                "documentsList": null,
                                                                                                "sendCustomSurveyNotificationEmail": true,
                                                                                                "showDocumentNameOnDownloads": true,
                                                                                                "public": true,
                                                                                                "closed": true,
                                                                                                "groups": null,
                                                                                                "url": "string",
                                                                                                "archived": true,
                                                                                                "letterOfAccessRelated": true,
                                                                                                "firstActiveDocument": null,
                                                                                                "containingArchivedDocument": true,
                                                                                                "instructionsIssues": null,
                                                                                                "endingInstructionsIssues": null,
                                                                                                "recordName": "string",
                                                                                                "breadcrumbParent": null,
                                                                                                "iconClass": "string",
                                                                                                "webPortalDisplays": "string",
                                                                                                "campaignIfUnrestricted": null,
                                                                                                "firstActiveIuclid": {
                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                    "id": 9,
                                                                                                    "partition": null,
                                                                                                    "title": "string",
                                                                                                    "description": "string",
                                                                                                    "fileName": "string",
                                                                                                    "originalFileName": "string",
                                                                                                    "link": true,
                                                                                                    "fileSize": 245,
                                                                                                    "uploadDate": "2022-04-13T15:42:05.901Z",
                                                                                                    "documentCreationDate": "2022-04-13",
                                                                                                    "fileType": "UNKNOWN",
                                                                                                    "docType": "DOCUMENT",
                                                                                                    "expiryDate": "2022-04-13",
                                                                                                    "retentionDate": "2022-04-13",
                                                                                                    "permanent": true,
                                                                                                    "products": null,
                                                                                                    "constituents": null,
                                                                                                    "categoryGroups": null,
                                                                                                    "productGroups": null,
                                                                                                    "entities": null,
                                                                                                    "documentEntityGroups": null,
                                                                                                    "entityGroups": null,
                                                                                                    "documentContactGroups": null,
                                                                                                    "contactGroups": null,
                                                                                                    "documentTagSet": null,
                                                                                                    "linkedDocuments": null,
                                                                                                    "version": 86,
                                                                                                    "versionIdentifier": "string",
                                                                                                    "currentDocumentId": 288,
                                                                                                    "currentDocument": null,
                                                                                                    "newsItem": true,
                                                                                                    "deleted": true,
                                                                                                    "deletedDate": "2022-04-13T15:42:05.901Z",
                                                                                                    "fileId": "e1eb91f6-2e1c-44e0-a45b-adb2d1705d4e",
                                                                                                    "watchingUsers": null,
                                                                                                    "expiryNotifications": [
                                                                                                        {
                                                                                                            "id": 20,
                                                                                                            "partitionId": 225,
                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                            "user": null,
                                                                                                            "read": true,
                                                                                                            "document": null,
                                                                                                            "expiryDate": "2022-04-13",
                                                                                                            "url": "string",
                                                                                                            "mailjetTemplateName": "string",
                                                                                                            "displayCode": "string",
                                                                                                            "mailjetTemplateVars": {},
                                                                                                            "daysUntilExpiry": 135,
                                                                                                            "drc": true,
                                                                                                            "mailjetTemplateEmail": null,
                                                                                                            "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                            "name": "string",
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 147,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "iconColour": "string"
                                                                                                        }
                                                                                                    ],
                                                                                                    "retentionNotifications": [
                                                                                                        {
                                                                                                            "id": 265,
                                                                                                            "partitionId": 68,
                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                            "user": null,
                                                                                                            "read": true,
                                                                                                            "document": null,
                                                                                                            "retentionDate": "2022-04-13",
                                                                                                            "url": "string",
                                                                                                            "mailjetTemplateName": "string",
                                                                                                            "displayCode": "string",
                                                                                                            "mailjetTemplateVars": {},
                                                                                                            "daysUntilExpiry": 298,
                                                                                                            "mailjetTemplateEmail": null,
                                                                                                            "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                            "name": "string",
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 55,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "iconColour": "string"
                                                                                                        }
                                                                                                    ],
                                                                                                    "notifyEmail": "string",
                                                                                                    "expirationNotified": true,
                                                                                                    "retentionNotified": true,
                                                                                                    "folders": null,
                                                                                                    "taskLinks": null,
                                                                                                    "taskTwoLinks": null,
                                                                                                    "downloadTaskLinks": null,
                                                                                                    "constituentTonnages": [
                                                                                                        {
                                                                                                            "id": 42,
                                                                                                            "reachLegislation": "EU_REACH",
                                                                                                            "registration": {
                                                                                                                "id": 209,
                                                                                                                "constituent": null,
                                                                                                                "forEntity": null,
                                                                                                                "reachLegislation": "EU_REACH",
                                                                                                                "legalEntity": null,
                                                                                                                "ecName": "string",
                                                                                                                "ecNumber": "string",
                                                                                                                "submissionNumber": "string",
                                                                                                                "registrationNumber": "string",
                                                                                                                "registrationName": "string",
                                                                                                                "registrationDate": "2022-04-13",
                                                                                                                "registrationNotes": "string",
                                                                                                                "publicName": "string",
                                                                                                                "submissionDate": "2022-04-13",
                                                                                                                "uclidID": "string",
                                                                                                                "reachRole": "MANUFACTURER",
                                                                                                                "reachSubstanceTypeComposition": "MONO_CONSTITUENT",
                                                                                                                "substanceTypeCompositionOther": "string",
                                                                                                                "reachSubstanceTypeOrigin": "ELEMENT",
                                                                                                                "substanceTypeOriginOther": "string",
                                                                                                                "originEntity": null,
                                                                                                                "onlyRepresentative": null,
                                                                                                                "preregistrationName": "string",
                                                                                                                "preregistrationNumber": "string",
                                                                                                                "preregistrationDate": "2022-04-13",
                                                                                                                "preregisteredTonnageBand": "BAND_1",
                                                                                                                "notPreregistered": "string",
                                                                                                                "exemptionType": "EXEMPTION",
                                                                                                                "exemption": "string",
                                                                                                                "exemptionClaimed": "string",
                                                                                                                "exemptionComment": "string",
                                                                                                                "reachITRegistrations": [
                                                                                                                    {
                                                                                                                        "id": 131,
                                                                                                                        "reachRegistration": null,
                                                                                                                        "dateSubmitted": "2022-04-13",
                                                                                                                        "dateIssued": "2022-04-13",
                                                                                                                        "dateAccepted": "2022-04-13",
                                                                                                                        "reachDossierType": "A",
                                                                                                                        "tonnageBand": "BAND1",
                                                                                                                        "reason": "CEASE_OF_MANUFACTURE",
                                                                                                                        "notes": "string",
                                                                                                                        "iuclidDossierReference": "string",
                                                                                                                        "submissionNumber": "string",
                                                                                                                        "passedPipeline": true,
                                                                                                                        "supportingDocument": null,
                                                                                                                        "partitionId": 58,
                                                                                                                        "constituent": null,
                                                                                                                        "forEntity": null,
                                                                                                                        "leadRegistrant": null
                                                                                                                    }
                                                                                                                ],
                                                                                                                "registeredTonnageBands": [
                                                                                                                    {
                                                                                                                        "id": 191,
                                                                                                                        "reachRegistration": null,
                                                                                                                        "registeredTonnageBand": "BAND_1",
                                                                                                                        "start": "2022-04-13",
                                                                                                                        "url": "string",
                                                                                                                        "calendarStart": "2022-04-13T15:42:05.901Z",
                                                                                                                        "allDay": true,
                                                                                                                        "calendarDisplay": "string",
                                                                                                                        "calendarSource": "PRODUCT",
                                                                                                                        "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                        "calendarExtendedProps": {},
                                                                                                                        "name": "string",
                                                                                                                        "partitionId": 52,
                                                                                                                        "partition": null,
                                                                                                                        "display": "string",
                                                                                                                        "idInPartition": 73,
                                                                                                                        "recordName": "string",
                                                                                                                        "displayAttributes": [
                                                                                                                            {}
                                                                                                                        ],
                                                                                                                        "displayCodePartial": "string",
                                                                                                                        "displayArgs": [
                                                                                                                            "string"
                                                                                                                        ],
                                                                                                                        "breadcrumbParent": null,
                                                                                                                        "iconClass": "string",
                                                                                                                        "iconColour": "string"
                                                                                                                    }
                                                                                                                ],
                                                                                                                "preregistered": true,
                                                                                                                "enquiryNumber": "string",
                                                                                                                "ppordNumber": "string",
                                                                                                                "submissionType": "GRANDFATHERED",
                                                                                                                "reachDossierType": "A",
                                                                                                                "constituentTonnages": null,
                                                                                                                "partitionId": 31,
                                                                                                                "currentTonnageBandToImport": "BAND_1",
                                                                                                                "lastUpdatedBy": null,
                                                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z"
                                                                                                            },
                                                                                                            "percentage": 10.12,
                                                                                                            "constituent": null,
                                                                                                            "entryYear": 97,
                                                                                                            "forecast": true,
                                                                                                            "tonnesOwnProduction": 10.12,
                                                                                                            "tonnesOwnImport": 10.12,
                                                                                                            "site": null,
                                                                                                            "notes": "string",
                                                                                                            "enteredDate": "2022-04-13",
                                                                                                            "substanceOrUnknown": 10.12,
                                                                                                            "monomerInAPolymer": 10.12,
                                                                                                            "mixture": 10.12,
                                                                                                            "inAnArticle": 10.12,
                                                                                                            "notInAnArticle": 10.12,
                                                                                                            "document": null,
                                                                                                            "user": null,
                                                                                                            "lastUpdated": "2022-04-13",
                                                                                                            "deleted": true,
                                                                                                            "forEntity": null
                                                                                                        }
                                                                                                    ],
                                                                                                    "productTonnages": [
                                                                                                        {
                                                                                                            "id": 69,
                                                                                                            "reachLegislation": "EU_REACH",
                                                                                                            "forEntity": null,
                                                                                                            "product": null,
                                                                                                            "entryYear": 22,
                                                                                                            "forecast": true,
                                                                                                            "notes": "string",
                                                                                                            "enteredDate": "2022-04-13",
                                                                                                            "substanceOrUnknown": 10.12,
                                                                                                            "monomerInAPolymer": 10.12,
                                                                                                            "mixture": 10.12,
                                                                                                            "inAnArticle": 10.12,
                                                                                                            "notInAnArticle": 10.12,
                                                                                                            "document": null,
                                                                                                            "tonnesManufactured": 10.12,
                                                                                                            "tonnesImported": 10.12,
                                                                                                            "party": null,
                                                                                                            "user": null,
                                                                                                            "lastUpdated": "2022-04-13",
                                                                                                            "deleted": true
                                                                                                        }
                                                                                                    ],
                                                                                                    "comments": [
                                                                                                        {
                                                                                                            "id": 173,
                                                                                                            "replyTo": null,
                                                                                                            "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                            "user": null,
                                                                                                            "contact": null,
                                                                                                            "text": "string",
                                                                                                            "published": true,
                                                                                                            "replies": null,
                                                                                                            "notifications": null,
                                                                                                            "node": {
                                                                                                                "id": 151,
                                                                                                                "code": "string",
                                                                                                                "forType": "string",
                                                                                                                "title": "string",
                                                                                                                "matrix": true,
                                                                                                                "children": null,
                                                                                                                "records": [
                                                                                                                    {
                                                                                                                        "type": "DOCUMENT",
                                                                                                                        "iuclidVersion": "string",
                                                                                                                        "key": "string",
                                                                                                                        "name": "string",
                                                                                                                        "documentType": "string",
                                                                                                                        "subType": "string",
                                                                                                                        "orderInSectionNo": "string",
                                                                                                                        "definitionVersion": "string",
                                                                                                                        "creationDate": "2022-04-13T15:42:05.901Z",
                                                                                                                        "lastModificationDate": "2022-04-13T15:42:05.901Z",
                                                                                                                        "submissionType": "string",
                                                                                                                        "submissionTypeVersion": "string",
                                                                                                                        "submittingLegalEntity": "string",
                                                                                                                        "dossier": null,
                                                                                                                        "dossierSubjectKey": "string",
                                                                                                                        "dossierSubject": null,
                                                                                                                        "i5Origin": true,
                                                                                                                        "creationTool": "string",
                                                                                                                        "snapshotCreationTool": "string",
                                                                                                                        "href": "string",
                                                                                                                        "attachments": null,
                                                                                                                        "literatureDocuments": null,
                                                                                                                        "otherReferences": null,
                                                                                                                        "templates": null,
                                                                                                                        "categories": null,
                                                                                                                        "records": {},
                                                                                                                        "tree": null,
                                                                                                                        "ownerLegalEntity": null,
                                                                                                                        "refSubstance": null,
                                                                                                                        "substances": null,
                                                                                                                        "containerId": "string",
                                                                                                                        "i6CategoryDocumentDefinitionIdentifiers": [
                                                                                                                            {
                                                                                                                                "documentType": "string",
                                                                                                                                "documentSubType": "string"
                                                                                                                            }
                                                                                                                        ],
                                                                                                                        "changeType": "ADDED",
                                                                                                                        "commentCount": 179,
                                                                                                                        "descendantComments": true,
                                                                                                                        "content": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ=",
                                                                                                                        "subject": null,
                                                                                                                        "definition": "string",
                                                                                                                        "template": true,
                                                                                                                        "uuid": "string",
                                                                                                                        "display": "string",
                                                                                                                        "category": true,
                                                                                                                        "creationDateFromString": "string",
                                                                                                                        "lastModificationDateFromString": "string",
                                                                                                                        "substance": true,
                                                                                                                        "idString": "string",
                                                                                                                        "endpointSummary": true
                                                                                                                    }
                                                                                                                ],
                                                                                                                "changeType": "ADDED",
                                                                                                                "commentCount": 103,
                                                                                                                "descendantComments": true,
                                                                                                                "display": "string",
                                                                                                                "idString": "string"
                                                                                                            },
                                                                                                            "wrapperId": "string",
                                                                                                            "calendarSource": "PRODUCT",
                                                                                                            "forTocEntry": true,
                                                                                                            "name": "string",
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 30,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "iconColour": "string",
                                                                                                            "hidden": true,
                                                                                                            "reply": true,
                                                                                                            "greatestAncestor": null,
                                                                                                            "replyToIsUnpublished": true,
                                                                                                            "serverCreatedReadableDate": "string",
                                                                                                            "lastUpdatedBy": null,
                                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                            "lastUpdatedById": 128,
                                                                                                            "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                            "allDay": true,
                                                                                                            "calendarExtendedProps": {}
                                                                                                        }
                                                                                                    ],
                                                                                                    "searchedVia": null,
                                                                                                    "integration": {
                                                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                        "id": 27,
                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                        "type": "BOCOUNT_EXPORT_INVOICES",
                                                                                                        "name": "string",
                                                                                                        "host": "string",
                                                                                                        "principal": "string",
                                                                                                        "credential": "string",
                                                                                                        "token": "string",
                                                                                                        "tokenTransient": "string",
                                                                                                        "tokenExpires": "2022-04-13T15:42:05.901Z",
                                                                                                        "refreshToken": "string",
                                                                                                        "authType": "PLAIN",
                                                                                                        "entity": null,
                                                                                                        "iuclidDocuments": null,
                                                                                                        "display": "string",
                                                                                                        "tokenExpired": true,
                                                                                                        "tokenEncrypted": "string",
                                                                                                        "refreshTokenEncrypted": "string",
                                                                                                        "credentialEncrypted": "string",
                                                                                                        "refreshTokenExpired": true
                                                                                                    },
                                                                                                    "IUCLIDAuthor": "string",
                                                                                                    "legalEntity": "string",
                                                                                                    "creationDate": "2022-04-13",
                                                                                                    "uuid": "string",
                                                                                                    "context": {
                                                                                                        "id": 35,
                                                                                                        "provider": "string",
                                                                                                        "identifier": "string",
                                                                                                        "title": "string",
                                                                                                        "applicableFor": "string",
                                                                                                        "tree": "string",
                                                                                                        "key": "string"
                                                                                                    },
                                                                                                    "manifest": {
                                                                                                        "title": "string",
                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                        "author": "string",
                                                                                                        "application": "string",
                                                                                                        "submissionTypeString": "string",
                                                                                                        "context": null,
                                                                                                        "archiveType": "string",
                                                                                                        "legislation": {},
                                                                                                        "comment": "string",
                                                                                                        "baseDocumentUuid": "string",
                                                                                                        "baseDocument": null,
                                                                                                        "treeName": "string",
                                                                                                        "relevantDocumentType": "string"
                                                                                                    },
                                                                                                    "iuclidauthor": "string",
                                                                                                    "index": 39,
                                                                                                    "relatedDocumentConstituents": [
                                                                                                        {
                                                                                                            "id": 109,
                                                                                                            "document": null,
                                                                                                            "constituent": null,
                                                                                                            "deleted": true
                                                                                                        }
                                                                                                    ],
                                                                                                    "relatedDocumentEntities": [
                                                                                                        {
                                                                                                            "id": 9,
                                                                                                            "entity": null,
                                                                                                            "document": null,
                                                                                                            "deleted": true
                                                                                                        }
                                                                                                    ],
                                                                                                    "relatedDocumentProductGroups": [
                                                                                                        {
                                                                                                            "id": 98,
                                                                                                            "document": null,
                                                                                                            "productGroup": null
                                                                                                        }
                                                                                                    ],
                                                                                                    "relatedDocumentProducts": [
                                                                                                        {
                                                                                                            "id": 138,
                                                                                                            "document": null,
                                                                                                            "product": null,
                                                                                                            "deleted": true
                                                                                                        }
                                                                                                    ],
                                                                                                    "relatedDocumentContactGroups": null,
                                                                                                    "partitionId": 166
                                                                                                },
                                                                                                "commentType": "string",
                                                                                                "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                                                "commentDisplayUrl": "string",
                                                                                                "watching": true,
                                                                                                "watchers": null,
                                                                                                "partitionId": 298,
                                                                                                "partition": null,
                                                                                                "display": "string",
                                                                                                "idInPartition": 116,
                                                                                                "displayAttributes": [
                                                                                                    {}
                                                                                                ],
                                                                                                "displayCodePartial": "string",
                                                                                                "displayArgs": [
                                                                                                    "string"
                                                                                                ],
                                                                                                "iconColour": "string"
                                                                                            }
                                                                                        ],
                                                                                        "name": "string",
                                                                                        "commentType": "string",
                                                                                        "commentsPermission": "ROLE_PRE_AUTH",
                                                                                        "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                                        "commentDisplayUrl": "string",
                                                                                        "productIds": [
                                                                                            33
                                                                                        ],
                                                                                        "constituentIds": [
                                                                                            16
                                                                                        ],
                                                                                        "studyIds": [
                                                                                            147
                                                                                        ],
                                                                                        "entityIds": [
                                                                                            114
                                                                                        ],
                                                                                        "lastUpdatedById": 197,
                                                                                        "url": "string",
                                                                                        "partitionId": 230,
                                                                                        "partition": null,
                                                                                        "display": "string",
                                                                                        "idInPartition": 174,
                                                                                        "recordName": "string",
                                                                                        "displayAttributes": [
                                                                                            {}
                                                                                        ],
                                                                                        "displayCodePartial": "string",
                                                                                        "displayArgs": [
                                                                                            "string"
                                                                                        ],
                                                                                        "breadcrumbParent": null,
                                                                                        "iconClass": "string",
                                                                                        "iconColour": "string",
                                                                                        "emailCode": "string",
                                                                                        "emailPrefix": "string",
                                                                                        "oneToOne": true,
                                                                                        "watching": true,
                                                                                        "watchers": null
                                                                                    }
                                                                                ],
                                                                                "documentLinkAttachments": null,
                                                                                "deleted": true,
                                                                                "deletedDate": "2022-04-13T15:42:05.901Z",
                                                                                "fileId": "f940fe7f-e09b-41f3-aaa4-56e84b14de33",
                                                                                "watchingUsers": null,
                                                                                "expiryNotifications": null,
                                                                                "retentionNotifications": null,
                                                                                "notifyEmail": "string",
                                                                                "expirationNotified": true,
                                                                                "retentionNotified": true,
                                                                                "folders": null,
                                                                                "taskLinks": null,
                                                                                "taskTwoLinks": null,
                                                                                "downloadTaskLinks": null,
                                                                                "constituentTonnages": null,
                                                                                "productTonnages": null,
                                                                                "comments": null,
                                                                                "searchedVia": null,
                                                                                "emailDate": "2022-04-13T15:42:05.901Z",
                                                                                "sender": "string",
                                                                                "recipients": [
                                                                                    {
                                                                                        "id": 155,
                                                                                        "type": "TO",
                                                                                        "firstName": "string",
                                                                                        "secondName": "string",
                                                                                        "emailAddress": "string",
                                                                                        "documentEmailInternal": null,
                                                                                        "contact": null,
                                                                                        "deleted": true,
                                                                                        "fullName": "string",
                                                                                        "domain": "string"
                                                                                    }
                                                                                ],
                                                                                "subject": "string",
                                                                                "emailBody": "string",
                                                                                "privatise": true,
                                                                                "fromTemplate": true,
                                                                                "cc": "string",
                                                                                "bcc": "string",
                                                                                "saveAsDraft": true,
                                                                                "index": 285,
                                                                                "relatedDocumentConstituents": null,
                                                                                "relatedDocumentEntities": null,
                                                                                "relatedDocumentProductGroups": null,
                                                                                "relatedDocumentProducts": null,
                                                                                "relatedDocumentContactGroups": null,
                                                                                "partitionId": 58
                                                                            }
                                                                        ],
                                                                        "tonnageAndUseEnquiries": null,
                                                                        "reminderDatePassed": true
                                                                    },
                                                                    "documentEmailInternals": null,
                                                                    "products": null,
                                                                    "tonnageAndUseImporters": [
                                                                        {
                                                                            "id": 249,
                                                                            "name": "string",
                                                                            "address": "string",
                                                                            "contactPerson": "string",
                                                                            "email": "string",
                                                                            "telephone": "string",
                                                                            "tauiProducts": [
                                                                                {
                                                                                    "id": 256,
                                                                                    "tonnageAndUseEnquiryProductUses": [
                                                                                        {
                                                                                            "id": 87,
                                                                                            "tonnageAndUseImporter": null,
                                                                                            "useUuid": "17ce0188-74e5-46d7-ab4c-1cc750244e82",
                                                                                            "puStatus": "x",
                                                                                            "usePercentage": 10.12,
                                                                                            "selected": true,
                                                                                            "remarks": "string"
                                                                                        }
                                                                                    ],
                                                                                    "customUses": [
                                                                                        {
                                                                                            "id": 170,
                                                                                            "useName": "string",
                                                                                            "useDescription": "string",
                                                                                            "percentage": 10.12,
                                                                                            "tauiProduct": null
                                                                                        }
                                                                                    ],
                                                                                    "quantityTonnes": 10.12,
                                                                                    "substanceOrUnknown": 10.12,
                                                                                    "monomerInAPolymer": 10.12,
                                                                                    "mixture": 10.12,
                                                                                    "inAnArticle": 10.12,
                                                                                    "notInAnArticle": 10.12,
                                                                                    "selected": true,
                                                                                    "product": null,
                                                                                    "remarks": "string"
                                                                                }
                                                                            ],
                                                                            "clientPartition": null,
                                                                            "taxID": "string",
                                                                            "country": "string"
                                                                        }
                                                                    ],
                                                                    "tonnageAndUseEnquiryUploadDocuments": [
                                                                        {
                                                                            "id": 270,
                                                                            "fileName": "string",
                                                                            "fileId": "d7ff958d-b818-42c1-96f0-3d984a456583"
                                                                        }
                                                                    ],
                                                                    "clientPartition": null,
                                                                    "id": 263,
                                                                    "dateCreated": "2022-04-13T15:42:05.901Z",
                                                                    "code": "string",
                                                                    "hidden": true,
                                                                    "submitted": true,
                                                                    "includeForms": true,
                                                                    "dateSubmited": "2022-04-13T15:42:05.901Z",
                                                                    "accepted": true,
                                                                    "dateAccepted": "2022-04-13T15:42:05.901Z",
                                                                    "acceptedBy": null,
                                                                    "submittedBy": null,
                                                                    "sentBy": null,
                                                                    "completeWithinDays": 238,
                                                                    "createdAsTonnageEnquiry": true,
                                                                    "removeBracketedTextFromProductName": true,
                                                                    "entityRole": null
                                                                }
                                                            ],
                                                            "testingLaboratoryContacts": [
                                                                {
                                                                    "id": 278,
                                                                    "testingLaboratory": {
                                                                        "id": 286,
                                                                        "clientPartition": null,
                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                        "study": null,
                                                                        "testingLaboratoryEntity": null,
                                                                        "contacts": null,
                                                                        "studyNumbers": [
                                                                            {
                                                                                "id": 148,
                                                                                "testingLaboratory": null,
                                                                                "activity": "string",
                                                                                "contractRef": "string",
                                                                                "studyNumber": "string",
                                                                                "cost": 10.12,
                                                                                "publishedCost": 10.12,
                                                                                "payments": [
                                                                                    {
                                                                                        "id": 121,
                                                                                        "name": "string",
                                                                                        "estimatedDate": "2022-04-13",
                                                                                        "cost": 10.12,
                                                                                        "percentage": 10.12,
                                                                                        "studyNumber": null,
                                                                                        "type": "SCHEDULED",
                                                                                        "yearMonth": {
                                                                                            "year": 107,
                                                                                            "month": "JANUARY",
                                                                                            "monthValue": 223,
                                                                                            "leapYear": true
                                                                                        },
                                                                                        "year": 158,
                                                                                        "budget": {
                                                                                            "id": 85,
                                                                                            "clientPartition": null,
                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                            "name": "string",
                                                                                            "start": "2022-04-13",
                                                                                            "end": "2022-04-13",
                                                                                            "currency": "string",
                                                                                            "cost": 10.12,
                                                                                            "externalRef": "string",
                                                                                            "description": "string",
                                                                                            "products": null,
                                                                                            "constituents": null,
                                                                                            "categoryGroups": null,
                                                                                            "documentBudgets": [
                                                                                                {
                                                                                                    "id": 72,
                                                                                                    "document": null,
                                                                                                    "budget": null,
                                                                                                    "cost": 10.12
                                                                                                }
                                                                                            ],
                                                                                            "entityBudgets": [
                                                                                                {
                                                                                                    "id": 267,
                                                                                                    "entity": null,
                                                                                                    "budget": null,
                                                                                                    "purchaseOrderNumber": "string",
                                                                                                    "constituentEntity": null,
                                                                                                    "constituent": null
                                                                                                }
                                                                                            ],
                                                                                            "currencyInstance": {
                                                                                                "currencyCode": "string",
                                                                                                "numericCodeAsString": "string",
                                                                                                "displayName": "string",
                                                                                                "symbol": "string",
                                                                                                "defaultFractionDigits": 62,
                                                                                                "numericCode": 7
                                                                                            },
                                                                                            "lastUpdatedById": 212,
                                                                                            "url": "string",
                                                                                            "partitionId": 255,
                                                                                            "partition": null,
                                                                                            "display": "string",
                                                                                            "idInPartition": 184,
                                                                                            "recordName": "string",
                                                                                            "displayAttributes": [
                                                                                                {}
                                                                                            ],
                                                                                            "displayCodePartial": "string",
                                                                                            "displayArgs": [
                                                                                                "string"
                                                                                            ],
                                                                                            "breadcrumbParent": null,
                                                                                            "iconClass": "string",
                                                                                            "iconColour": "string"
                                                                                        },
                                                                                        "yearQuarter": {
                                                                                            "left": 156,
                                                                                            "right": 211,
                                                                                            "value": 55,
                                                                                            "key": 121
                                                                                        },
                                                                                        "quarter": 53
                                                                                    }
                                                                                ],
                                                                                "publishedPayments": [
                                                                                    {
                                                                                        "id": 11,
                                                                                        "name": "string",
                                                                                        "estimatedDate": "2022-04-13",
                                                                                        "cost": 10.12,
                                                                                        "percentage": 10.12,
                                                                                        "studyNumber": null,
                                                                                        "type": "SCHEDULED",
                                                                                        "yearMonth": {
                                                                                            "year": 268,
                                                                                            "month": "JANUARY",
                                                                                            "monthValue": 61,
                                                                                            "leapYear": true
                                                                                        },
                                                                                        "year": 210,
                                                                                        "budget": null,
                                                                                        "yearQuarter": null,
                                                                                        "quarter": 0
                                                                                    }
                                                                                ],
                                                                                "activities": [
                                                                                    {
                                                                                        "id": 289,
                                                                                        "studyNumber": null,
                                                                                        "name": "string",
                                                                                        "autoPlannedAfter": 36,
                                                                                        "autoPlannedAfterPrevious": 11,
                                                                                        "planned": "2022-04-13",
                                                                                        "completed": "2022-04-13",
                                                                                        "signedBy": null,
                                                                                        "editable": true,
                                                                                        "template": {
                                                                                            "id": 105,
                                                                                            "timelineTemplate": {
                                                                                                "id": 110,
                                                                                                "name": "string",
                                                                                                "activityTemplates": null
                                                                                            },
                                                                                            "name": "string",
                                                                                            "autoPlannedAfter": 80,
                                                                                            "autoPlannedAfterPrevious": 96,
                                                                                            "responsible": "CRO",
                                                                                            "activities": null
                                                                                        },
                                                                                        "comments": [
                                                                                            {
                                                                                                "id": 255,
                                                                                                "replyTo": null,
                                                                                                "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                "user": null,
                                                                                                "contact": null,
                                                                                                "text": "string",
                                                                                                "published": true,
                                                                                                "replies": null,
                                                                                                "notifications": null,
                                                                                                "calendarSource": "PRODUCT",
                                                                                                "hidden": true,
                                                                                                "reply": true,
                                                                                                "greatestAncestor": null,
                                                                                                "replyToIsUnpublished": true,
                                                                                                "serverCreatedReadableDate": "string",
                                                                                                "lastUpdatedBy": null,
                                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                "lastUpdatedById": 139,
                                                                                                "name": "string",
                                                                                                "partition": null,
                                                                                                "display": "string",
                                                                                                "idInPartition": 69,
                                                                                                "recordName": "string",
                                                                                                "displayAttributes": [
                                                                                                    {}
                                                                                                ],
                                                                                                "displayCodePartial": "string",
                                                                                                "displayArgs": [
                                                                                                    "string"
                                                                                                ],
                                                                                                "breadcrumbParent": null,
                                                                                                "iconClass": "string",
                                                                                                "iconColour": "string",
                                                                                                "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                "allDay": true,
                                                                                                "calendarExtendedProps": {}
                                                                                            }
                                                                                        ],
                                                                                        "overdueNotifications": [
                                                                                            {
                                                                                                "id": 131,
                                                                                                "partitionId": 151,
                                                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                                                "user": null,
                                                                                                "read": true,
                                                                                                "activity": null,
                                                                                                "planned": "2022-04-13",
                                                                                                "url": "string",
                                                                                                "mailjetTemplateName": "string",
                                                                                                "displayCode": "string",
                                                                                                "mailjetTemplateVars": {},
                                                                                                "mailjetTemplateEmail": null,
                                                                                                "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                "name": "string",
                                                                                                "partition": null,
                                                                                                "display": "string",
                                                                                                "idInPartition": 220,
                                                                                                "recordName": "string",
                                                                                                "displayAttributes": [
                                                                                                    {}
                                                                                                ],
                                                                                                "displayCodePartial": "string",
                                                                                                "displayArgs": [
                                                                                                    "string"
                                                                                                ],
                                                                                                "breadcrumbParent": null,
                                                                                                "iconClass": "string",
                                                                                                "iconColour": "string"
                                                                                            }
                                                                                        ],
                                                                                        "overdueNotified": true,
                                                                                        "inheritingGroupActivities": [
                                                                                            {
                                                                                                "id": 186,
                                                                                                "group": {
                                                                                                    "id": 30,
                                                                                                    "clientPartition": null,
                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                    "name": "string",
                                                                                                    "description": "string",
                                                                                                    "studies": null,
                                                                                                    "entityStudyGroups": [
                                                                                                        {
                                                                                                            "id": 37,
                                                                                                            "entity": null,
                                                                                                            "purpose": "VI",
                                                                                                            "entityCostRole": {
                                                                                                                "id": 287,
                                                                                                                "display": "string",
                                                                                                                "journal": "MEM_S_CN",
                                                                                                                "name": "string",
                                                                                                                "url": "string",
                                                                                                                "partitionId": 150,
                                                                                                                "partition": null,
                                                                                                                "idInPartition": 47,
                                                                                                                "recordName": "string",
                                                                                                                "displayAttributes": [
                                                                                                                    {}
                                                                                                                ],
                                                                                                                "displayCodePartial": "string",
                                                                                                                "displayArgs": [
                                                                                                                    "string"
                                                                                                                ],
                                                                                                                "breadcrumbParent": null,
                                                                                                                "iconClass": "string",
                                                                                                                "iconColour": "string"
                                                                                                            },
                                                                                                            "purchaseOrderNumber": "string",
                                                                                                            "constituentEntity": null,
                                                                                                            "group": null,
                                                                                                            "constituent": null
                                                                                                        }
                                                                                                    ],
                                                                                                    "overriddenStudies": null,
                                                                                                    "activities": null,
                                                                                                    "watchingUsers": null,
                                                                                                    "comments": [
                                                                                                        {
                                                                                                            "id": 177,
                                                                                                            "replyTo": null,
                                                                                                            "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                            "user": null,
                                                                                                            "contact": null,
                                                                                                            "text": "string",
                                                                                                            "published": true,
                                                                                                            "replies": null,
                                                                                                            "notifications": null,
                                                                                                            "calendarSource": "PRODUCT",
                                                                                                            "hidden": true,
                                                                                                            "reply": true,
                                                                                                            "greatestAncestor": null,
                                                                                                            "replyToIsUnpublished": true,
                                                                                                            "serverCreatedReadableDate": "string",
                                                                                                            "lastUpdatedBy": null,
                                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                            "lastUpdatedById": 3,
                                                                                                            "name": "string",
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 21,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "iconColour": "string",
                                                                                                            "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                            "allDay": true,
                                                                                                            "calendarExtendedProps": {}
                                                                                                        }
                                                                                                    ],
                                                                                                    "studiesCount": 263,
                                                                                                    "commentDisplayUrl": "string",
                                                                                                    "watching": true,
                                                                                                    "watchers": null,
                                                                                                    "commentType": "string",
                                                                                                    "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                    "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                                                    "url": "string",
                                                                                                    "partitionId": 213,
                                                                                                    "partition": null,
                                                                                                    "display": "string",
                                                                                                    "idInPartition": 84,
                                                                                                    "recordName": "string",
                                                                                                    "displayAttributes": [
                                                                                                        {}
                                                                                                    ],
                                                                                                    "displayCodePartial": "string",
                                                                                                    "displayArgs": [
                                                                                                        "string"
                                                                                                    ],
                                                                                                    "breadcrumbParent": null,
                                                                                                    "iconClass": "string",
                                                                                                    "iconColour": "string",
                                                                                                    "lastUpdatedById": 78
                                                                                                },
                                                                                                "name": "string",
                                                                                                "planned": "2022-04-13"
                                                                                            }
                                                                                        ],
                                                                                        "url": "string",
                                                                                        "partitionId": 230,
                                                                                        "commentCount": 208,
                                                                                        "recordName": "string",
                                                                                        "calendarStart": "2022-04-13T15:42:05.901Z",
                                                                                        "allDay": true,
                                                                                        "calendarExtendedProps": {},
                                                                                        "commentType": "string",
                                                                                        "commentDisplayUrl": "string",
                                                                                        "daysOverdue": 62,
                                                                                        "overdue": true,
                                                                                        "inheritingGroupNames": [
                                                                                            "string"
                                                                                        ],
                                                                                        "multipleInheritanceDates": true,
                                                                                        "fromTemplate": true,
                                                                                        "autoPlannedAfterPreviousFallback": 6,
                                                                                        "calendarSource": "PRODUCT",
                                                                                        "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                        "partition": null,
                                                                                        "display": "string",
                                                                                        "idInPartition": 85,
                                                                                        "displayAttributes": [
                                                                                            {}
                                                                                        ],
                                                                                        "displayCodePartial": "string",
                                                                                        "displayArgs": [
                                                                                            "string"
                                                                                        ],
                                                                                        "breadcrumbParent": null,
                                                                                        "iconClass": "string",
                                                                                        "iconColour": "string",
                                                                                        "watchingUsers": null,
                                                                                        "watching": true,
                                                                                        "commentsPermission": "ROLE_PRE_AUTH",
                                                                                        "commentsEditPermission": "ROLE_PRE_AUTH"
                                                                                    }
                                                                                ],
                                                                                "emptyCosts": true,
                                                                                "activityStudyNumber": "string"
                                                                            }
                                                                        ],
                                                                        "evaluations": [
                                                                            {
                                                                                "id": 191,
                                                                                "metric": {
                                                                                    "id": 222,
                                                                                    "name": "string"
                                                                                },
                                                                                "score": "VERY_POOR"
                                                                            }
                                                                        ],
                                                                        "evaluationNotes": "string",
                                                                        "studyDirectors": null,
                                                                        "lastUpdatedById": 117,
                                                                        "name": "string",
                                                                        "url": "string",
                                                                        "partitionId": 138,
                                                                        "partition": null,
                                                                        "display": "string",
                                                                        "idInPartition": 100,
                                                                        "recordName": "string",
                                                                        "displayAttributes": [
                                                                            {}
                                                                        ],
                                                                        "displayCodePartial": "string",
                                                                        "displayArgs": [
                                                                            "string"
                                                                        ],
                                                                        "breadcrumbParent": null,
                                                                        "iconClass": "string",
                                                                        "iconColour": "string"
                                                                    },
                                                                    "role": {
                                                                        "id": 179,
                                                                        "name": "string"
                                                                    },
                                                                    "contact": null
                                                                }
                                                            ],
                                                            "analyticalSamples": [
                                                                {
                                                                    "id": 66,
                                                                    "study": null,
                                                                    "referenceNumber": "string",
                                                                    "batchNumber": "string",
                                                                    "preparation": "2022-04-13",
                                                                    "expiry": "2022-04-13",
                                                                    "origin": null,
                                                                    "contact": null,
                                                                    "description": "string",
                                                                    "folder": null,
                                                                    "notes": "string",
                                                                    "constituent": null,
                                                                    "basisOfData": "ANALYTICAL_REPORT",
                                                                    "analyticalMethods": [
                                                                        {
                                                                            "id": 19,
                                                                            "analyticalSample": null,
                                                                            "analyticalMethod": "AAS"
                                                                        }
                                                                    ],
                                                                    "analysis": "2022-04-13",
                                                                    "linkedDocument": null,
                                                                    "subConstituents": [
                                                                        {
                                                                            "id": 170,
                                                                            "analyticalSample": null,
                                                                            "name": "string",
                                                                            "casNumber": "string",
                                                                            "ecNumber": "string",
                                                                            "carbonNumber": 257,
                                                                            "inclusionPercent": 10.12,
                                                                            "type": [
                                                                                {
                                                                                    "id": 33,
                                                                                    "subConstituent": null,
                                                                                    "subConstituentType": {
                                                                                        "id": 71,
                                                                                        "typeText": "string"
                                                                                    },
                                                                                    "ordinalPosition": 124,
                                                                                    "typeText": "string"
                                                                                }
                                                                            ],
                                                                            "typeText": "string",
                                                                            "exportIndex": 131
                                                                        }
                                                                    ],
                                                                    "entity": null,
                                                                    "studyId": 8,
                                                                    "analyticalMethodsOnly": [
                                                                        "AAS"
                                                                    ],
                                                                    "folderName": "string"
                                                                }
                                                            ],
                                                            "documentLinks": null,
                                                            "contactRecipients": null,
                                                            "campaignContacts": null,
                                                            "events": null,
                                                            "selected": true,
                                                            "selectable": true,
                                                            "fullName": "string",
                                                            "partitionId": 174
                                                        },
                                                        "text": "string",
                                                        "published": true,
                                                        "replies": null,
                                                        "notifications": null,
                                                        "hidden": true,
                                                        "reply": true,
                                                        "greatestAncestor": null,
                                                        "replyToIsUnpublished": true,
                                                        "serverCreatedReadableDate": "string",
                                                        "lastUpdatedBy": null,
                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                        "lastUpdatedById": 267,
                                                        "name": "string",
                                                        "partition": null,
                                                        "display": "string",
                                                        "idInPartition": 40,
                                                        "recordName": "string",
                                                        "displayAttributes": [
                                                            {}
                                                        ],
                                                        "displayCodePartial": "string",
                                                        "displayArgs": [
                                                            "string"
                                                        ],
                                                        "breadcrumbParent": null,
                                                        "iconClass": "string",
                                                        "iconColour": "string",
                                                        "calendarSource": "PRODUCT",
                                                        "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                        "allDay": true,
                                                        "calendarExtendedProps": {}
                                                    },
                                                    "createdDate": "2022-04-13T15:42:05.901Z",
                                                    "user": null,
                                                    "contact": null,
                                                    "text": "string",
                                                    "published": true,
                                                    "replies": null,
                                                    "notifications": null,
                                                    "calendarSource": "PRODUCT",
                                                    "hidden": true,
                                                    "reply": true,
                                                    "greatestAncestor": null,
                                                    "replyToIsUnpublished": true,
                                                    "serverCreatedReadableDate": "string",
                                                    "lastUpdatedBy": null,
                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                    "lastUpdatedById": 150,
                                                    "name": "string",
                                                    "partition": null,
                                                    "display": "string",
                                                    "idInPartition": 293,
                                                    "recordName": "string",
                                                    "displayAttributes": [
                                                        {}
                                                    ],
                                                    "displayCodePartial": "string",
                                                    "displayArgs": [
                                                        "string"
                                                    ],
                                                    "breadcrumbParent": null,
                                                    "iconClass": "string",
                                                    "iconColour": "string",
                                                    "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                    "allDay": true,
                                                    "calendarExtendedProps": {}
                                                }
                                            ],
                                            "groups": null,
                                            "primaryInvoicingContact": null,
                                            "secondaryInvoicingContact": null,
                                            "watchingUsers": null,
                                            "registrationsFor": null,
                                            "partitionId": 259,
                                            "selected": true,
                                            "primaryInvoicingContactToImport": "string",
                                            "secondaryInvoicingContactToImport": "string",
                                            "testContacts": null
                                        },
                                        "role": {
                                            "id": 169,
                                            "name": "string",
                                            "deletable": true,
                                            "permissions": [
                                                "ROLE_PRE_AUTH"
                                            ],
                                            "externalGroups": [
                                                "string"
                                            ],
                                            "forCampaign": true,
                                            "forInternal": true,
                                            "penmanAdmin": true,
                                            "admin": true
                                        },
                                        "forcePasswordChange": true,
                                        "termsAccepted": true,
                                        "calendarDashboard": true,
                                        "clientPortal": true,
                                        "securityVersion": 124,
                                        "secret": "string",
                                        "initials": "string",
                                        "active": true,
                                        "fullName": "string",
                                        "fullNameSanitized": "string",
                                        "credentialsType": "BASIC",
                                        "entityGroups": null,
                                        "nameReversed": "string",
                                        "temporaryPasswordActive": true,
                                        "lastUpdatedById": 36,
                                        "name": "string",
                                        "url": "string",
                                        "partitionId": 221,
                                        "partition": null,
                                        "display": "string",
                                        "idInPartition": 97,
                                        "recordName": "string",
                                        "displayAttributes": [
                                            {}
                                        ],
                                        "displayCodePartial": "string",
                                        "displayArgs": [
                                            "string"
                                        ],
                                        "breadcrumbParent": null,
                                        "iconClass": "string",
                                        "iconColour": "string"
                                    },
                                    "partition": null,
                                    "role": null,
                                    "enabled": true,
                                    "currentSelection": true,
                                    "notificationPreferences": {
                                        "allDocumentNotifications": true,
                                        "overdueInvoices": true,
                                        "allCampaignNotifications": true,
                                        "allStudyNotifications": true,
                                        "constituentTonnage": true,
                                        "emails": true,
                                        "constituentsInUpdatedInventories": true,
                                        "campaignSecurityWarnings": true,
                                        "invoicePayments": true
                                    },
                                    "relevantRole": null
                                }
                            ],
                            "entities": null,
                            "emailFolder": null,
                            "studyFolder": null,
                            "archivedStudyFolder": null,
                            "deletedStudyFolder": null,
                            "studyTimelineTemplate": null,
                            "studyNumberTimelineTemplate": null,
                            "studyMultiRegistrantShare": 101,
                            "defaultCostRoles": null,
                            "invoiceOverdueDays": 101,
                            "invoiceTemplate": "string",
                            "docExpiryNotificationDays": 107,
                            "deactivatedMessage": "string",
                            "countries": null,
                            "hidden": true,
                            "pages": null,
                            "campaignTasks": null,
                            "campaignImages": [
                                {
                                    "id": 227,
                                    "clientPartition": null,
                                    "created": "2022-04-13T15:42:05.901Z",
                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                    "campaign": null,
                                    "fileId": "a4efd125-eb3a-44d0-81c3-9a9fc9a74d7c",
                                    "fileName": "string",
                                    "lastUpdatedById": 226,
                                    "name": "string",
                                    "url": "string",
                                    "partitionId": 280,
                                    "partition": null,
                                    "display": "string",
                                    "idInPartition": 128,
                                    "recordName": "string",
                                    "displayAttributes": [
                                        {}
                                    ],
                                    "displayCodePartial": "string",
                                    "displayArgs": [
                                        "string"
                                    ],
                                    "breadcrumbParent": null,
                                    "iconClass": "string",
                                    "iconColour": "string"
                                }
                            ],
                            "integrations": null,
                            "name": "string",
                            "campaignNavigationLevel": 279,
                            "onlyPublicAccessForUser": true,
                            "expand": true,
                            "menuIndex": 63,
                            "recordName": "string",
                            "acceptInvoiceImport": true,
                            "studyAdditionalSharePercent": 237,
                            "menuParent": null,
                            "menuAncestors": null,
                            "url": "string",
                            "partitionId": 181,
                            "partition": null,
                            "display": "string",
                            "idInPartition": 42,
                            "displayAttributes": [
                                {}
                            ],
                            "displayCodePartial": "string",
                            "displayArgs": [
                                "string"
                            ],
                            "breadcrumbParent": null,
                            "iconClass": "string",
                            "iconColour": "string"
                        },
                        "title": "string",
                        "description": "string",
                        "fileName": "string",
                        "originalFileName": "string",
                        "link": true,
                        "fileSize": 120,
                        "uploadDate": "2022-04-13T15:42:05.901Z",
                        "documentCreationDate": "2022-04-13",
                        "fileType": "UNKNOWN",
                        "docType": "DOCUMENT",
                        "expiryDate": "2022-04-13",
                        "retentionDate": "2022-04-13",
                        "permanent": true,
                        "documentProducts": null,
                        "products": null,
                        "documentConstituents": null,
                        "constituents": null,
                        "documentCategoryGroups": [
                            {
                                "id": 50,
                                "document": null,
                                "categoryGroup": null,
                                "deleted": true
                            }
                        ],
                        "categoryGroups": null,
                        "documentProductGroups": null,
                        "productGroups": null,
                        "documentEntities": null,
                        "entities": null,
                        "documentEntityGroups": null,
                        "entityGroups": null,
                        "documentContactGroups": null,
                        "contactGroups": null,
                        "documentTagSet": null,
                        "linkedDocuments": null,
                        "version": 199,
                        "versionIdentifier": "string",
                        "currentDocumentId": 244,
                        "currentDocument": null,
                        "newsItem": true,
                        "sourceEmail": [
                            {
                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                "id": 136,
                                "partition": null,
                                "title": "string",
                                "description": "string",
                                "fileName": "string",
                                "originalFileName": "string",
                                "link": true,
                                "fileSize": 65,
                                "uploadDate": "2022-04-13T15:42:05.901Z",
                                "documentCreationDate": "2022-04-13",
                                "fileType": "UNKNOWN",
                                "docType": "DOCUMENT",
                                "expiryDate": "2022-04-13",
                                "retentionDate": "2022-04-13",
                                "permanent": true,
                                "products": null,
                                "constituents": null,
                                "categoryGroups": null,
                                "productGroups": null,
                                "entities": null,
                                "documentEntityGroups": null,
                                "entityGroups": null,
                                "documentContactGroups": null,
                                "contactGroups": null,
                                "documentTagSet": null,
                                "linkedDocuments": null,
                                "version": 18,
                                "versionIdentifier": "string",
                                "currentDocumentId": 239,
                                "currentDocument": null,
                                "newsItem": true,
                                "internalSourceEmails": null,
                                "issues": null,
                                "documentLinkAttachments": null,
                                "deleted": true,
                                "deletedDate": "2022-04-13T15:42:05.901Z",
                                "fileId": "d69f7a3f-3464-45e4-a3d3-805924665b71",
                                "watchingUsers": null,
                                "expiryNotifications": null,
                                "retentionNotifications": null,
                                "notifyEmail": "string",
                                "expirationNotified": true,
                                "retentionNotified": true,
                                "folders": null,
                                "taskLinks": null,
                                "taskTwoLinks": null,
                                "downloadTaskLinks": null,
                                "constituentTonnages": null,
                                "productTonnages": null,
                                "comments": null,
                                "searchedVia": null,
                                "receivedDate": "2022-04-13T15:42:05.901Z",
                                "emailDate": "2022-04-13",
                                "sender": "string",
                                "subject": "string",
                                "recipient": "string",
                                "emailBody": "string",
                                "ccAddresses": "string",
                                "missingAttachments": [
                                    {
                                        "id": 273,
                                        "receivedEmail": {
                                            "id": 280,
                                            "subject": "string",
                                            "fromAddress": "string",
                                            "messageRead": true,
                                            "dateReceived": "2022-04-13T15:42:05.901Z",
                                            "dateMessageSaved": "2022-04-13T15:42:05.901Z",
                                            "dateAttachmentsSaved": "2022-04-13T15:42:05.901Z",
                                            "contentType": "string",
                                            "ccAddresses": "string",
                                            "recipients": "string",
                                            "content": "string",
                                            "clientPartition": null,
                                            "deleted": true,
                                            "emailAttachments": null
                                        },
                                        "fileId": "3d9ba4d0-8b14-40a0-bf8a-8562ef0ab2a8",
                                        "filename": "string"
                                    }
                                ],
                                "attachmentsToSave": [
                                    "a0c109e3-8818-4ff9-a2ab-b9f135360ae5"
                                ],
                                "index": 200,
                                "relatedDocumentConstituents": null,
                                "relatedDocumentEntities": null,
                                "relatedDocumentProductGroups": null,
                                "relatedDocumentProducts": null,
                                "relatedDocumentContactGroups": null,
                                "partitionId": 58
                            }
                        ],
                        "internalSourceEmails": null,
                        "issues": null,
                        "documentLinkAttachments": null,
                        "deleted": true,
                        "deletedDate": "2022-04-13T15:42:05.901Z",
                        "fileId": "4fe87817-3a26-4a32-8189-bf47bd32d54c",
                        "watchingUsers": null,
                        "expiryNotifications": null,
                        "retentionNotifications": null,
                        "notifyEmail": "string",
                        "expirationNotified": true,
                        "retentionNotified": true,
                        "folders": null,
                        "taskLinks": null,
                        "taskTwoLinks": null,
                        "downloadTaskLinks": null,
                        "constituentTonnages": null,
                        "productTonnages": null,
                        "submissions": null,
                        "comments": null,
                        "searchedVia": null,
                        "index": 201,
                        "relatedDocumentConstituents": null,
                        "relatedDocumentEntities": null,
                        "relatedDocumentCategoryGroups": null,
                        "relatedDocumentProductGroups": null,
                        "relatedDocumentProducts": null,
                        "relatedDocumentContactGroups": null,
                        "partitionId": 121
                    }
                ],
                "createdBy": null,
                "created": "2022-04-13T15:42:05.901Z",
                "deletable": true,
                "study": null,
                "folderPath": "string",
                "folderLinks": "string"
            },
            "partitionId": 248
        },
        "studies": null,
        "constituent": null,
        "entity": null,
        "entityStudies": [
            {
                "id": 81,
                "entity": null,
                "purpose": "VI",
                "entityCostRole": null,
                "purchaseOrderNumber": "string",
                "constituentEntity": null,
                "study": null,
                "display": "string",
                "displayAttributes": [
                    {}
                ],
                "sharedWithOthers": true,
                "lastUpdatedBy": null,
                "lastUpdated": "2022-04-13T15:42:05.901Z",
                "lastUpdatedById": 244,
                "name": "string",
                "url": "string",
                "partitionId": 175,
                "partition": null,
                "idInPartition": 51,
                "recordName": "string",
                "displayCodePartial": "string",
                "displayArgs": [
                    "string"
                ],
                "breadcrumbParent": null,
                "iconClass": "string",
                "iconColour": "string",
                "constituent": null
            }
        ],
        "year": 199,
        "quarter": 249,
        "month": "JANUARY",
        "currency": {
            "currencyCode": "string",
            "numericCodeAsString": "string",
            "displayName": "string",
            "symbol": "string",
            "defaultFractionDigits": 34,
            "numericCode": 60
        },
        "cost": 10.12,
        "paid": 10.12,
        "costOut": 10.12,
        "paidIn": 10.12,
        "categoryGroups": null,
        "outgoingInvoices": [
            {
                "lastUpdated": "2022-04-13T15:42:05.901Z",
                "id": 110,
                "partition": null,
                "title": "string",
                "description": "string",
                "fileName": "string",
                "originalFileName": "string",
                "link": true,
                "fileSize": 53,
                "uploadDate": "2022-04-13T15:42:05.901Z",
                "documentCreationDate": "2022-04-13",
                "fileType": "UNKNOWN",
                "docType": "DOCUMENT",
                "expiryDate": "2022-04-13",
                "retentionDate": "2022-04-13",
                "permanent": true,
                "documentProducts": null,
                "products": null,
                "documentConstituents": null,
                "constituents": null,
                "documentCategoryGroups": null,
                "categoryGroups": null,
                "documentProductGroups": null,
                "productGroups": null,
                "documentEntities": null,
                "entities": null,
                "documentEntityGroups": null,
                "entityGroups": null,
                "documentContactGroups": null,
                "contactGroups": null,
                "documentTagSet": null,
                "linkedDocuments": null,
                "version": 175,
                "versionIdentifier": "string",
                "currentDocumentId": 186,
                "currentDocument": null,
                "versions": null,
                "newsItem": true,
                "sourceEmail": null,
                "internalSourceEmails": null,
                "issues": null,
                "documentLinkAttachments": null,
                "deleted": true,
                "deletedDate": "2022-04-13T15:42:05.901Z",
                "fileId": "9fa10250-6e50-4a48-9a14-d97bdbd15eb4",
                "watchingUsers": null,
                "expiryNotifications": null,
                "retentionNotifications": null,
                "notifyEmail": "string",
                "expirationNotified": true,
                "retentionNotified": true,
                "folders": null,
                "taskLinks": null,
                "taskTwoLinks": null,
                "downloadTaskLinks": null,
                "constituentTonnages": null,
                "productTonnages": null,
                "submissions": null,
                "comments": null,
                "searchedVia": null,
                "fromEntity": null,
                "toEntity": null,
                "invoiceNumber": "string",
                "purchaseOrder": "string",
                "accountantReference": "string",
                "invoiceDate": "2022-04-13",
                "invoiceCurrencyCode": "string",
                "documentInvoiceType": "COMMERCIAL",
                "legislation": "EU_REACH",
                "subTotal": 10.12,
                "vat": 10.12,
                "invoiceAmount": 10.12,
                "paymentReceived": true,
                "dateReceived": "2022-04-13",
                "approved": true,
                "approvedDate": "2022-04-13",
                "approvedBy": null,
                "sent": true,
                "sentDate": "2022-04-13",
                "sentBy": null,
                "remarks": "string",
                "invoiceOverdueDays": 204,
                "overdueNotified": true,
                "documentBudgets": null,
                "documentStudies": [
                    {
                        "id": 118,
                        "document": null,
                        "study": null,
                        "cost": 10.12
                    }
                ],
                "overdueNotifications": [
                    {
                        "id": 48,
                        "partitionId": 241,
                        "created": "2022-04-13T15:42:05.901Z",
                        "user": null,
                        "read": true,
                        "invoice": null,
                        "invoiceDate": "2022-04-13",
                        "invoiceOverdueDays": 37,
                        "url": "string",
                        "mailjetTemplateName": "string",
                        "displayCode": "string",
                        "mailjetTemplateVars": {},
                        "mailjetTemplateEmail": null,
                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                        "name": "string",
                        "partition": null,
                        "display": "string",
                        "idInPartition": 272,
                        "recordName": "string",
                        "displayAttributes": [
                            {}
                        ],
                        "displayCodePartial": "string",
                        "displayArgs": [
                            "string"
                        ],
                        "breadcrumbParent": null,
                        "iconClass": "string",
                        "iconColour": "string"
                    }
                ],
                "paidNotifications": [
                    {
                        "id": 222,
                        "partitionId": 126,
                        "created": "2022-04-13T15:42:05.901Z",
                        "user": null,
                        "read": true,
                        "invoice": null,
                        "paidDate": "2022-04-13",
                        "url": "string",
                        "mailjetTemplateName": "string",
                        "displayCode": "string",
                        "mailjetTemplateVars": {},
                        "mailjetTemplateEmail": null,
                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                        "name": "string",
                        "partition": null,
                        "display": "string",
                        "idInPartition": 58,
                        "recordName": "string",
                        "displayAttributes": [
                            {}
                        ],
                        "displayCodePartial": "string",
                        "displayArgs": [
                            "string"
                        ],
                        "breadcrumbParent": null,
                        "iconClass": "string",
                        "iconColour": "string"
                    }
                ],
                "lines": [
                    {
                        "description": "string",
                        "amount": 10.12,
                        "salesCode": "string",
                        "account": "string",
                        "department": "string",
                        "taxed": true
                    }
                ],
                "convertedSubTotal": 10.12,
                "index": 48,
                "relatedDocumentConstituents": null,
                "relatedDocumentEntities": null,
                "relatedDocumentCategoryGroups": null,
                "relatedDocumentProductGroups": null,
                "relatedDocumentProducts": null,
                "relatedDocumentContactGroups": null,
                "partitionId": 250
            }
        ],
        "balanceIn": 10.12,
        "purchaseOrderNumbers": [
            "string"
        ],
        "entityStudy": null,
        "constituentsOfInterest": null,
        "constituentsEntities": null,
        "monthDisplay": "string",
        "reasonsForInterest": [
            "string"
        ],
        "registrationNumbers": [
            "string"
        ],
        "costRoleDisplays": [
            "string"
        ],
        "costRoles": null,
        "balance": 10.12
    }
]
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "array",
    "items": {
        "$ref": "#/components/schemas/StudyCostOverviewRow"
    }
}

Registrations


GET /api/registrations/{id}

Get a Registration

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 404 Not Found

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "constituent": {
        "id": 1,
        "partitionId": 100,
        "name": "Benzene",
        "type": "SUBSTANCE",
        "casNumber": "100-00-5",
        "ecName": "1-chloro-4-nitrobenzene",
        "ecNumber": "202-809-6",
        "ecDescription": "string",
        "iupac": "benzene",
        "iuclidUuid": "string",
        "tsca": "Benzene, 1-chloro-4-nitro-",
        "molecularFormula": "C6H6",
        "smiles": "C1=CC=CC=C1",
        "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
        "deleted": false
    },
    "reachLegislation": "EU_REACH",
    "registrationName": "string",
    "registrationNumber": "string",
    "registrationDate": "2022-04-13",
    "forLegalEntity": {
        "id": 1,
        "partitionId": 100,
        "name": "Penman Consulting",
        "companyNo": "string",
        "vatNo": "string",
        "dunnNo": "string",
        "utr": "string"
    },
    "submittingLegalEntity": null
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "constituent": {
            "$ref": "#/components/schemas/ConstituentData"
        },
        "reachLegislation": {
            "type": "string",
            "enum": [
                "EU_REACH",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "NO_REGULATION"
            ],
            "example": "EU_REACH"
        },
        "registrationName": {
            "type": "string"
        },
        "registrationNumber": {
            "type": "string"
        },
        "registrationDate": {
            "type": "string",
            "format": "date"
        },
        "forLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        },
        "submittingLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        }
    },
    "required": [
        "constituent",
        "reachLegislation"
    ]
}

Response 500 Internal Server Error


PUT /api/registrations/{id}

Fully Update a Registration

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "constituent": {
        "id": 1,
        "partitionId": 100,
        "name": "Benzene",
        "type": "SUBSTANCE",
        "casNumber": "100-00-5",
        "ecName": "1-chloro-4-nitrobenzene",
        "ecNumber": "202-809-6",
        "ecDescription": "string",
        "iupac": "benzene",
        "iuclidUuid": "string",
        "tsca": "Benzene, 1-chloro-4-nitro-",
        "molecularFormula": "C6H6",
        "smiles": "C1=CC=CC=C1",
        "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
        "deleted": false
    },
    "reachLegislation": "EU_REACH",
    "registrationName": "string",
    "registrationNumber": "string",
    "registrationDate": "2022-04-13",
    "forLegalEntity": {
        "id": 1,
        "partitionId": 100,
        "name": "Penman Consulting",
        "companyNo": "string",
        "vatNo": "string",
        "dunnNo": "string",
        "utr": "string"
    },
    "submittingLegalEntity": null
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "constituent": {
            "$ref": "#/components/schemas/ConstituentData"
        },
        "reachLegislation": {
            "type": "string",
            "enum": [
                "EU_REACH",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "NO_REGULATION"
            ],
            "example": "EU_REACH"
        },
        "registrationName": {
            "type": "string"
        },
        "registrationNumber": {
            "type": "string"
        },
        "registrationDate": {
            "type": "string",
            "format": "date"
        },
        "forLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        },
        "submittingLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        }
    },
    "required": [
        "constituent",
        "reachLegislation"
    ]
}

Response 404 Not Found

Response 400 Bad Request

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "constituent": {
        "id": 1,
        "partitionId": 100,
        "name": "Benzene",
        "type": "SUBSTANCE",
        "casNumber": "100-00-5",
        "ecName": "1-chloro-4-nitrobenzene",
        "ecNumber": "202-809-6",
        "ecDescription": "string",
        "iupac": "benzene",
        "iuclidUuid": "string",
        "tsca": "Benzene, 1-chloro-4-nitro-",
        "molecularFormula": "C6H6",
        "smiles": "C1=CC=CC=C1",
        "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
        "deleted": false
    },
    "reachLegislation": "EU_REACH",
    "registrationName": "string",
    "registrationNumber": "string",
    "registrationDate": "2022-04-13",
    "forLegalEntity": {
        "id": 1,
        "partitionId": 100,
        "name": "Penman Consulting",
        "companyNo": "string",
        "vatNo": "string",
        "dunnNo": "string",
        "utr": "string"
    },
    "submittingLegalEntity": null
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "constituent": {
            "$ref": "#/components/schemas/ConstituentData"
        },
        "reachLegislation": {
            "type": "string",
            "enum": [
                "EU_REACH",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "NO_REGULATION"
            ],
            "example": "EU_REACH"
        },
        "registrationName": {
            "type": "string"
        },
        "registrationNumber": {
            "type": "string"
        },
        "registrationDate": {
            "type": "string",
            "format": "date"
        },
        "forLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        },
        "submittingLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        }
    },
    "required": [
        "constituent",
        "reachLegislation"
    ]
}

Response 500 Internal Server Error


DELETE /api/registrations/{id}

Delete a Registration

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 204 No Content

Response 403 Forbidden

Response 500 Internal Server Error


PATCH /api/registrations/{id}

Partially Update a Registration

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "constituent": {
        "id": 1,
        "partitionId": 100,
        "name": "Benzene",
        "type": "SUBSTANCE",
        "casNumber": "100-00-5",
        "ecName": "1-chloro-4-nitrobenzene",
        "ecNumber": "202-809-6",
        "ecDescription": "string",
        "iupac": "benzene",
        "iuclidUuid": "string",
        "tsca": "Benzene, 1-chloro-4-nitro-",
        "molecularFormula": "C6H6",
        "smiles": "C1=CC=CC=C1",
        "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
        "deleted": false
    },
    "reachLegislation": "EU_REACH",
    "registrationName": "string",
    "registrationNumber": "string",
    "registrationDate": "2022-04-13",
    "forLegalEntity": {
        "id": 1,
        "partitionId": 100,
        "name": "Penman Consulting",
        "companyNo": "string",
        "vatNo": "string",
        "dunnNo": "string",
        "utr": "string"
    },
    "submittingLegalEntity": null
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "constituent": {
            "$ref": "#/components/schemas/ConstituentData"
        },
        "reachLegislation": {
            "type": "string",
            "enum": [
                "EU_REACH",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "NO_REGULATION"
            ],
            "example": "EU_REACH"
        },
        "registrationName": {
            "type": "string"
        },
        "registrationNumber": {
            "type": "string"
        },
        "registrationDate": {
            "type": "string",
            "format": "date"
        },
        "forLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        },
        "submittingLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        }
    },
    "required": [
        "constituent",
        "reachLegislation"
    ]
}

Response 404 Not Found

Response 400 Bad Request

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "constituent": {
        "id": 1,
        "partitionId": 100,
        "name": "Benzene",
        "type": "SUBSTANCE",
        "casNumber": "100-00-5",
        "ecName": "1-chloro-4-nitrobenzene",
        "ecNumber": "202-809-6",
        "ecDescription": "string",
        "iupac": "benzene",
        "iuclidUuid": "string",
        "tsca": "Benzene, 1-chloro-4-nitro-",
        "molecularFormula": "C6H6",
        "smiles": "C1=CC=CC=C1",
        "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
        "deleted": false
    },
    "reachLegislation": "EU_REACH",
    "registrationName": "string",
    "registrationNumber": "string",
    "registrationDate": "2022-04-13",
    "forLegalEntity": {
        "id": 1,
        "partitionId": 100,
        "name": "Penman Consulting",
        "companyNo": "string",
        "vatNo": "string",
        "dunnNo": "string",
        "utr": "string"
    },
    "submittingLegalEntity": null
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "constituent": {
            "$ref": "#/components/schemas/ConstituentData"
        },
        "reachLegislation": {
            "type": "string",
            "enum": [
                "EU_REACH",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "NO_REGULATION"
            ],
            "example": "EU_REACH"
        },
        "registrationName": {
            "type": "string"
        },
        "registrationNumber": {
            "type": "string"
        },
        "registrationDate": {
            "type": "string",
            "format": "date"
        },
        "forLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        },
        "submittingLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        }
    },
    "required": [
        "constituent",
        "reachLegislation"
    ]
}

Response 500 Internal Server Error


GET /api/registrations

Get all Registrations

Input parameters

Parameter In Type Default Nullable Description
constituent query integer No Filter registrations by constituent
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 403 Forbidden

Response 200 OK

{
    "totalElements": 23,
    "totalPages": 185,
    "first": true,
    "size": 230,
    "content": [
        {
            "id": 1,
            "constituent": {
                "id": 1,
                "partitionId": 100,
                "name": "Benzene",
                "type": "SUBSTANCE",
                "casNumber": "100-00-5",
                "ecName": "1-chloro-4-nitrobenzene",
                "ecNumber": "202-809-6",
                "ecDescription": "string",
                "iupac": "benzene",
                "iuclidUuid": "string",
                "tsca": "Benzene, 1-chloro-4-nitro-",
                "molecularFormula": "C6H6",
                "smiles": "C1=CC=CC=C1",
                "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
                "deleted": false
            },
            "reachLegislation": "EU_REACH",
            "registrationName": "string",
            "registrationNumber": "string",
            "registrationDate": "2022-04-13",
            "forLegalEntity": {
                "id": 1,
                "partitionId": 100,
                "name": "Penman Consulting",
                "companyNo": "string",
                "vatNo": "string",
                "dunnNo": "string",
                "utr": "string"
            },
            "submittingLegalEntity": null
        }
    ],
    "number": 47,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 289,
        "sort": null,
        "pageNumber": 130,
        "paged": true,
        "unpaged": true,
        "pageSize": 287
    },
    "numberOfElements": 223,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/RegistrationData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

POST /api/registrations

Create a Registration

Request body

{
    "id": 1,
    "constituent": {
        "id": 1,
        "partitionId": 100,
        "name": "Benzene",
        "type": "SUBSTANCE",
        "casNumber": "100-00-5",
        "ecName": "1-chloro-4-nitrobenzene",
        "ecNumber": "202-809-6",
        "ecDescription": "string",
        "iupac": "benzene",
        "iuclidUuid": "string",
        "tsca": "Benzene, 1-chloro-4-nitro-",
        "molecularFormula": "C6H6",
        "smiles": "C1=CC=CC=C1",
        "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
        "deleted": false
    },
    "reachLegislation": "EU_REACH",
    "registrationName": "string",
    "registrationNumber": "string",
    "registrationDate": "2022-04-13",
    "forLegalEntity": {
        "id": 1,
        "partitionId": 100,
        "name": "Penman Consulting",
        "companyNo": "string",
        "vatNo": "string",
        "dunnNo": "string",
        "utr": "string"
    },
    "submittingLegalEntity": null
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "constituent": {
            "$ref": "#/components/schemas/ConstituentData"
        },
        "reachLegislation": {
            "type": "string",
            "enum": [
                "EU_REACH",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "NO_REGULATION"
            ],
            "example": "EU_REACH"
        },
        "registrationName": {
            "type": "string"
        },
        "registrationNumber": {
            "type": "string"
        },
        "registrationDate": {
            "type": "string",
            "format": "date"
        },
        "forLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        },
        "submittingLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        }
    },
    "required": [
        "constituent",
        "reachLegislation"
    ]
}

Response 404 Not Found

Response 200 OK

{
    "id": 1,
    "constituent": {
        "id": 1,
        "partitionId": 100,
        "name": "Benzene",
        "type": "SUBSTANCE",
        "casNumber": "100-00-5",
        "ecName": "1-chloro-4-nitrobenzene",
        "ecNumber": "202-809-6",
        "ecDescription": "string",
        "iupac": "benzene",
        "iuclidUuid": "string",
        "tsca": "Benzene, 1-chloro-4-nitro-",
        "molecularFormula": "C6H6",
        "smiles": "C1=CC=CC=C1",
        "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
        "deleted": false
    },
    "reachLegislation": "EU_REACH",
    "registrationName": "string",
    "registrationNumber": "string",
    "registrationDate": "2022-04-13",
    "forLegalEntity": {
        "id": 1,
        "partitionId": 100,
        "name": "Penman Consulting",
        "companyNo": "string",
        "vatNo": "string",
        "dunnNo": "string",
        "utr": "string"
    },
    "submittingLegalEntity": null
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "constituent": {
            "$ref": "#/components/schemas/ConstituentData"
        },
        "reachLegislation": {
            "type": "string",
            "enum": [
                "EU_REACH",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "NO_REGULATION"
            ],
            "example": "EU_REACH"
        },
        "registrationName": {
            "type": "string"
        },
        "registrationNumber": {
            "type": "string"
        },
        "registrationDate": {
            "type": "string",
            "format": "date"
        },
        "forLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        },
        "submittingLegalEntity": {
            "$ref": "#/components/schemas/EntityData"
        }
    },
    "required": [
        "constituent",
        "reachLegislation"
    ]
}

Response 403 Forbidden

Response 500 Internal Server Error

Products


GET /api/products/{id}

Get a Product

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Lubricant",
    "ownerManufacturer": "Penman Consulting",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Lubricant"
        },
        "ownerManufacturer": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 404 Not Found

Response 403 Forbidden

Response 500 Internal Server Error


PUT /api/products/{id}

Fully Update a Product

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Lubricant",
    "ownerManufacturer": "Penman Consulting",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Lubricant"
        },
        "ownerManufacturer": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 400 Bad Request

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Lubricant",
    "ownerManufacturer": "Penman Consulting",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Lubricant"
        },
        "ownerManufacturer": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 404 Not Found

Response 500 Internal Server Error


DELETE /api/products/{id}

Delete a Product

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 204 No Content

Response 403 Forbidden

Response 500 Internal Server Error


PATCH /api/products/{id}

Partially Update a Product

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Lubricant",
    "ownerManufacturer": "Penman Consulting",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Lubricant"
        },
        "ownerManufacturer": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 400 Bad Request

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Lubricant",
    "ownerManufacturer": "Penman Consulting",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Lubricant"
        },
        "ownerManufacturer": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 404 Not Found

Response 500 Internal Server Error


GET /api/products

Get all Products

Input parameters

Parameter In Type Default Nullable Description
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 403 Forbidden

Response 200 OK

{
    "totalElements": 182,
    "totalPages": 243,
    "first": true,
    "size": 62,
    "content": [
        {
            "id": 1,
            "partitionId": 100,
            "name": "Lubricant",
            "ownerManufacturer": "Penman Consulting",
            "deleted": false
        }
    ],
    "number": 68,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 242,
        "sort": null,
        "pageNumber": 232,
        "paged": true,
        "unpaged": true,
        "pageSize": 70
    },
    "numberOfElements": 78,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/ProductData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

POST /api/products

Create a Product

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Lubricant",
    "ownerManufacturer": "Penman Consulting",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Lubricant"
        },
        "ownerManufacturer": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 400 Bad Request

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Lubricant",
    "ownerManufacturer": "Penman Consulting",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Lubricant"
        },
        "ownerManufacturer": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 404 Not Found

Response 403 Forbidden

Response 500 Internal Server Error

Folders


GET /api/folders/{id}

Get a Folder

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 404 Not Found

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Reports",
    "parent": {
        "id": 1,
        "partitionId": 100,
        "name": "Reports",
        "parent": null
    }
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Reports"
        },
        "parent": {
            "$ref": "#/components/schemas/FolderData"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 403 Forbidden

Response 500 Internal Server Error


PUT /api/folders/{id}

Full Update a Folder

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Reports",
    "parent": {
        "id": 1,
        "partitionId": 100,
        "name": "Reports",
        "parent": null
    }
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Reports"
        },
        "parent": {
            "$ref": "#/components/schemas/FolderData"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 400 Bad Request

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Reports",
    "parent": {
        "id": 1,
        "partitionId": 100,
        "name": "Reports",
        "parent": null
    }
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Reports"
        },
        "parent": {
            "$ref": "#/components/schemas/FolderData"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 403 Forbidden

Response 500 Internal Server Error


DELETE /api/folders/{id}

Delete a Folder

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 403 Forbidden

Response 204 No Content

Response 500 Internal Server Error


PATCH /api/folders/{id}

Partially Update a Folder

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Reports",
    "parent": {
        "id": 1,
        "partitionId": 100,
        "name": "Reports",
        "parent": null
    }
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Reports"
        },
        "parent": {
            "$ref": "#/components/schemas/FolderData"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 400 Bad Request

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Reports",
    "parent": {
        "id": 1,
        "partitionId": 100,
        "name": "Reports",
        "parent": null
    }
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Reports"
        },
        "parent": {
            "$ref": "#/components/schemas/FolderData"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 403 Forbidden

Response 500 Internal Server Error


GET /api/folders

Get all Folders

Input parameters

Parameter In Type Default Nullable Description
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 200 OK

{
    "totalElements": 280,
    "totalPages": 47,
    "first": true,
    "size": 100,
    "content": [
        {
            "id": 1,
            "partitionId": 100,
            "name": "Reports",
            "parent": null
        }
    ],
    "number": 36,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 226,
        "sort": null,
        "pageNumber": 215,
        "paged": true,
        "unpaged": true,
        "pageSize": 84
    },
    "numberOfElements": 294,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/FolderData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

Response 403 Forbidden


POST /api/folders

Create a Folder

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Reports",
    "parent": {
        "id": 1,
        "partitionId": 100,
        "name": "Reports",
        "parent": null
    }
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Reports"
        },
        "parent": {
            "$ref": "#/components/schemas/FolderData"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 400 Bad Request

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Reports",
    "parent": {
        "id": 1,
        "partitionId": 100,
        "name": "Reports",
        "parent": null
    }
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Reports"
        },
        "parent": {
            "$ref": "#/components/schemas/FolderData"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 403 Forbidden

Response 500 Internal Server Error

Entities


GET /api/entities/{id}

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Penman Consulting",
    "companyNo": "string",
    "vatNo": "string",
    "dunnNo": "string",
    "utr": "string"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "companyNo": {
            "type": "string"
        },
        "vatNo": {
            "type": "string"
        },
        "dunnNo": {
            "type": "string"
        },
        "utr": {
            "type": "string"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 404 Not Found

Response 500 Internal Server Error


PUT /api/entities/{id}

Fully Update a Entity

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Penman Consulting",
    "companyNo": "string",
    "vatNo": "string",
    "dunnNo": "string",
    "utr": "string"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "companyNo": {
            "type": "string"
        },
        "vatNo": {
            "type": "string"
        },
        "dunnNo": {
            "type": "string"
        },
        "utr": {
            "type": "string"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 400 Bad Request

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Penman Consulting",
    "companyNo": "string",
    "vatNo": "string",
    "dunnNo": "string",
    "utr": "string"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "companyNo": {
            "type": "string"
        },
        "vatNo": {
            "type": "string"
        },
        "dunnNo": {
            "type": "string"
        },
        "utr": {
            "type": "string"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 403 Forbidden

Response 404 Not Found

Response 500 Internal Server Error


DELETE /api/entities/{id}

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 204 No Content

Response 403 Forbidden

Response 500 Internal Server Error


PATCH /api/entities/{id}

Partially Update a Entity

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Penman Consulting",
    "companyNo": "string",
    "vatNo": "string",
    "dunnNo": "string",
    "utr": "string"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "companyNo": {
            "type": "string"
        },
        "vatNo": {
            "type": "string"
        },
        "dunnNo": {
            "type": "string"
        },
        "utr": {
            "type": "string"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 400 Bad Request

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Penman Consulting",
    "companyNo": "string",
    "vatNo": "string",
    "dunnNo": "string",
    "utr": "string"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "companyNo": {
            "type": "string"
        },
        "vatNo": {
            "type": "string"
        },
        "dunnNo": {
            "type": "string"
        },
        "utr": {
            "type": "string"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 403 Forbidden

Response 404 Not Found

Response 500 Internal Server Error


GET /api/entities

Get all Entities

Input parameters

Parameter In Type Default Nullable Description
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 403 Forbidden

Response 200 OK

{
    "totalElements": 156,
    "totalPages": 29,
    "first": true,
    "size": 213,
    "content": [
        {
            "id": 1,
            "partitionId": 100,
            "name": "Penman Consulting",
            "companyNo": "string",
            "vatNo": "string",
            "dunnNo": "string",
            "utr": "string"
        }
    ],
    "number": 264,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 53,
        "sort": null,
        "pageNumber": 212,
        "paged": true,
        "unpaged": true,
        "pageSize": 116
    },
    "numberOfElements": 92,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/EntityData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

POST /api/entities

Create an Entity

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Penman Consulting",
    "companyNo": "string",
    "vatNo": "string",
    "dunnNo": "string",
    "utr": "string"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "companyNo": {
            "type": "string"
        },
        "vatNo": {
            "type": "string"
        },
        "dunnNo": {
            "type": "string"
        },
        "utr": {
            "type": "string"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 400 Bad Request

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Penman Consulting",
    "companyNo": "string",
    "vatNo": "string",
    "dunnNo": "string",
    "utr": "string"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Penman Consulting"
        },
        "companyNo": {
            "type": "string"
        },
        "vatNo": {
            "type": "string"
        },
        "dunnNo": {
            "type": "string"
        },
        "utr": {
            "type": "string"
        }
    },
    "required": [
        "name",
        "partitionId"
    ]
}

Response 403 Forbidden

Response 500 Internal Server Error

Constituents


GET /api/constituents/{id}

Get a Constituent

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Benzene",
    "type": "SUBSTANCE",
    "casNumber": "100-00-5",
    "ecName": "1-chloro-4-nitrobenzene",
    "ecNumber": "202-809-6",
    "ecDescription": "string",
    "iupac": "benzene",
    "iuclidUuid": "string",
    "tsca": "Benzene, 1-chloro-4-nitro-",
    "molecularFormula": "C6H6",
    "smiles": "C1=CC=CC=C1",
    "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Benzene"
        },
        "type": {
            "type": "string",
            "enum": [
                "ACTIVE_INGREDIENT",
                "ARTICLE",
                "BLEND",
                "CO_FORMULANT",
                "MIXTURE",
                "MONOMER",
                "POLYMER",
                "SUBSTANCE",
                "UN_SPECIFIED"
            ],
            "example": "SUBSTANCE"
        },
        "casNumber": {
            "type": "string",
            "example": "100-00-5"
        },
        "ecName": {
            "type": "string",
            "example": "1-chloro-4-nitrobenzene"
        },
        "ecNumber": {
            "type": "string",
            "example": "202-809-6"
        },
        "ecDescription": {
            "type": "string"
        },
        "iupac": {
            "type": "string",
            "example": "benzene"
        },
        "iuclidUuid": {
            "type": "string"
        },
        "tsca": {
            "type": "string",
            "example": "Benzene, 1-chloro-4-nitro-"
        },
        "molecularFormula": {
            "type": "string",
            "example": "C6H6"
        },
        "smiles": {
            "type": "string",
            "example": "C1=CC=CC=C1"
        },
        "inChl": {
            "type": "string",
            "example": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId",
        "type"
    ]
}

Response 403 Forbidden

Response 404 Not Found

Response 500 Internal Server Error


PUT /api/constituents/{id}

Fully Update a Constituent

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Benzene",
    "type": "SUBSTANCE",
    "casNumber": "100-00-5",
    "ecName": "1-chloro-4-nitrobenzene",
    "ecNumber": "202-809-6",
    "ecDescription": "string",
    "iupac": "benzene",
    "iuclidUuid": "string",
    "tsca": "Benzene, 1-chloro-4-nitro-",
    "molecularFormula": "C6H6",
    "smiles": "C1=CC=CC=C1",
    "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Benzene"
        },
        "type": {
            "type": "string",
            "enum": [
                "ACTIVE_INGREDIENT",
                "ARTICLE",
                "BLEND",
                "CO_FORMULANT",
                "MIXTURE",
                "MONOMER",
                "POLYMER",
                "SUBSTANCE",
                "UN_SPECIFIED"
            ],
            "example": "SUBSTANCE"
        },
        "casNumber": {
            "type": "string",
            "example": "100-00-5"
        },
        "ecName": {
            "type": "string",
            "example": "1-chloro-4-nitrobenzene"
        },
        "ecNumber": {
            "type": "string",
            "example": "202-809-6"
        },
        "ecDescription": {
            "type": "string"
        },
        "iupac": {
            "type": "string",
            "example": "benzene"
        },
        "iuclidUuid": {
            "type": "string"
        },
        "tsca": {
            "type": "string",
            "example": "Benzene, 1-chloro-4-nitro-"
        },
        "molecularFormula": {
            "type": "string",
            "example": "C6H6"
        },
        "smiles": {
            "type": "string",
            "example": "C1=CC=CC=C1"
        },
        "inChl": {
            "type": "string",
            "example": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId",
        "type"
    ]
}

Response 400 Bad Request

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Benzene",
    "type": "SUBSTANCE",
    "casNumber": "100-00-5",
    "ecName": "1-chloro-4-nitrobenzene",
    "ecNumber": "202-809-6",
    "ecDescription": "string",
    "iupac": "benzene",
    "iuclidUuid": "string",
    "tsca": "Benzene, 1-chloro-4-nitro-",
    "molecularFormula": "C6H6",
    "smiles": "C1=CC=CC=C1",
    "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Benzene"
        },
        "type": {
            "type": "string",
            "enum": [
                "ACTIVE_INGREDIENT",
                "ARTICLE",
                "BLEND",
                "CO_FORMULANT",
                "MIXTURE",
                "MONOMER",
                "POLYMER",
                "SUBSTANCE",
                "UN_SPECIFIED"
            ],
            "example": "SUBSTANCE"
        },
        "casNumber": {
            "type": "string",
            "example": "100-00-5"
        },
        "ecName": {
            "type": "string",
            "example": "1-chloro-4-nitrobenzene"
        },
        "ecNumber": {
            "type": "string",
            "example": "202-809-6"
        },
        "ecDescription": {
            "type": "string"
        },
        "iupac": {
            "type": "string",
            "example": "benzene"
        },
        "iuclidUuid": {
            "type": "string"
        },
        "tsca": {
            "type": "string",
            "example": "Benzene, 1-chloro-4-nitro-"
        },
        "molecularFormula": {
            "type": "string",
            "example": "C6H6"
        },
        "smiles": {
            "type": "string",
            "example": "C1=CC=CC=C1"
        },
        "inChl": {
            "type": "string",
            "example": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId",
        "type"
    ]
}

Response 404 Not Found

Response 500 Internal Server Error


DELETE /api/constituents/{id}

Delete a Constituent

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 204 No Content

Response 403 Forbidden

Response 500 Internal Server Error


PATCH /api/constituents/{id}

Partially Update a Constituent

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Benzene",
    "type": "SUBSTANCE",
    "casNumber": "100-00-5",
    "ecName": "1-chloro-4-nitrobenzene",
    "ecNumber": "202-809-6",
    "ecDescription": "string",
    "iupac": "benzene",
    "iuclidUuid": "string",
    "tsca": "Benzene, 1-chloro-4-nitro-",
    "molecularFormula": "C6H6",
    "smiles": "C1=CC=CC=C1",
    "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Benzene"
        },
        "type": {
            "type": "string",
            "enum": [
                "ACTIVE_INGREDIENT",
                "ARTICLE",
                "BLEND",
                "CO_FORMULANT",
                "MIXTURE",
                "MONOMER",
                "POLYMER",
                "SUBSTANCE",
                "UN_SPECIFIED"
            ],
            "example": "SUBSTANCE"
        },
        "casNumber": {
            "type": "string",
            "example": "100-00-5"
        },
        "ecName": {
            "type": "string",
            "example": "1-chloro-4-nitrobenzene"
        },
        "ecNumber": {
            "type": "string",
            "example": "202-809-6"
        },
        "ecDescription": {
            "type": "string"
        },
        "iupac": {
            "type": "string",
            "example": "benzene"
        },
        "iuclidUuid": {
            "type": "string"
        },
        "tsca": {
            "type": "string",
            "example": "Benzene, 1-chloro-4-nitro-"
        },
        "molecularFormula": {
            "type": "string",
            "example": "C6H6"
        },
        "smiles": {
            "type": "string",
            "example": "C1=CC=CC=C1"
        },
        "inChl": {
            "type": "string",
            "example": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId",
        "type"
    ]
}

Response 400 Bad Request

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Benzene",
    "type": "SUBSTANCE",
    "casNumber": "100-00-5",
    "ecName": "1-chloro-4-nitrobenzene",
    "ecNumber": "202-809-6",
    "ecDescription": "string",
    "iupac": "benzene",
    "iuclidUuid": "string",
    "tsca": "Benzene, 1-chloro-4-nitro-",
    "molecularFormula": "C6H6",
    "smiles": "C1=CC=CC=C1",
    "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Benzene"
        },
        "type": {
            "type": "string",
            "enum": [
                "ACTIVE_INGREDIENT",
                "ARTICLE",
                "BLEND",
                "CO_FORMULANT",
                "MIXTURE",
                "MONOMER",
                "POLYMER",
                "SUBSTANCE",
                "UN_SPECIFIED"
            ],
            "example": "SUBSTANCE"
        },
        "casNumber": {
            "type": "string",
            "example": "100-00-5"
        },
        "ecName": {
            "type": "string",
            "example": "1-chloro-4-nitrobenzene"
        },
        "ecNumber": {
            "type": "string",
            "example": "202-809-6"
        },
        "ecDescription": {
            "type": "string"
        },
        "iupac": {
            "type": "string",
            "example": "benzene"
        },
        "iuclidUuid": {
            "type": "string"
        },
        "tsca": {
            "type": "string",
            "example": "Benzene, 1-chloro-4-nitro-"
        },
        "molecularFormula": {
            "type": "string",
            "example": "C6H6"
        },
        "smiles": {
            "type": "string",
            "example": "C1=CC=CC=C1"
        },
        "inChl": {
            "type": "string",
            "example": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId",
        "type"
    ]
}

Response 404 Not Found

Response 500 Internal Server Error


GET /api/constituents

Get All Constituents

Input parameters

Parameter In Type Default Nullable Description
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 403 Forbidden

Response 200 OK

{
    "totalElements": 270,
    "totalPages": 161,
    "first": true,
    "size": 144,
    "content": [
        {
            "id": 1,
            "partitionId": 100,
            "name": "Benzene",
            "type": "SUBSTANCE",
            "casNumber": "100-00-5",
            "ecName": "1-chloro-4-nitrobenzene",
            "ecNumber": "202-809-6",
            "ecDescription": "string",
            "iupac": "benzene",
            "iuclidUuid": "string",
            "tsca": "Benzene, 1-chloro-4-nitro-",
            "molecularFormula": "C6H6",
            "smiles": "C1=CC=CC=C1",
            "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
            "deleted": false
        }
    ],
    "number": 23,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 181,
        "sort": null,
        "pageNumber": 162,
        "paged": true,
        "unpaged": true,
        "pageSize": 241
    },
    "numberOfElements": 110,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/ConstituentData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

POST /api/constituents

Create a Constituent

Request body

{
    "id": 1,
    "partitionId": 100,
    "name": "Benzene",
    "type": "SUBSTANCE",
    "casNumber": "100-00-5",
    "ecName": "1-chloro-4-nitrobenzene",
    "ecNumber": "202-809-6",
    "ecDescription": "string",
    "iupac": "benzene",
    "iuclidUuid": "string",
    "tsca": "Benzene, 1-chloro-4-nitro-",
    "molecularFormula": "C6H6",
    "smiles": "C1=CC=CC=C1",
    "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the request body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Benzene"
        },
        "type": {
            "type": "string",
            "enum": [
                "ACTIVE_INGREDIENT",
                "ARTICLE",
                "BLEND",
                "CO_FORMULANT",
                "MIXTURE",
                "MONOMER",
                "POLYMER",
                "SUBSTANCE",
                "UN_SPECIFIED"
            ],
            "example": "SUBSTANCE"
        },
        "casNumber": {
            "type": "string",
            "example": "100-00-5"
        },
        "ecName": {
            "type": "string",
            "example": "1-chloro-4-nitrobenzene"
        },
        "ecNumber": {
            "type": "string",
            "example": "202-809-6"
        },
        "ecDescription": {
            "type": "string"
        },
        "iupac": {
            "type": "string",
            "example": "benzene"
        },
        "iuclidUuid": {
            "type": "string"
        },
        "tsca": {
            "type": "string",
            "example": "Benzene, 1-chloro-4-nitro-"
        },
        "molecularFormula": {
            "type": "string",
            "example": "C6H6"
        },
        "smiles": {
            "type": "string",
            "example": "C1=CC=CC=C1"
        },
        "inChl": {
            "type": "string",
            "example": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId",
        "type"
    ]
}

Response 400 Bad Request

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Benzene",
    "type": "SUBSTANCE",
    "casNumber": "100-00-5",
    "ecName": "1-chloro-4-nitrobenzene",
    "ecNumber": "202-809-6",
    "ecDescription": "string",
    "iupac": "benzene",
    "iuclidUuid": "string",
    "tsca": "Benzene, 1-chloro-4-nitro-",
    "molecularFormula": "C6H6",
    "smiles": "C1=CC=CC=C1",
    "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
    "deleted": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Benzene"
        },
        "type": {
            "type": "string",
            "enum": [
                "ACTIVE_INGREDIENT",
                "ARTICLE",
                "BLEND",
                "CO_FORMULANT",
                "MIXTURE",
                "MONOMER",
                "POLYMER",
                "SUBSTANCE",
                "UN_SPECIFIED"
            ],
            "example": "SUBSTANCE"
        },
        "casNumber": {
            "type": "string",
            "example": "100-00-5"
        },
        "ecName": {
            "type": "string",
            "example": "1-chloro-4-nitrobenzene"
        },
        "ecNumber": {
            "type": "string",
            "example": "202-809-6"
        },
        "ecDescription": {
            "type": "string"
        },
        "iupac": {
            "type": "string",
            "example": "benzene"
        },
        "iuclidUuid": {
            "type": "string"
        },
        "tsca": {
            "type": "string",
            "example": "Benzene, 1-chloro-4-nitro-"
        },
        "molecularFormula": {
            "type": "string",
            "example": "C6H6"
        },
        "smiles": {
            "type": "string",
            "example": "C1=CC=CC=C1"
        },
        "inChl": {
            "type": "string",
            "example": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H"
        },
        "deleted": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "name",
        "partitionId",
        "type"
    ]
}

Response 500 Internal Server Error

Submissions


GET /api/submissions

Get all Submissions

Input parameters

Parameter In Type Default Nullable Description
constituent query integer No Filter submissions by constituent
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 200 OK

{
    "totalElements": 192,
    "totalPages": 211,
    "first": true,
    "size": 89,
    "content": [
        {
            "id": 1,
            "registration": {
                "id": 1,
                "constituent": {
                    "id": 1,
                    "partitionId": 100,
                    "name": "Benzene",
                    "type": "SUBSTANCE",
                    "casNumber": "100-00-5",
                    "ecName": "1-chloro-4-nitrobenzene",
                    "ecNumber": "202-809-6",
                    "ecDescription": "string",
                    "iupac": "benzene",
                    "iuclidUuid": "string",
                    "tsca": "Benzene, 1-chloro-4-nitro-",
                    "molecularFormula": "C6H6",
                    "smiles": "C1=CC=CC=C1",
                    "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
                    "deleted": false
                },
                "reachLegislation": "EU_REACH",
                "registrationName": "string",
                "registrationNumber": "string",
                "registrationDate": "2022-04-13",
                "forLegalEntity": {
                    "id": 1,
                    "partitionId": 100,
                    "name": "Penman Consulting",
                    "companyNo": "string",
                    "vatNo": "string",
                    "dunnNo": "string",
                    "utr": "string"
                },
                "submittingLegalEntity": null
            },
            "dateSubmitted": "2022-04-13",
            "dateIssued": "2022-04-13",
            "dateAccepted": "2022-04-13",
            "reachDossierType": "A",
            "tonnageBand": "BAND3",
            "reason": "INITIAL",
            "notes": "string",
            "iuclidDossierReference": "string",
            "submissionNumber": "string"
        }
    ],
    "number": 269,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 108,
        "sort": null,
        "pageNumber": 94,
        "paged": true,
        "unpaged": true,
        "pageSize": 77
    },
    "numberOfElements": 186,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/SubmissionData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

Response 403 Forbidden


GET /api/submissions/{id}

Get a Submission

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "registration": {
        "id": 1,
        "constituent": {
            "id": 1,
            "partitionId": 100,
            "name": "Benzene",
            "type": "SUBSTANCE",
            "casNumber": "100-00-5",
            "ecName": "1-chloro-4-nitrobenzene",
            "ecNumber": "202-809-6",
            "ecDescription": "string",
            "iupac": "benzene",
            "iuclidUuid": "string",
            "tsca": "Benzene, 1-chloro-4-nitro-",
            "molecularFormula": "C6H6",
            "smiles": "C1=CC=CC=C1",
            "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
            "deleted": false
        },
        "reachLegislation": "EU_REACH",
        "registrationName": "string",
        "registrationNumber": "string",
        "registrationDate": "2022-04-13",
        "forLegalEntity": {
            "id": 1,
            "partitionId": 100,
            "name": "Penman Consulting",
            "companyNo": "string",
            "vatNo": "string",
            "dunnNo": "string",
            "utr": "string"
        },
        "submittingLegalEntity": null
    },
    "dateSubmitted": "2022-04-13",
    "dateIssued": "2022-04-13",
    "dateAccepted": "2022-04-13",
    "reachDossierType": "A",
    "tonnageBand": "BAND3",
    "reason": "INITIAL",
    "notes": "string",
    "iuclidDossierReference": "string",
    "submissionNumber": "string"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "registration": {
            "$ref": "#/components/schemas/RegistrationData"
        },
        "dateSubmitted": {
            "type": "string",
            "format": "date"
        },
        "dateIssued": {
            "type": "string",
            "format": "date"
        },
        "dateAccepted": {
            "type": "string",
            "format": "date"
        },
        "reachDossierType": {
            "type": "string",
            "enum": [
                "A",
                "B",
                "C",
                "D",
                "E",
                "F",
                "G",
                "H",
                "I",
                "J",
                "K",
                "L",
                "M",
                "N",
                "O",
                "P",
                "Q",
                "R",
                "S",
                "T",
                "U",
                "V",
                "W",
                "X",
                "Y",
                "K_REACH_A",
                "K_REACH_B",
                "K_REACH_C",
                "K_REACH_D",
                "K_REACH_E",
                "K_REACH_F",
                "K_REACH_G",
                "K_REACH_H",
                "K_REACH_IA",
                "K_REACH_IB",
                "K_REACH_IC",
                "K_REACH_ID",
                "K_REACH_IE",
                "K_REACH_JA",
                "K_REACH_JB",
                "K_REACH_JC",
                "K_REACH_JD",
                "K_REACH_JE",
                "K_REACH_KA",
                "K_REACH_KB",
                "K_REACH_KC",
                "K_REACH_KD",
                "K_REACH_KE",
                "K_REACH_LA",
                "K_REACH_LB",
                "K_REACH_LC",
                "K_REACH_LD",
                "K_REACH_LE",
                "K_REACH_M",
                "K_REACH_N",
                "K_REACH_O",
                "K_REACH_P"
            ]
        },
        "tonnageBand": {
            "type": "string",
            "enum": [
                "BAND1",
                "BAND2",
                "BAND3",
                "BAND4",
                "BAND5"
            ],
            "example": "BAND3"
        },
        "reason": {
            "type": "string",
            "enum": [
                "CEASE_OF_MANUFACTURE",
                "GRANDFATHERING",
                "INITIAL",
                "INQUIRY",
                "REQUESTED",
                "UPDATE_SPONTANEOUS"
            ],
            "example": "INITIAL"
        },
        "notes": {
            "type": "string"
        },
        "iuclidDossierReference": {
            "type": "string"
        },
        "submissionNumber": {
            "type": "string"
        }
    },
    "required": [
        "registration"
    ]
}

Response 404 Not Found

Response 500 Internal Server Error


DELETE /api/submissions/{id}

Delete a Submission

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 204 No Content

Response 403 Forbidden

Response 500 Internal Server Error

Partitions


GET /api/partitions

Get all Partitions

Response 200 OK

[
    {
        "id": 1,
        "name": "Sandbox",
        "email": "sandbox@demo.activesteward.com"
    }
]
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "array",
    "items": {
        "$ref": "#/components/schemas/PartitionData"
    }
}

Response 403 Forbidden


GET /api/partitions/{id}

Get a Partition

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 200 OK

{
    "id": 1,
    "name": "Sandbox",
    "email": "sandbox@demo.activesteward.com"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "name": {
            "type": "string",
            "example": "Sandbox"
        },
        "email": {
            "type": "string",
            "example": "sandbox@demo.activesteward.com"
        }
    },
    "required": [
        "email"
    ]
}

Response 404 Not Found

Response 403 Forbidden

Response 500 Internal Server Error

Formulations


GET /api/formulations

Get the formulation of a constituent/product

Input parameters

Parameter In Type Default Nullable Description
constituent query integer No
product query integer No

Response 200 OK

[
    {
        "id": 1,
        "percentage": 3.85,
        "parentProduct": 206,
        "parentConstituent": 88,
        "constituent": 183
    }
]
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "array",
    "items": {
        "$ref": "#/components/schemas/FormulationData"
    }
}

Documents


GET /api/documents

Get all Documents

Input parameters

Parameter In Type Default Nullable Description
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 200 OK

{
    "totalElements": 48,
    "totalPages": 125,
    "first": true,
    "size": 7,
    "content": [
        {
            "id": 1,
            "partitionId": 100,
            "name": "2025-31-01 Benzene CSR",
            "type": "CSR",
            "documentCreationDate": "2025-31-01"
        }
    ],
    "number": 140,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 257,
        "sort": null,
        "pageNumber": 270,
        "paged": true,
        "unpaged": true,
        "pageSize": 54
    },
    "numberOfElements": 129,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/DocumentData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

Response 403 Forbidden


GET /api/documents/{id}

Get a Document

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 404 Not Found

Response 403 Forbidden

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "2025-31-01 Benzene CSR",
    "type": "CSR",
    "documentCreationDate": "2025-31-01"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "2025-31-01 Benzene CSR"
        },
        "type": {
            "type": "string",
            "enum": [
                "DOCUMENT",
                "INVOICE",
                "ANALYTICAL_REPORT",
                "CJD",
                "CONTRACT",
                "CWA",
                "CSR",
                "DU",
                "DRC_CONSTITUENT",
                "DRC",
                "GENDOC",
                "IUCLID",
                "MEET",
                "REPORT",
                "RSC",
                "SAFETY",
                "EMAIL",
                "GENERIC_EMAIL",
                "INTERNAL_EMAIL"
            ],
            "example": "CSR"
        },
        "documentCreationDate": {
            "type": "string",
            "format": "date",
            "example": "2025-31-01"
        }
    },
    "required": [
        "documentCreationDate",
        "name",
        "partitionId",
        "type"
    ]
}

Response 500 Internal Server Error


DELETE /api/documents/{id}

Delete a Document

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 204 No Content

Response 403 Forbidden

Response 500 Internal Server Error

Contacts


GET /api/contacts

Get All Contacts

Input parameters

Parameter In Type Default Nullable Description
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 403 Forbidden

Response 200 OK

{
    "totalElements": 228,
    "totalPages": 156,
    "first": true,
    "size": 196,
    "content": [
        {
            "id": 1,
            "partitionId": 100,
            "title": "MR",
            "firstName": "James",
            "lastName": "Smith",
            "nameSuffix": "MR",
            "jobDescription": "Environmental Scientist",
            "email": "john.smith@example.com",
            "telephone": "string",
            "fax": "string",
            "mobile": "string",
            "skype": "string"
        }
    ],
    "number": 128,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 224,
        "sort": null,
        "pageNumber": 70,
        "paged": true,
        "unpaged": true,
        "pageSize": 14
    },
    "numberOfElements": 243,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/ContactData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

GET /api/contacts/{id}

Get a Contact

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "title": "MR",
    "firstName": "James",
    "lastName": "Smith",
    "nameSuffix": "MR",
    "jobDescription": "Environmental Scientist",
    "email": "john.smith@example.com",
    "telephone": "string",
    "fax": "string",
    "mobile": "string",
    "skype": "string"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "title": {
            "type": "string",
            "enum": [
                "MR",
                "MISS",
                "MRS",
                "MS",
                "DR",
                "PROF"
            ],
            "example": "MR"
        },
        "firstName": {
            "type": "string",
            "example": "James"
        },
        "lastName": {
            "type": "string",
            "example": "Smith"
        },
        "nameSuffix": {
            "type": "string",
            "example": "MR"
        },
        "jobDescription": {
            "type": "string",
            "example": "Environmental Scientist"
        },
        "email": {
            "type": "string",
            "example": "john.smith@example.com"
        },
        "telephone": {
            "type": "string"
        },
        "fax": {
            "type": "string"
        },
        "mobile": {
            "type": "string"
        },
        "skype": {
            "type": "string"
        }
    },
    "required": [
        "email",
        "firstName",
        "lastName",
        "partitionId"
    ]
}

Response 404 Not Found

Response 403 Forbidden

Response 500 Internal Server Error


DELETE /api/contacts/{id}

Delete a Contact

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 204 No Content

Response 403 Forbidden

Response 500 Internal Server Error


GET /api/constituents/entities

Get all Constituent-Entity links

Input parameters

Parameter In Type Default Nullable Description
constituent query integer No Filter links by constituent
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 403 Forbidden

Response 200 OK

{
    "totalElements": 133,
    "totalPages": 199,
    "first": true,
    "size": 13,
    "content": [
        {
            "id": 1,
            "partitionId": 100,
            "constituent": {
                "id": 1,
                "partitionId": 100,
                "name": "Benzene",
                "type": "SUBSTANCE",
                "casNumber": "100-00-5",
                "ecName": "1-chloro-4-nitrobenzene",
                "ecNumber": "202-809-6",
                "ecDescription": "string",
                "iupac": "benzene",
                "iuclidUuid": "string",
                "tsca": "Benzene, 1-chloro-4-nitro-",
                "molecularFormula": "C6H6",
                "smiles": "C1=CC=CC=C1",
                "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
                "deleted": false
            },
            "entity": {
                "id": 1,
                "partitionId": 100,
                "name": "Penman Consulting",
                "companyNo": "string",
                "vatNo": "string",
                "dunnNo": "string",
                "utr": "string"
            },
            "entityRoles": [
                {
                    "display": "Registrant",
                    "id": "REGISTRANT"
                }
            ],
            "manufacturerUuid": "37b58a8c-fae4-485f-bb99-1cf879d34678",
            "registrationNumber": "UK-12-1234567890-1-1111",
            "reasonForInterest": "UK_REACH",
            "manufacturer": {
                "lastUpdated": "2022-04-13T15:42:05.901Z",
                "id": 256,
                "name": "string",
                "version": 98,
                "companyNo": "string",
                "vatNo": "string",
                "remarks": "string",
                "dunnNo": "string",
                "utr": "string",
                "uclidID": "string",
                "reachID": "string",
                "clientPartitionId": 35,
                "sapBusinessReference": "string",
                "hasInvoicingAddress": true,
                "deleted": true,
                "entityEntityGroups": [
                    {
                        "id": 117,
                        "entity": null,
                        "entityGroup": {
                            "name": "string",
                            "partitionId": 281
                        }
                    }
                ],
                "invoiceOverdueDays": 74,
                "comments": [
                    {
                        "id": 200,
                        "replyTo": {
                            "id": 93,
                            "replyTo": null,
                            "createdDate": "2022-04-13T15:42:05.901Z",
                            "user": {
                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                "id": 170,
                                "firstName": "string",
                                "lastName": "string",
                                "emailAddress": "string",
                                "principal": "string",
                                "lastLoggedIn": "2022-04-13T15:42:05.901Z",
                                "created": "2022-04-13T15:42:05.901Z",
                                "enabled": true,
                                "locked": true,
                                "failedLoginCount": 268,
                                "notActiveAfter": "2022-04-13",
                                "passwordExpires": "2022-04-13",
                                "deleted": true,
                                "version": 202,
                                "owner": null,
                                "role": {
                                    "id": 128,
                                    "name": "string",
                                    "deletable": true,
                                    "permissions": [
                                        "ROLE_PRE_AUTH"
                                    ],
                                    "externalGroups": [
                                        "string"
                                    ],
                                    "forCampaign": true,
                                    "forInternal": true,
                                    "penmanAdmin": true,
                                    "admin": true
                                },
                                "forcePasswordChange": true,
                                "termsAccepted": true,
                                "calendarDashboard": true,
                                "clientPortal": true,
                                "securityVersion": 235,
                                "secret": "string",
                                "initials": "string",
                                "active": true,
                                "fullName": "string",
                                "fullNameSanitized": "string",
                                "credentialsType": "BASIC",
                                "entityGroups": null,
                                "nameReversed": "string",
                                "temporaryPasswordActive": true,
                                "lastUpdatedById": 12,
                                "name": "string",
                                "url": "string",
                                "partitionId": 14,
                                "partition": {
                                    "id": 212,
                                    "partitionName": "string",
                                    "logoID": "15c52dd0-f8d6-4c53-b463-ea5131a9ca8a",
                                    "email": "string",
                                    "userPartitions": [
                                        {
                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                            "id": 56,
                                            "user": null,
                                            "partition": null,
                                            "role": null,
                                            "enabled": true,
                                            "currentSelection": true,
                                            "notificationPreferences": {
                                                "allDocumentNotifications": true,
                                                "overdueInvoices": true,
                                                "allCampaignNotifications": true,
                                                "allStudyNotifications": true,
                                                "constituentTonnage": true,
                                                "emails": true,
                                                "constituentsInUpdatedInventories": true,
                                                "campaignSecurityWarnings": true,
                                                "invoicePayments": true
                                            },
                                            "relevantRole": null
                                        }
                                    ],
                                    "entities": null,
                                    "emailFolder": {
                                        "id": 10,
                                        "partitionId": 236,
                                        "name": "string",
                                        "parent": null,
                                        "children": null,
                                        "documents": [
                                            {
                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                "id": 40,
                                                "partition": null,
                                                "title": "string",
                                                "description": "string",
                                                "fileName": "string",
                                                "originalFileName": "string",
                                                "link": true,
                                                "fileSize": 83,
                                                "uploadDate": "2022-04-13T15:42:05.901Z",
                                                "documentCreationDate": "2022-04-13",
                                                "fileType": "UNKNOWN",
                                                "docType": "DOCUMENT",
                                                "expiryDate": "2022-04-13",
                                                "retentionDate": "2022-04-13",
                                                "permanent": true,
                                                "documentProducts": [
                                                    {
                                                        "id": 238,
                                                        "document": null,
                                                        "product": {
                                                            "id": 39,
                                                            "name": "string",
                                                            "ownerManufacturer": "string",
                                                            "partitionId": 293,
                                                            "archived": true
                                                        },
                                                        "deleted": true
                                                    }
                                                ],
                                                "products": null,
                                                "documentConstituents": [
                                                    {
                                                        "id": 113,
                                                        "document": null,
                                                        "constituent": {
                                                            "id": 254,
                                                            "casNumber": "string",
                                                            "ecName": "string",
                                                            "ecNumber": "string",
                                                            "ecDescription": "string",
                                                            "iupac": "string",
                                                            "iuclidUuid": "string",
                                                            "tsca": "string",
                                                            "molecularFormula": "string",
                                                            "smiles": "string",
                                                            "inChl": "string",
                                                            "name": "string",
                                                            "partitionId": 238,
                                                            "type": "ACTIVE_INGREDIENT",
                                                            "archived": true
                                                        },
                                                        "deleted": true
                                                    }
                                                ],
                                                "constituents": null,
                                                "documentCategoryGroups": [
                                                    {
                                                        "id": 284,
                                                        "document": null,
                                                        "categoryGroup": {
                                                            "id": 141,
                                                            "groupName": "string",
                                                            "partitionId": 11
                                                        },
                                                        "deleted": true
                                                    }
                                                ],
                                                "categoryGroups": null,
                                                "documentProductGroups": [
                                                    {
                                                        "id": 28,
                                                        "document": null,
                                                        "productGroup": {
                                                            "groupName": "string",
                                                            "partitionId": 92
                                                        }
                                                    }
                                                ],
                                                "productGroups": null,
                                                "documentEntities": [
                                                    {
                                                        "id": 8,
                                                        "entity": null,
                                                        "document": null,
                                                        "deleted": true
                                                    }
                                                ],
                                                "entities": null,
                                                "documentEntityGroups": [
                                                    {
                                                        "id": 18,
                                                        "document": null,
                                                        "entityGroup": null
                                                    }
                                                ],
                                                "entityGroups": null,
                                                "documentContactGroups": [
                                                    {
                                                        "id": 239,
                                                        "document": null,
                                                        "contactGroup": {
                                                            "groupName": "string"
                                                        },
                                                        "deleted": true
                                                    }
                                                ],
                                                "contactGroups": null,
                                                "documentTagSet": [
                                                    {
                                                        "id": 202,
                                                        "document": null,
                                                        "tag": {
                                                            "id": {
                                                                "partitionId": 41,
                                                                "id": 232
                                                            },
                                                            "tagText": "string"
                                                        },
                                                        "deleted": true
                                                    }
                                                ],
                                                "linkedDocuments": null,
                                                "version": 47,
                                                "versionIdentifier": "string",
                                                "currentDocumentId": 211,
                                                "currentDocument": null,
                                                "newsItem": true,
                                                "sourceEmail": [
                                                    {
                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                        "id": 272,
                                                        "partition": null,
                                                        "title": "string",
                                                        "description": "string",
                                                        "fileName": "string",
                                                        "originalFileName": "string",
                                                        "link": true,
                                                        "fileSize": 300,
                                                        "uploadDate": "2022-04-13T15:42:05.901Z",
                                                        "documentCreationDate": "2022-04-13",
                                                        "fileType": "UNKNOWN",
                                                        "docType": "DOCUMENT",
                                                        "expiryDate": "2022-04-13",
                                                        "retentionDate": "2022-04-13",
                                                        "permanent": true,
                                                        "products": null,
                                                        "constituents": null,
                                                        "categoryGroups": null,
                                                        "productGroups": null,
                                                        "entities": null,
                                                        "documentEntityGroups": null,
                                                        "entityGroups": null,
                                                        "documentContactGroups": null,
                                                        "contactGroups": null,
                                                        "documentTagSet": null,
                                                        "linkedDocuments": null,
                                                        "version": 129,
                                                        "versionIdentifier": "string",
                                                        "currentDocumentId": 167,
                                                        "currentDocument": null,
                                                        "newsItem": true,
                                                        "internalSourceEmails": [
                                                            {
                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                "id": 116,
                                                                "partition": null,
                                                                "title": "string",
                                                                "description": "string",
                                                                "fileName": "string",
                                                                "originalFileName": "string",
                                                                "link": true,
                                                                "fileSize": 271,
                                                                "uploadDate": "2022-04-13T15:42:05.901Z",
                                                                "documentCreationDate": "2022-04-13",
                                                                "fileType": "UNKNOWN",
                                                                "docType": "DOCUMENT",
                                                                "expiryDate": "2022-04-13",
                                                                "retentionDate": "2022-04-13",
                                                                "permanent": true,
                                                                "products": null,
                                                                "constituents": null,
                                                                "categoryGroups": null,
                                                                "productGroups": null,
                                                                "entities": null,
                                                                "documentEntityGroups": null,
                                                                "entityGroups": null,
                                                                "documentContactGroups": null,
                                                                "contactGroups": null,
                                                                "documentTagSet": null,
                                                                "linkedDocuments": null,
                                                                "version": 247,
                                                                "versionIdentifier": "string",
                                                                "currentDocumentId": 19,
                                                                "currentDocument": null,
                                                                "newsItem": true,
                                                                "issues": [
                                                                    {
                                                                        "id": 203,
                                                                        "clientPartition": null,
                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                        "version": 104,
                                                                        "issue": "string",
                                                                        "statement": "string",
                                                                        "basis": "string",
                                                                        "reviewDate": "2022-04-13",
                                                                        "reviewNotified": true,
                                                                        "supportingDocuments": null,
                                                                        "products": null,
                                                                        "constituents": null,
                                                                        "studies": [
                                                                            {
                                                                                "id": 1,
                                                                                "code": "string",
                                                                                "status": "PLANNED",
                                                                                "species": [
                                                                                    {
                                                                                        "id": 216,
                                                                                        "description": "string"
                                                                                    }
                                                                                ],
                                                                                "purpose": "VI",
                                                                                "start": "2022-04-13",
                                                                                "end": "2022-04-13",
                                                                                "folder": null,
                                                                                "partitionId": 296
                                                                            }
                                                                        ],
                                                                        "entities": null,
                                                                        "notes": "string",
                                                                        "inventoryId": "cfe6a886-499c-4233-b660-1a6ffb2ee029",
                                                                        "comments": [
                                                                            {
                                                                                "id": 197,
                                                                                "replyTo": null,
                                                                                "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                "user": null,
                                                                                "contact": {
                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                    "id": 180,
                                                                                    "partition": null,
                                                                                    "user": null,
                                                                                    "title": "MR",
                                                                                    "firstName": "string",
                                                                                    "lastName": "string",
                                                                                    "nameSuffix": "string",
                                                                                    "jobDescription": "string",
                                                                                    "email": "string",
                                                                                    "telephone": "string",
                                                                                    "fax": "string",
                                                                                    "mobile": "string",
                                                                                    "skype": "string",
                                                                                    "remarks": "string",
                                                                                    "reachIt": true,
                                                                                    "deactivated": true,
                                                                                    "deleted": true,
                                                                                    "productEntityContacts": [
                                                                                        {
                                                                                            "id": 188,
                                                                                            "productEntity": {
                                                                                                "id": 205,
                                                                                                "product": null,
                                                                                                "baseEntity": null,
                                                                                                "entityRoles": [
                                                                                                    {
                                                                                                        "id": "string",
                                                                                                        "display": "string",
                                                                                                        "name": "string",
                                                                                                        "url": "string",
                                                                                                        "partitionId": 104,
                                                                                                        "partition": null,
                                                                                                        "idInPartition": 61,
                                                                                                        "recordName": "string",
                                                                                                        "displayAttributes": [
                                                                                                            {}
                                                                                                        ],
                                                                                                        "displayCodePartial": "string",
                                                                                                        "displayArgs": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "breadcrumbParent": {
                                                                                                            "name": "string",
                                                                                                            "id": {},
                                                                                                            "url": "string",
                                                                                                            "partitionId": 295,
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 203,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "iconColour": "string"
                                                                                                        },
                                                                                                        "iconClass": "string",
                                                                                                        "iconColour": "string"
                                                                                                    }
                                                                                                ],
                                                                                                "deleted": true,
                                                                                                "partitionId": 249
                                                                                            },
                                                                                            "contact": null,
                                                                                            "deleted": true
                                                                                        }
                                                                                    ],
                                                                                    "productPartyContacts": [
                                                                                        {
                                                                                            "id": 11,
                                                                                            "productParty": {
                                                                                                "id": 221,
                                                                                                "product": null,
                                                                                                "party": {
                                                                                                    "id": 205,
                                                                                                    "entity": null,
                                                                                                    "description": "string",
                                                                                                    "addressLine1": "string",
                                                                                                    "addressLine2": "string",
                                                                                                    "addressLine3": "string",
                                                                                                    "townCity": "string",
                                                                                                    "countyStateRegion": "string",
                                                                                                    "postcode": "string",
                                                                                                    "country": {
                                                                                                        "id": 23,
                                                                                                        "name": "string",
                                                                                                        "iso3166alpha2CountryCode": "string",
                                                                                                        "iso3166alpha3CountryCode": "string",
                                                                                                        "iso3166numeric3CountryCode": "string",
                                                                                                        "partitionId": 61
                                                                                                    },
                                                                                                    "website": "string",
                                                                                                    "telephone": "string",
                                                                                                    "fax": "string",
                                                                                                    "remarks": "string",
                                                                                                    "addressType": "PRIMARY_ADDRESS",
                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                    "lastUpdatedByEmail": "string",
                                                                                                    "lastUpdatedById": 145,
                                                                                                    "sapBusinessReference": "string",
                                                                                                    "deleted": true,
                                                                                                    "contacts": null,
                                                                                                    "plants": [
                                                                                                        {
                                                                                                            "id": 87,
                                                                                                            "party": null,
                                                                                                            "name": "string",
                                                                                                            "plantCode": "string",
                                                                                                            "constituentPlants": [
                                                                                                                {
                                                                                                                    "id": 43,
                                                                                                                    "constituent": null,
                                                                                                                    "plant": null
                                                                                                                }
                                                                                                            ],
                                                                                                            "productPlants": [
                                                                                                                {
                                                                                                                    "id": 162,
                                                                                                                    "product": null,
                                                                                                                    "plant": null
                                                                                                                }
                                                                                                            ]
                                                                                                        }
                                                                                                    ],
                                                                                                    "lastUpdatedBy": null,
                                                                                                    "partitionId": 1
                                                                                                },
                                                                                                "deleted": true
                                                                                            },
                                                                                            "contact": null,
                                                                                            "deleted": true
                                                                                        }
                                                                                    ],
                                                                                    "productContacts": [
                                                                                        {
                                                                                            "id": 14,
                                                                                            "product": null,
                                                                                            "contact": null,
                                                                                            "contactType": "KEY",
                                                                                            "deleted": true
                                                                                        }
                                                                                    ],
                                                                                    "constituentEntityContacts": [
                                                                                        {
                                                                                            "id": 133,
                                                                                            "constituentEntity": {
                                                                                                "id": 189,
                                                                                                "constituent": null,
                                                                                                "entity": null,
                                                                                                "entityRoles": null,
                                                                                                "partitionId": 164
                                                                                            },
                                                                                            "contact": null,
                                                                                            "deleted": true
                                                                                        }
                                                                                    ],
                                                                                    "constituentPartyContacts": [
                                                                                        {
                                                                                            "id": 255,
                                                                                            "constituentParty": {
                                                                                                "id": 156,
                                                                                                "constituent": null,
                                                                                                "party": null,
                                                                                                "deleted": true
                                                                                            },
                                                                                            "contact": null,
                                                                                            "deleted": true
                                                                                        }
                                                                                    ],
                                                                                    "constituentContacts": [
                                                                                        {
                                                                                            "id": 124,
                                                                                            "constituent": null,
                                                                                            "contact": null,
                                                                                            "contactType": "KEY",
                                                                                            "deleted": true
                                                                                        }
                                                                                    ],
                                                                                    "contactGroups": [
                                                                                        {
                                                                                            "id": 17,
                                                                                            "contact": null,
                                                                                            "contactGroup": null,
                                                                                            "deleted": true
                                                                                        }
                                                                                    ],
                                                                                    "primaryInvoicingEntities": null,
                                                                                    "secondaryInvoicingEntities": null,
                                                                                    "tonnageAndUseEnquiries": [
                                                                                        {
                                                                                            "reachLegislation": "EU_REACH",
                                                                                            "contact": null,
                                                                                            "baseEntity": null,
                                                                                            "enquiryYear": 24,
                                                                                            "documentLink": {
                                                                                                "id": 12,
                                                                                                "contact": null,
                                                                                                "code": "string",
                                                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                                                "documentLinkAttachments": [
                                                                                                    {
                                                                                                        "id": 112,
                                                                                                        "document": null,
                                                                                                        "documentLinks": null
                                                                                                    }
                                                                                                ],
                                                                                                "expiryDays": 73,
                                                                                                "clientPartition": null,
                                                                                                "allDownloaded": true,
                                                                                                "link": "string",
                                                                                                "autoExpire": true,
                                                                                                "reminderDate": "2022-04-13",
                                                                                                "dateAllDownLoaded": "2022-04-13T15:42:05.901Z",
                                                                                                "emails": null,
                                                                                                "tonnageAndUseEnquiries": null,
                                                                                                "reminderDatePassed": true
                                                                                            },
                                                                                            "documentEmailInternals": null,
                                                                                            "products": null,
                                                                                            "tonnageAndUseImporters": [
                                                                                                {
                                                                                                    "id": 193,
                                                                                                    "name": "string",
                                                                                                    "address": "string",
                                                                                                    "contactPerson": "string",
                                                                                                    "email": "string",
                                                                                                    "telephone": "string",
                                                                                                    "tauiProducts": [
                                                                                                        {
                                                                                                            "id": 214,
                                                                                                            "tonnageAndUseEnquiryProductUses": [
                                                                                                                {
                                                                                                                    "id": 249,
                                                                                                                    "tonnageAndUseImporter": null,
                                                                                                                    "useUuid": "82128b0c-2fe5-40d3-b9cf-6417ab0c954e",
                                                                                                                    "puStatus": "x",
                                                                                                                    "usePercentage": 10.12,
                                                                                                                    "selected": true,
                                                                                                                    "remarks": "string"
                                                                                                                }
                                                                                                            ],
                                                                                                            "customUses": [
                                                                                                                {
                                                                                                                    "id": 217,
                                                                                                                    "useName": "string",
                                                                                                                    "useDescription": "string",
                                                                                                                    "percentage": 10.12,
                                                                                                                    "tauiProduct": null
                                                                                                                }
                                                                                                            ],
                                                                                                            "quantityTonnes": 10.12,
                                                                                                            "substanceOrUnknown": 10.12,
                                                                                                            "monomerInAPolymer": 10.12,
                                                                                                            "mixture": 10.12,
                                                                                                            "inAnArticle": 10.12,
                                                                                                            "notInAnArticle": 10.12,
                                                                                                            "selected": true,
                                                                                                            "product": null,
                                                                                                            "remarks": "string"
                                                                                                        }
                                                                                                    ],
                                                                                                    "clientPartition": null,
                                                                                                    "taxID": "string",
                                                                                                    "country": "string"
                                                                                                }
                                                                                            ],
                                                                                            "tonnageAndUseEnquiryUploadDocuments": [
                                                                                                {
                                                                                                    "id": 244,
                                                                                                    "fileName": "string",
                                                                                                    "fileId": "681ec32b-2ae6-4e3a-b566-691bcb5d2508"
                                                                                                }
                                                                                            ],
                                                                                            "clientPartition": null,
                                                                                            "id": 110,
                                                                                            "dateCreated": "2022-04-13T15:42:05.901Z",
                                                                                            "code": "string",
                                                                                            "hidden": true,
                                                                                            "submitted": true,
                                                                                            "includeForms": true,
                                                                                            "dateSubmited": "2022-04-13T15:42:05.901Z",
                                                                                            "accepted": true,
                                                                                            "dateAccepted": "2022-04-13T15:42:05.901Z",
                                                                                            "acceptedBy": null,
                                                                                            "submittedBy": null,
                                                                                            "sentBy": null,
                                                                                            "completeWithinDays": 292,
                                                                                            "createdAsTonnageEnquiry": true,
                                                                                            "removeBracketedTextFromProductName": true,
                                                                                            "entityRole": null
                                                                                        }
                                                                                    ],
                                                                                    "testingLaboratoryContacts": [
                                                                                        {
                                                                                            "id": 278,
                                                                                            "testingLaboratory": {
                                                                                                "id": 188,
                                                                                                "clientPartition": null,
                                                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                "study": null,
                                                                                                "testingLaboratoryEntity": null,
                                                                                                "contacts": null,
                                                                                                "studyNumbers": [
                                                                                                    {
                                                                                                        "id": 232,
                                                                                                        "testingLaboratory": null,
                                                                                                        "activity": "string",
                                                                                                        "contractRef": "string",
                                                                                                        "studyNumber": "string",
                                                                                                        "cost": 10.12,
                                                                                                        "publishedCost": 10.12,
                                                                                                        "payments": [
                                                                                                            {
                                                                                                                "id": 58,
                                                                                                                "name": "string",
                                                                                                                "estimatedDate": "2022-04-13",
                                                                                                                "cost": 10.12,
                                                                                                                "percentage": 10.12,
                                                                                                                "studyNumber": null,
                                                                                                                "type": "SCHEDULED",
                                                                                                                "yearMonth": {
                                                                                                                    "year": 199,
                                                                                                                    "month": "JANUARY",
                                                                                                                    "monthValue": 98,
                                                                                                                    "leapYear": true
                                                                                                                },
                                                                                                                "year": 60,
                                                                                                                "budget": {
                                                                                                                    "id": 270,
                                                                                                                    "clientPartition": null,
                                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                    "name": "string",
                                                                                                                    "start": "2022-04-13",
                                                                                                                    "end": "2022-04-13",
                                                                                                                    "currency": "string",
                                                                                                                    "cost": 10.12,
                                                                                                                    "externalRef": "string",
                                                                                                                    "description": "string",
                                                                                                                    "products": null,
                                                                                                                    "constituents": null,
                                                                                                                    "categoryGroups": null,
                                                                                                                    "documentBudgets": [
                                                                                                                        {
                                                                                                                            "id": 176,
                                                                                                                            "document": null,
                                                                                                                            "budget": null,
                                                                                                                            "cost": 10.12
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "entityBudgets": [
                                                                                                                        {
                                                                                                                            "id": 287,
                                                                                                                            "entity": null,
                                                                                                                            "budget": null,
                                                                                                                            "purchaseOrderNumber": "string",
                                                                                                                            "constituentEntity": null,
                                                                                                                            "constituent": null
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "currencyInstance": {
                                                                                                                        "currencyCode": "string",
                                                                                                                        "numericCodeAsString": "string",
                                                                                                                        "displayName": "string",
                                                                                                                        "symbol": "string",
                                                                                                                        "defaultFractionDigits": 177,
                                                                                                                        "numericCode": 295
                                                                                                                    },
                                                                                                                    "lastUpdatedById": 218,
                                                                                                                    "url": "string",
                                                                                                                    "partitionId": 193,
                                                                                                                    "partition": null,
                                                                                                                    "display": "string",
                                                                                                                    "idInPartition": 204,
                                                                                                                    "recordName": "string",
                                                                                                                    "displayAttributes": [
                                                                                                                        {}
                                                                                                                    ],
                                                                                                                    "displayCodePartial": "string",
                                                                                                                    "displayArgs": [
                                                                                                                        "string"
                                                                                                                    ],
                                                                                                                    "breadcrumbParent": null,
                                                                                                                    "iconClass": "string",
                                                                                                                    "iconColour": "string"
                                                                                                                },
                                                                                                                "yearQuarter": {
                                                                                                                    "left": 161,
                                                                                                                    "right": 197,
                                                                                                                    "value": 131,
                                                                                                                    "key": 249
                                                                                                                },
                                                                                                                "quarter": 185
                                                                                                            }
                                                                                                        ],
                                                                                                        "publishedPayments": [
                                                                                                            {
                                                                                                                "id": 37,
                                                                                                                "name": "string",
                                                                                                                "estimatedDate": "2022-04-13",
                                                                                                                "cost": 10.12,
                                                                                                                "percentage": 10.12,
                                                                                                                "studyNumber": null,
                                                                                                                "type": "SCHEDULED",
                                                                                                                "yearMonth": {
                                                                                                                    "year": 5,
                                                                                                                    "month": "JANUARY",
                                                                                                                    "monthValue": 142,
                                                                                                                    "leapYear": true
                                                                                                                },
                                                                                                                "year": 221,
                                                                                                                "budget": null,
                                                                                                                "yearQuarter": null,
                                                                                                                "quarter": 180
                                                                                                            }
                                                                                                        ],
                                                                                                        "activities": [
                                                                                                            {
                                                                                                                "id": 226,
                                                                                                                "studyNumber": null,
                                                                                                                "name": "string",
                                                                                                                "autoPlannedAfter": 85,
                                                                                                                "autoPlannedAfterPrevious": 136,
                                                                                                                "planned": "2022-04-13",
                                                                                                                "completed": "2022-04-13",
                                                                                                                "signedBy": null,
                                                                                                                "editable": true,
                                                                                                                "template": {
                                                                                                                    "id": 95,
                                                                                                                    "timelineTemplate": {
                                                                                                                        "id": 126,
                                                                                                                        "name": "string",
                                                                                                                        "activityTemplates": null
                                                                                                                    },
                                                                                                                    "name": "string",
                                                                                                                    "autoPlannedAfter": 1,
                                                                                                                    "autoPlannedAfterPrevious": 21,
                                                                                                                    "responsible": "CRO",
                                                                                                                    "activities": null
                                                                                                                },
                                                                                                                "comments": [
                                                                                                                    {
                                                                                                                        "id": 73,
                                                                                                                        "replyTo": null,
                                                                                                                        "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                                        "user": null,
                                                                                                                        "contact": null,
                                                                                                                        "text": "string",
                                                                                                                        "published": true,
                                                                                                                        "replies": null,
                                                                                                                        "notifications": [
                                                                                                                            {
                                                                                                                                "id": 215,
                                                                                                                                "partitionId": 266,
                                                                                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                "user": null,
                                                                                                                                "read": true,
                                                                                                                                "comment": null,
                                                                                                                                "type": "ADDED",
                                                                                                                                "baseUrl": "string",
                                                                                                                                "parent": {
                                                                                                                                    "watchingUsers": null,
                                                                                                                                    "comments": null,
                                                                                                                                    "watching": true,
                                                                                                                                    "watchers": null,
                                                                                                                                    "commentType": "string",
                                                                                                                                    "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                                                    "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                                                                                    "commentDisplayUrl": "string",
                                                                                                                                    "name": "string",
                                                                                                                                    "id": {},
                                                                                                                                    "url": "string",
                                                                                                                                    "partitionId": 88,
                                                                                                                                    "partition": null,
                                                                                                                                    "display": "string",
                                                                                                                                    "idInPartition": 41,
                                                                                                                                    "recordName": "string",
                                                                                                                                    "displayAttributes": [
                                                                                                                                        {}
                                                                                                                                    ],
                                                                                                                                    "displayCodePartial": "string",
                                                                                                                                    "displayArgs": [
                                                                                                                                        "string"
                                                                                                                                    ],
                                                                                                                                    "breadcrumbParent": null,
                                                                                                                                    "iconClass": "string",
                                                                                                                                    "iconColour": "string"
                                                                                                                                },
                                                                                                                                "url": "string",
                                                                                                                                "mailjetTemplateName": "string",
                                                                                                                                "displayCode": "string",
                                                                                                                                "mailjetTemplateVars": {},
                                                                                                                                "mailjetTemplateEmail": {
                                                                                                                                    "templateName": "string",
                                                                                                                                    "subject": "string",
                                                                                                                                    "globalTemplateVars": {},
                                                                                                                                    "recipients": [
                                                                                                                                        {
                                                                                                                                            "email": "string",
                                                                                                                                            "templateVars": {}
                                                                                                                                        }
                                                                                                                                    ],
                                                                                                                                    "attachments": [
                                                                                                                                        {
                                                                                                                                            "type": "string",
                                                                                                                                            "filename": "string",
                                                                                                                                            "data": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ="
                                                                                                                                        }
                                                                                                                                    ],
                                                                                                                                    "priority": "LOW_FIFO"
                                                                                                                                },
                                                                                                                                "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                "name": "string",
                                                                                                                                "partition": null,
                                                                                                                                "display": "string",
                                                                                                                                "idInPartition": 271,
                                                                                                                                "recordName": "string",
                                                                                                                                "displayAttributes": [
                                                                                                                                    {}
                                                                                                                                ],
                                                                                                                                "displayCodePartial": "string",
                                                                                                                                "displayArgs": [
                                                                                                                                    "string"
                                                                                                                                ],
                                                                                                                                "breadcrumbParent": null,
                                                                                                                                "iconClass": "string",
                                                                                                                                "iconColour": "string"
                                                                                                                            }
                                                                                                                        ],
                                                                                                                        "calendarSource": "PRODUCT",
                                                                                                                        "hidden": true,
                                                                                                                        "reply": true,
                                                                                                                        "greatestAncestor": null,
                                                                                                                        "replyToIsUnpublished": true,
                                                                                                                        "serverCreatedReadableDate": "string",
                                                                                                                        "lastUpdatedBy": null,
                                                                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                        "lastUpdatedById": 27,
                                                                                                                        "name": "string",
                                                                                                                        "partition": null,
                                                                                                                        "display": "string",
                                                                                                                        "idInPartition": 114,
                                                                                                                        "recordName": "string",
                                                                                                                        "displayAttributes": [
                                                                                                                            {}
                                                                                                                        ],
                                                                                                                        "displayCodePartial": "string",
                                                                                                                        "displayArgs": [
                                                                                                                            "string"
                                                                                                                        ],
                                                                                                                        "breadcrumbParent": null,
                                                                                                                        "iconClass": "string",
                                                                                                                        "iconColour": "string",
                                                                                                                        "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                        "allDay": true,
                                                                                                                        "calendarExtendedProps": {}
                                                                                                                    }
                                                                                                                ],
                                                                                                                "overdueNotifications": [
                                                                                                                    {
                                                                                                                        "id": 166,
                                                                                                                        "partitionId": 278,
                                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                                        "user": null,
                                                                                                                        "read": true,
                                                                                                                        "activity": null,
                                                                                                                        "planned": "2022-04-13",
                                                                                                                        "url": "string",
                                                                                                                        "mailjetTemplateName": "string",
                                                                                                                        "displayCode": "string",
                                                                                                                        "mailjetTemplateVars": {},
                                                                                                                        "mailjetTemplateEmail": null,
                                                                                                                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                        "name": "string",
                                                                                                                        "partition": null,
                                                                                                                        "display": "string",
                                                                                                                        "idInPartition": 124,
                                                                                                                        "recordName": "string",
                                                                                                                        "displayAttributes": [
                                                                                                                            {}
                                                                                                                        ],
                                                                                                                        "displayCodePartial": "string",
                                                                                                                        "displayArgs": [
                                                                                                                            "string"
                                                                                                                        ],
                                                                                                                        "breadcrumbParent": null,
                                                                                                                        "iconClass": "string",
                                                                                                                        "iconColour": "string"
                                                                                                                    }
                                                                                                                ],
                                                                                                                "overdueNotified": true,
                                                                                                                "inheritingGroupActivities": [
                                                                                                                    {
                                                                                                                        "id": 2,
                                                                                                                        "group": {
                                                                                                                            "id": 151,
                                                                                                                            "clientPartition": null,
                                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                            "name": "string",
                                                                                                                            "description": "string",
                                                                                                                            "studies": null,
                                                                                                                            "entityStudyGroups": [
                                                                                                                                {
                                                                                                                                    "id": 123,
                                                                                                                                    "entity": null,
                                                                                                                                    "purpose": "VI",
                                                                                                                                    "entityCostRole": {
                                                                                                                                        "id": 223,
                                                                                                                                        "display": "string",
                                                                                                                                        "journal": "MEM_S_CN",
                                                                                                                                        "name": "string",
                                                                                                                                        "url": "string",
                                                                                                                                        "partitionId": 172,
                                                                                                                                        "partition": null,
                                                                                                                                        "idInPartition": 35,
                                                                                                                                        "recordName": "string",
                                                                                                                                        "displayAttributes": [
                                                                                                                                            {}
                                                                                                                                        ],
                                                                                                                                        "displayCodePartial": "string",
                                                                                                                                        "displayArgs": [
                                                                                                                                            "string"
                                                                                                                                        ],
                                                                                                                                        "breadcrumbParent": null,
                                                                                                                                        "iconClass": "string",
                                                                                                                                        "iconColour": "string"
                                                                                                                                    },
                                                                                                                                    "purchaseOrderNumber": "string",
                                                                                                                                    "constituentEntity": null,
                                                                                                                                    "group": null,
                                                                                                                                    "constituent": null
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "overriddenStudies": null,
                                                                                                                            "activities": null,
                                                                                                                            "watchingUsers": null,
                                                                                                                            "comments": [
                                                                                                                                {
                                                                                                                                    "id": 32,
                                                                                                                                    "replyTo": null,
                                                                                                                                    "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "user": null,
                                                                                                                                    "contact": null,
                                                                                                                                    "text": "string",
                                                                                                                                    "published": true,
                                                                                                                                    "replies": null,
                                                                                                                                    "notifications": null,
                                                                                                                                    "calendarSource": "PRODUCT",
                                                                                                                                    "hidden": true,
                                                                                                                                    "reply": true,
                                                                                                                                    "greatestAncestor": null,
                                                                                                                                    "replyToIsUnpublished": true,
                                                                                                                                    "serverCreatedReadableDate": "string",
                                                                                                                                    "lastUpdatedBy": null,
                                                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "lastUpdatedById": 111,
                                                                                                                                    "name": "string",
                                                                                                                                    "partition": null,
                                                                                                                                    "display": "string",
                                                                                                                                    "idInPartition": 171,
                                                                                                                                    "recordName": "string",
                                                                                                                                    "displayAttributes": [
                                                                                                                                        {}
                                                                                                                                    ],
                                                                                                                                    "displayCodePartial": "string",
                                                                                                                                    "displayArgs": [
                                                                                                                                        "string"
                                                                                                                                    ],
                                                                                                                                    "breadcrumbParent": null,
                                                                                                                                    "iconClass": "string",
                                                                                                                                    "iconColour": "string",
                                                                                                                                    "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "allDay": true,
                                                                                                                                    "calendarExtendedProps": {}
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "studiesCount": 180,
                                                                                                                            "commentDisplayUrl": "string",
                                                                                                                            "watching": true,
                                                                                                                            "watchers": null,
                                                                                                                            "commentType": "string",
                                                                                                                            "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                                            "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                                                                            "url": "string",
                                                                                                                            "partitionId": 62,
                                                                                                                            "partition": null,
                                                                                                                            "display": "string",
                                                                                                                            "idInPartition": 293,
                                                                                                                            "recordName": "string",
                                                                                                                            "displayAttributes": [
                                                                                                                                {}
                                                                                                                            ],
                                                                                                                            "displayCodePartial": "string",
                                                                                                                            "displayArgs": [
                                                                                                                                "string"
                                                                                                                            ],
                                                                                                                            "breadcrumbParent": null,
                                                                                                                            "iconClass": "string",
                                                                                                                            "iconColour": "string",
                                                                                                                            "lastUpdatedById": 42
                                                                                                                        },
                                                                                                                        "name": "string",
                                                                                                                        "planned": "2022-04-13"
                                                                                                                    }
                                                                                                                ],
                                                                                                                "url": "string",
                                                                                                                "partitionId": 285,
                                                                                                                "commentCount": 86,
                                                                                                                "recordName": "string",
                                                                                                                "calendarStart": "2022-04-13T15:42:05.901Z",
                                                                                                                "allDay": true,
                                                                                                                "calendarExtendedProps": {},
                                                                                                                "commentType": "string",
                                                                                                                "commentDisplayUrl": "string",
                                                                                                                "daysOverdue": 6,
                                                                                                                "overdue": true,
                                                                                                                "inheritingGroupNames": [
                                                                                                                    "string"
                                                                                                                ],
                                                                                                                "multipleInheritanceDates": true,
                                                                                                                "fromTemplate": true,
                                                                                                                "autoPlannedAfterPreviousFallback": 279,
                                                                                                                "calendarSource": "PRODUCT",
                                                                                                                "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                "partition": null,
                                                                                                                "display": "string",
                                                                                                                "idInPartition": 154,
                                                                                                                "displayAttributes": [
                                                                                                                    {}
                                                                                                                ],
                                                                                                                "displayCodePartial": "string",
                                                                                                                "displayArgs": [
                                                                                                                    "string"
                                                                                                                ],
                                                                                                                "breadcrumbParent": null,
                                                                                                                "iconClass": "string",
                                                                                                                "iconColour": "string",
                                                                                                                "watchingUsers": null,
                                                                                                                "watching": true,
                                                                                                                "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                                "commentsEditPermission": "ROLE_PRE_AUTH"
                                                                                                            }
                                                                                                        ],
                                                                                                        "emptyCosts": true,
                                                                                                        "activityStudyNumber": "string"
                                                                                                    }
                                                                                                ],
                                                                                                "evaluations": [
                                                                                                    {
                                                                                                        "id": 209,
                                                                                                        "metric": {
                                                                                                            "id": 287,
                                                                                                            "name": "string"
                                                                                                        },
                                                                                                        "score": "VERY_POOR"
                                                                                                    }
                                                                                                ],
                                                                                                "evaluationNotes": "string",
                                                                                                "studyDirectors": null,
                                                                                                "lastUpdatedById": 2,
                                                                                                "name": "string",
                                                                                                "url": "string",
                                                                                                "partitionId": 61,
                                                                                                "partition": null,
                                                                                                "display": "string",
                                                                                                "idInPartition": 238,
                                                                                                "recordName": "string",
                                                                                                "displayAttributes": [
                                                                                                    {}
                                                                                                ],
                                                                                                "displayCodePartial": "string",
                                                                                                "displayArgs": [
                                                                                                    "string"
                                                                                                ],
                                                                                                "breadcrumbParent": null,
                                                                                                "iconClass": "string",
                                                                                                "iconColour": "string"
                                                                                            },
                                                                                            "role": {
                                                                                                "id": 249,
                                                                                                "name": "string"
                                                                                            },
                                                                                            "contact": null
                                                                                        }
                                                                                    ],
                                                                                    "analyticalSamples": [
                                                                                        {
                                                                                            "id": 20,
                                                                                            "study": null,
                                                                                            "referenceNumber": "string",
                                                                                            "batchNumber": "string",
                                                                                            "preparation": "2022-04-13",
                                                                                            "expiry": "2022-04-13",
                                                                                            "origin": null,
                                                                                            "contact": null,
                                                                                            "description": "string",
                                                                                            "folder": null,
                                                                                            "notes": "string",
                                                                                            "constituent": null,
                                                                                            "basisOfData": "ANALYTICAL_REPORT",
                                                                                            "analyticalMethods": [
                                                                                                {
                                                                                                    "id": 72,
                                                                                                    "analyticalSample": null,
                                                                                                    "analyticalMethod": "AAS"
                                                                                                }
                                                                                            ],
                                                                                            "analysis": "2022-04-13",
                                                                                            "linkedDocument": null,
                                                                                            "subConstituents": [
                                                                                                {
                                                                                                    "id": 118,
                                                                                                    "analyticalSample": null,
                                                                                                    "name": "string",
                                                                                                    "casNumber": "string",
                                                                                                    "ecNumber": "string",
                                                                                                    "carbonNumber": 169,
                                                                                                    "inclusionPercent": 10.12,
                                                                                                    "type": [
                                                                                                        {
                                                                                                            "id": 156,
                                                                                                            "subConstituent": null,
                                                                                                            "subConstituentType": {
                                                                                                                "id": 254,
                                                                                                                "typeText": "string"
                                                                                                            },
                                                                                                            "ordinalPosition": 36,
                                                                                                            "typeText": "string"
                                                                                                        }
                                                                                                    ],
                                                                                                    "typeText": "string",
                                                                                                    "exportIndex": 289
                                                                                                }
                                                                                            ],
                                                                                            "entity": null,
                                                                                            "studyId": 164,
                                                                                            "analyticalMethodsOnly": [
                                                                                                "AAS"
                                                                                            ],
                                                                                            "folderName": "string"
                                                                                        }
                                                                                    ],
                                                                                    "documentLinks": null,
                                                                                    "contactRecipients": [
                                                                                        {
                                                                                            "id": 192,
                                                                                            "type": "TO",
                                                                                            "firstName": "string",
                                                                                            "secondName": "string",
                                                                                            "emailAddress": "string",
                                                                                            "documentEmailInternal": null,
                                                                                            "contact": null,
                                                                                            "deleted": true,
                                                                                            "fullName": "string",
                                                                                            "domain": "string"
                                                                                        }
                                                                                    ],
                                                                                    "campaignContacts": [
                                                                                        {
                                                                                            "id": 74,
                                                                                            "clientPartition": null,
                                                                                            "campaign": {
                                                                                                "id": 20,
                                                                                                "clientPartition": null,
                                                                                                "name": "string",
                                                                                                "description": "string",
                                                                                                "startDate": "2022-04-13",
                                                                                                "endDate": "2022-04-13",
                                                                                                "menuName": "string",
                                                                                                "section": {
                                                                                                    "id": 141,
                                                                                                    "clientPartition": null,
                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                    "campaign": null,
                                                                                                    "constituent": null,
                                                                                                    "name": "string",
                                                                                                    "parentSection": null,
                                                                                                    "children": null,
                                                                                                    "expand": true,
                                                                                                    "deleted": true,
                                                                                                    "pages": [
                                                                                                        {
                                                                                                            "id": 264,
                                                                                                            "clientPartition": null,
                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                            "name": "string",
                                                                                                            "index": 67,
                                                                                                            "content": "string",
                                                                                                            "caretPosition": "string",
                                                                                                            "type": "COMPANY_INFO",
                                                                                                            "roles": [
                                                                                                                {
                                                                                                                    "id": 95,
                                                                                                                    "clientPartition": null,
                                                                                                                    "name": "string",
                                                                                                                    "description": "string",
                                                                                                                    "campaign": null,
                                                                                                                    "campaignContacts": null,
                                                                                                                    "pages": null,
                                                                                                                    "tasks": [
                                                                                                                        {
                                                                                                                            "id": 12,
                                                                                                                            "clientPartition": null,
                                                                                                                            "campaign": null,
                                                                                                                            "campaignContact": null,
                                                                                                                            "role": null,
                                                                                                                            "access": "PUBLIC",
                                                                                                                            "template": {
                                                                                                                                "id": 285,
                                                                                                                                "clientPartition": null,
                                                                                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                                "campaign": null,
                                                                                                                                "name": "string",
                                                                                                                                "instructions": "string",
                                                                                                                                "endingInstructions": "string",
                                                                                                                                "type": "DISCUSSION",
                                                                                                                                "fields": [
                                                                                                                                    {
                                                                                                                                        "id": 72,
                                                                                                                                        "template": null,
                                                                                                                                        "type": "BOOLEAN",
                                                                                                                                        "index": 84,
                                                                                                                                        "required": true,
                                                                                                                                        "range": true,
                                                                                                                                        "rangeMinimum": 10.12,
                                                                                                                                        "rangeMaximum": 10.12,
                                                                                                                                        "question": "string",
                                                                                                                                        "defaultValue": "string",
                                                                                                                                        "options": [
                                                                                                                                            {
                                                                                                                                                "id": 41,
                                                                                                                                                "template": null,
                                                                                                                                                "option": "string"
                                                                                                                                            }
                                                                                                                                        ]
                                                                                                                                    }
                                                                                                                                ],
                                                                                                                                "iconClass": "string",
                                                                                                                                "lastUpdatedById": 148,
                                                                                                                                "url": "string",
                                                                                                                                "partitionId": 50,
                                                                                                                                "partition": null,
                                                                                                                                "display": "string",
                                                                                                                                "idInPartition": 174,
                                                                                                                                "recordName": "string",
                                                                                                                                "displayAttributes": [
                                                                                                                                    {}
                                                                                                                                ],
                                                                                                                                "displayCodePartial": "string",
                                                                                                                                "displayArgs": [
                                                                                                                                    "string"
                                                                                                                                ],
                                                                                                                                "breadcrumbParent": null,
                                                                                                                                "iconColour": "string"
                                                                                                                            },
                                                                                                                            "dueByDate": "2022-04-13",
                                                                                                                            "closesOnDate": "2022-04-13",
                                                                                                                            "instructions": "string",
                                                                                                                            "endingInstructions": "string",
                                                                                                                            "name": "string",
                                                                                                                            "taskType": "DISCUSSION",
                                                                                                                            "document": null,
                                                                                                                            "documentTwo": null,
                                                                                                                            "documentLinks": [
                                                                                                                                {
                                                                                                                                    "id": {
                                                                                                                                        "taskId": 144,
                                                                                                                                        "documentId": 3,
                                                                                                                                        "documentPartitionId": 244,
                                                                                                                                        "document": null
                                                                                                                                    },
                                                                                                                                    "task": null,
                                                                                                                                    "document": null,
                                                                                                                                    "index": 219,
                                                                                                                                    "campaign": null
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "constituent": null,
                                                                                                                            "surveyFields": [
                                                                                                                                {
                                                                                                                                    "id": 179,
                                                                                                                                    "fieldType": "BOOLEAN",
                                                                                                                                    "name": "string",
                                                                                                                                    "defaultValue": "string",
                                                                                                                                    "selectOptionValues": [
                                                                                                                                        {
                                                                                                                                            "id": 236,
                                                                                                                                            "surveyField": null,
                                                                                                                                            "value": "string",
                                                                                                                                            "index": 253
                                                                                                                                        }
                                                                                                                                    ],
                                                                                                                                    "index": 125,
                                                                                                                                    "required": true,
                                                                                                                                    "range": true,
                                                                                                                                    "rangeMinimum": 10.12,
                                                                                                                                    "rangeMaximum": 10.12,
                                                                                                                                    "campaignContactTask": null,
                                                                                                                                    "surveyValues": [
                                                                                                                                        {
                                                                                                                                            "id": 229,
                                                                                                                                            "surveyField": null,
                                                                                                                                            "value": "string",
                                                                                                                                            "deleted": true,
                                                                                                                                            "campaignContactEvent": {
                                                                                                                                                "id": 16,
                                                                                                                                                "clientPartition": null,
                                                                                                                                                "task": null,
                                                                                                                                                "contact": null,
                                                                                                                                                "eventDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                                "completed": true,
                                                                                                                                                "surveyValues": null,
                                                                                                                                                "documentDates": [
                                                                                                                                                    {
                                                                                                                                                        "id": 261,
                                                                                                                                                        "document": null,
                                                                                                                                                        "dateAccessed": "2022-04-13T15:42:05.901Z",
                                                                                                                                                        "events": null
                                                                                                                                                    }
                                                                                                                                                ],
                                                                                                                                                "useSurvey": {
                                                                                                                                                    "id": 138,
                                                                                                                                                    "clientPartition": null,
                                                                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                                                    "event": null,
                                                                                                                                                    "contact": null,
                                                                                                                                                    "campaign": null,
                                                                                                                                                    "entity": null,
                                                                                                                                                    "company": "string",
                                                                                                                                                    "referrer": null,
                                                                                                                                                    "referralCode": "string",
                                                                                                                                                    "role": null,
                                                                                                                                                    "date": "2022-04-13",
                                                                                                                                                    "constituent": null,
                                                                                                                                                    "status": "ACTIVE",
                                                                                                                                                    "importedTonnage": 10.12,
                                                                                                                                                    "exportedTonnage": 10.12,
                                                                                                                                                    "orTonnage": 10.12,
                                                                                                                                                    "useTonnages": [
                                                                                                                                                        {
                                                                                                                                                            "id": 221,
                                                                                                                                                            "useSurvey": null,
                                                                                                                                                            "use": "6d13394f-226b-4bfb-9a81-8ca07167c817",
                                                                                                                                                            "useNameFallback": "string",
                                                                                                                                                            "useLifeCycleFallback": "string",
                                                                                                                                                            "tonnage": 10.12,
                                                                                                                                                            "maxSiteTonnage": 10.12,
                                                                                                                                                            "notes": "string",
                                                                                                                                                            "exposureMonitored": true,
                                                                                                                                                            "proceduresDocumented": true,
                                                                                                                                                            "legalEmissions": true,
                                                                                                                                                            "functions": [
                                                                                                                                                                {
                                                                                                                                                                    "id": 96,
                                                                                                                                                                    "useSurveyTonnage": null,
                                                                                                                                                                    "functionId": 121,
                                                                                                                                                                    "functionNameFallback": "string"
                                                                                                                                                                }
                                                                                                                                                            ],
                                                                                                                                                            "tonnageDetails": [
                                                                                                                                                                {
                                                                                                                                                                    "id": 173,
                                                                                                                                                                    "useSurveyTonnage": null,
                                                                                                                                                                    "productCategory": "string",
                                                                                                                                                                    "processCategory": 195,
                                                                                                                                                                    "localVentilation": true,
                                                                                                                                                                    "roomVentilation": "BASIC",
                                                                                                                                                                    "additionalMeasures": [
                                                                                                                                                                        "CLOSED_LOOP_SAMPLING"
                                                                                                                                                                    ],
                                                                                                                                                                    "goggles": true,
                                                                                                                                                                    "masks": "YES_10",
                                                                                                                                                                    "gloves": "YES_80",
                                                                                                                                                                    "location": "INDOOR",
                                                                                                                                                                    "duration": "BELOW_15",
                                                                                                                                                                    "temperature": 10.12,
                                                                                                                                                                    "concentrationRange": "BELOW_1",
                                                                                                                                                                    "concentration": 10.12
                                                                                                                                                                }
                                                                                                                                                            ],
                                                                                                                                                            "sdsFileIds": [
                                                                                                                                                                "6ceef610-d7c1-479e-8667-88ecd294c1fb"
                                                                                                                                                            ],
                                                                                                                                                            "sdsFileNames": [
                                                                                                                                                                "string"
                                                                                                                                                            ]
                                                                                                                                                        }
                                                                                                                                                    ],
                                                                                                                                                    "notes": "string",
                                                                                                                                                    "empty": true,
                                                                                                                                                    "entities": null,
                                                                                                                                                    "ceasedManufacture": true,
                                                                                                                                                    "onlyRepresentative": true,
                                                                                                                                                    "lastUpdatedById": 237,
                                                                                                                                                    "name": "string",
                                                                                                                                                    "url": "string",
                                                                                                                                                    "partitionId": 74,
                                                                                                                                                    "partition": null,
                                                                                                                                                    "display": "string",
                                                                                                                                                    "idInPartition": 143,
                                                                                                                                                    "recordName": "string",
                                                                                                                                                    "displayAttributes": [
                                                                                                                                                        {}
                                                                                                                                                    ],
                                                                                                                                                    "displayCodePartial": "string",
                                                                                                                                                    "displayArgs": [
                                                                                                                                                        "string"
                                                                                                                                                    ],
                                                                                                                                                    "breadcrumbParent": null,
                                                                                                                                                    "iconClass": "string",
                                                                                                                                                    "iconColour": "string"
                                                                                                                                                },
                                                                                                                                                "fileId": "090dcf8a-fbe1-4a19-a1a6-9bf6f43e083f",
                                                                                                                                                "url": "string",
                                                                                                                                                "campaign": null,
                                                                                                                                                "display": "string",
                                                                                                                                                "responses": [
                                                                                                                                                    {
                                                                                                                                                        "id": 216,
                                                                                                                                                        "surveyField": null,
                                                                                                                                                        "value": "string",
                                                                                                                                                        "deleted": true,
                                                                                                                                                        "fieldType": "BOOLEAN",
                                                                                                                                                        "file": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ=",
                                                                                                                                                        "fileName": "string",
                                                                                                                                                        "valueAsUUID": "feb4871b-28b7-4e5d-9662-fe0b9491f58a",
                                                                                                                                                        "valueAsDate": "2022-04-13",
                                                                                                                                                        "valueSanitized": "string"
                                                                                                                                                    }
                                                                                                                                                ],
                                                                                                                                                "deleted": true,
                                                                                                                                                "calendarStart": "2022-04-13T15:42:05.901Z",
                                                                                                                                                "responsesDeleted": true,
                                                                                                                                                "downloadedDocumentIds": [
                                                                                                                                                    83
                                                                                                                                                ],
                                                                                                                                                "downloadedOldDocumentsOf": [
                                                                                                                                                    288
                                                                                                                                                ],
                                                                                                                                                "calendarSource": "PRODUCT",
                                                                                                                                                "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                                                "allDay": true,
                                                                                                                                                "calendarDisplay": "string",
                                                                                                                                                "calendarExtendedProps": {},
                                                                                                                                                "name": "string",
                                                                                                                                                "partitionId": 128,
                                                                                                                                                "partition": null,
                                                                                                                                                "idInPartition": 74,
                                                                                                                                                "recordName": "string",
                                                                                                                                                "displayAttributes": [
                                                                                                                                                    {}
                                                                                                                                                ],
                                                                                                                                                "displayCodePartial": "string",
                                                                                                                                                "displayArgs": [
                                                                                                                                                    "string"
                                                                                                                                                ],
                                                                                                                                                "breadcrumbParent": null,
                                                                                                                                                "iconClass": "string",
                                                                                                                                                "iconColour": "string"
                                                                                                                                            },
                                                                                                                                            "fieldType": "BOOLEAN",
                                                                                                                                            "file": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ=",
                                                                                                                                            "fileName": "string",
                                                                                                                                            "valueAsUUID": "92cf4c1d-59db-4f97-ac2c-b6e749d6a9c4",
                                                                                                                                            "valueAsDate": "2022-04-13",
                                                                                                                                            "valueSanitized": "string"
                                                                                                                                        }
                                                                                                                                    ],
                                                                                                                                    "nameIssues": [
                                                                                                                                        {
                                                                                                                                            "uuid": "e146f7e9-4718-4142-b128-d37cef3f910a",
                                                                                                                                            "error": "string",
                                                                                                                                            "html": "string"
                                                                                                                                        }
                                                                                                                                    ],
                                                                                                                                    "nameContainsHtml": true,
                                                                                                                                    "nameAsText": "string",
                                                                                                                                    "selectValuesArray": [
                                                                                                                                        "string"
                                                                                                                                    ]
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "entityRoles": null,
                                                                                                                            "uses": [
                                                                                                                                "98f0ae45-e194-4742-a3d3-fce4cf330b75"
                                                                                                                            ],
                                                                                                                            "user": null,
                                                                                                                            "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                                            "uploadNotificationEmail": "string",
                                                                                                                            "pages": null,
                                                                                                                            "taskGroupLinks": [
                                                                                                                                {
                                                                                                                                    "id": {
                                                                                                                                        "taskGroupId": 35,
                                                                                                                                        "taskId": 277
                                                                                                                                    },
                                                                                                                                    "taskGroup": {
                                                                                                                                        "id": 59,
                                                                                                                                        "clientPartition": null,
                                                                                                                                        "name": "string",
                                                                                                                                        "description": "string",
                                                                                                                                        "campaign": null,
                                                                                                                                        "taskLinks": null,
                                                                                                                                        "pages": [
                                                                                                                                            {
                                                                                                                                                "id": 248,
                                                                                                                                                "taskGroup": null,
                                                                                                                                                "page": null,
                                                                                                                                                "cutOffDate": "2022-04-13",
                                                                                                                                                "index": 106
                                                                                                                                            }
                                                                                                                                        ],
                                                                                                                                        "url": "string",
                                                                                                                                        "breadcrumbParent": null,
                                                                                                                                        "iconClass": "string",
                                                                                                                                        "descriptionContainsHtml": true,
                                                                                                                                        "partitionId": 247,
                                                                                                                                        "partition": null,
                                                                                                                                        "display": "string",
                                                                                                                                        "idInPartition": 3,
                                                                                                                                        "recordName": "string",
                                                                                                                                        "displayAttributes": [
                                                                                                                                            {}
                                                                                                                                        ],
                                                                                                                                        "displayCodePartial": "string",
                                                                                                                                        "displayArgs": [
                                                                                                                                            "string"
                                                                                                                                        ],
                                                                                                                                        "iconColour": "string"
                                                                                                                                    },
                                                                                                                                    "task": null,
                                                                                                                                    "index": 241
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "deleted": true,
                                                                                                                            "watchingUsers": null,
                                                                                                                            "comments": [
                                                                                                                                {
                                                                                                                                    "id": 64,
                                                                                                                                    "replyTo": null,
                                                                                                                                    "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "user": null,
                                                                                                                                    "contact": null,
                                                                                                                                    "text": "string",
                                                                                                                                    "published": true,
                                                                                                                                    "replies": null,
                                                                                                                                    "notifications": null,
                                                                                                                                    "calendarSource": "PRODUCT",
                                                                                                                                    "hidden": true,
                                                                                                                                    "reply": true,
                                                                                                                                    "greatestAncestor": null,
                                                                                                                                    "replyToIsUnpublished": true,
                                                                                                                                    "serverCreatedReadableDate": "string",
                                                                                                                                    "lastUpdatedBy": null,
                                                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "lastUpdatedById": 3,
                                                                                                                                    "name": "string",
                                                                                                                                    "partition": null,
                                                                                                                                    "display": "string",
                                                                                                                                    "idInPartition": 144,
                                                                                                                                    "recordName": "string",
                                                                                                                                    "displayAttributes": [
                                                                                                                                        {}
                                                                                                                                    ],
                                                                                                                                    "displayCodePartial": "string",
                                                                                                                                    "displayArgs": [
                                                                                                                                        "string"
                                                                                                                                    ],
                                                                                                                                    "breadcrumbParent": null,
                                                                                                                                    "iconClass": "string",
                                                                                                                                    "iconColour": "string",
                                                                                                                                    "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "allDay": true,
                                                                                                                                    "calendarExtendedProps": {}
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "events": null,
                                                                                                                            "uploadNotifications": [
                                                                                                                                {
                                                                                                                                    "id": 282,
                                                                                                                                    "partitionId": 37,
                                                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "user": null,
                                                                                                                                    "read": true,
                                                                                                                                    "campaignContactTask": null,
                                                                                                                                    "contact": null,
                                                                                                                                    "fileName": "string",
                                                                                                                                    "baseUrl": "string",
                                                                                                                                    "url": "string",
                                                                                                                                    "mailjetTemplateName": "string",
                                                                                                                                    "displayCode": "string",
                                                                                                                                    "mailjetTemplateVars": {},
                                                                                                                                    "mailjetTemplateEmail": null,
                                                                                                                                    "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "name": "string",
                                                                                                                                    "partition": null,
                                                                                                                                    "display": "string",
                                                                                                                                    "idInPartition": 61,
                                                                                                                                    "recordName": "string",
                                                                                                                                    "displayAttributes": [
                                                                                                                                        {}
                                                                                                                                    ],
                                                                                                                                    "displayCodePartial": "string",
                                                                                                                                    "displayArgs": [
                                                                                                                                        "string"
                                                                                                                                    ],
                                                                                                                                    "breadcrumbParent": null,
                                                                                                                                    "iconClass": "string",
                                                                                                                                    "iconColour": "string"
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "surveyNotifications": [
                                                                                                                                {
                                                                                                                                    "id": 246,
                                                                                                                                    "partitionId": 208,
                                                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "user": null,
                                                                                                                                    "read": true,
                                                                                                                                    "campaignContactTask": null,
                                                                                                                                    "contact": null,
                                                                                                                                    "baseUrl": "string",
                                                                                                                                    "url": "string",
                                                                                                                                    "mailjetTemplateName": "string",
                                                                                                                                    "taskUrl": "string",
                                                                                                                                    "displayCode": "string",
                                                                                                                                    "mailjetTemplateVars": {},
                                                                                                                                    "mailjetTemplateEmail": null,
                                                                                                                                    "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "name": "string",
                                                                                                                                    "partition": null,
                                                                                                                                    "display": "string",
                                                                                                                                    "idInPartition": 177,
                                                                                                                                    "recordName": "string",
                                                                                                                                    "displayAttributes": [
                                                                                                                                        {}
                                                                                                                                    ],
                                                                                                                                    "displayCodePartial": "string",
                                                                                                                                    "displayArgs": [
                                                                                                                                        "string"
                                                                                                                                    ],
                                                                                                                                    "breadcrumbParent": null,
                                                                                                                                    "iconClass": "string",
                                                                                                                                    "iconColour": "string"
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "iuclidReviewNotifications": [
                                                                                                                                {
                                                                                                                                    "id": 273,
                                                                                                                                    "partitionId": 148,
                                                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "user": null,
                                                                                                                                    "read": true,
                                                                                                                                    "campaignContactTask": null,
                                                                                                                                    "contact": null,
                                                                                                                                    "baseUrl": "string",
                                                                                                                                    "url": "string",
                                                                                                                                    "mailjetTemplateName": "string",
                                                                                                                                    "approval": true,
                                                                                                                                    "displayCode": "string",
                                                                                                                                    "mailjetTemplateVars": {},
                                                                                                                                    "mailjetTemplateEmail": null,
                                                                                                                                    "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "name": "string",
                                                                                                                                    "partition": null,
                                                                                                                                    "display": "string",
                                                                                                                                    "idInPartition": 253,
                                                                                                                                    "recordName": "string",
                                                                                                                                    "displayAttributes": [
                                                                                                                                        {}
                                                                                                                                    ],
                                                                                                                                    "displayCodePartial": "string",
                                                                                                                                    "displayArgs": [
                                                                                                                                        "string"
                                                                                                                                    ],
                                                                                                                                    "breadcrumbParent": null,
                                                                                                                                    "iconClass": "string",
                                                                                                                                    "iconColour": "string"
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "documentsList": null,
                                                                                                                            "sendCustomSurveyNotificationEmail": true,
                                                                                                                            "showDocumentNameOnDownloads": true,
                                                                                                                            "public": true,
                                                                                                                            "closed": true,
                                                                                                                            "groups": null,
                                                                                                                            "url": "string",
                                                                                                                            "archived": true,
                                                                                                                            "letterOfAccessRelated": true,
                                                                                                                            "firstActiveDocument": null,
                                                                                                                            "containingArchivedDocument": true,
                                                                                                                            "instructionsIssues": null,
                                                                                                                            "endingInstructionsIssues": null,
                                                                                                                            "recordName": "string",
                                                                                                                            "breadcrumbParent": null,
                                                                                                                            "iconClass": "string",
                                                                                                                            "webPortalDisplays": "string",
                                                                                                                            "campaignIfUnrestricted": null,
                                                                                                                            "firstActiveIuclid": {
                                                                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                                "id": 167,
                                                                                                                                "partition": null,
                                                                                                                                "title": "string",
                                                                                                                                "description": "string",
                                                                                                                                "fileName": "string",
                                                                                                                                "originalFileName": "string",
                                                                                                                                "link": true,
                                                                                                                                "fileSize": 206,
                                                                                                                                "uploadDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                "documentCreationDate": "2022-04-13",
                                                                                                                                "fileType": "UNKNOWN",
                                                                                                                                "docType": "DOCUMENT",
                                                                                                                                "expiryDate": "2022-04-13",
                                                                                                                                "retentionDate": "2022-04-13",
                                                                                                                                "permanent": true,
                                                                                                                                "products": null,
                                                                                                                                "constituents": null,
                                                                                                                                "categoryGroups": null,
                                                                                                                                "productGroups": null,
                                                                                                                                "entities": null,
                                                                                                                                "documentEntityGroups": null,
                                                                                                                                "entityGroups": null,
                                                                                                                                "documentContactGroups": null,
                                                                                                                                "contactGroups": null,
                                                                                                                                "documentTagSet": null,
                                                                                                                                "linkedDocuments": null,
                                                                                                                                "version": 169,
                                                                                                                                "versionIdentifier": "string",
                                                                                                                                "currentDocumentId": 184,
                                                                                                                                "currentDocument": null,
                                                                                                                                "newsItem": true,
                                                                                                                                "deleted": true,
                                                                                                                                "deletedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                "fileId": "6b0fcd1e-9aa0-4f85-b4b9-07ef3a7814ad",
                                                                                                                                "watchingUsers": null,
                                                                                                                                "expiryNotifications": [
                                                                                                                                    {
                                                                                                                                        "id": 79,
                                                                                                                                        "partitionId": 182,
                                                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                        "user": null,
                                                                                                                                        "read": true,
                                                                                                                                        "document": null,
                                                                                                                                        "expiryDate": "2022-04-13",
                                                                                                                                        "url": "string",
                                                                                                                                        "mailjetTemplateName": "string",
                                                                                                                                        "displayCode": "string",
                                                                                                                                        "mailjetTemplateVars": {},
                                                                                                                                        "daysUntilExpiry": 105,
                                                                                                                                        "drc": true,
                                                                                                                                        "mailjetTemplateEmail": null,
                                                                                                                                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                        "name": "string",
                                                                                                                                        "partition": null,
                                                                                                                                        "display": "string",
                                                                                                                                        "idInPartition": 298,
                                                                                                                                        "recordName": "string",
                                                                                                                                        "displayAttributes": [
                                                                                                                                            {}
                                                                                                                                        ],
                                                                                                                                        "displayCodePartial": "string",
                                                                                                                                        "displayArgs": [
                                                                                                                                            "string"
                                                                                                                                        ],
                                                                                                                                        "breadcrumbParent": null,
                                                                                                                                        "iconClass": "string",
                                                                                                                                        "iconColour": "string"
                                                                                                                                    }
                                                                                                                                ],
                                                                                                                                "retentionNotifications": [
                                                                                                                                    {
                                                                                                                                        "id": 37,
                                                                                                                                        "partitionId": 159,
                                                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                        "user": null,
                                                                                                                                        "read": true,
                                                                                                                                        "document": null,
                                                                                                                                        "retentionDate": "2022-04-13",
                                                                                                                                        "url": "string",
                                                                                                                                        "mailjetTemplateName": "string",
                                                                                                                                        "displayCode": "string",
                                                                                                                                        "mailjetTemplateVars": {},
                                                                                                                                        "daysUntilExpiry": 215,
                                                                                                                                        "mailjetTemplateEmail": null,
                                                                                                                                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                        "name": "string",
                                                                                                                                        "partition": null,
                                                                                                                                        "display": "string",
                                                                                                                                        "idInPartition": 247,
                                                                                                                                        "recordName": "string",
                                                                                                                                        "displayAttributes": [
                                                                                                                                            {}
                                                                                                                                        ],
                                                                                                                                        "displayCodePartial": "string",
                                                                                                                                        "displayArgs": [
                                                                                                                                            "string"
                                                                                                                                        ],
                                                                                                                                        "breadcrumbParent": null,
                                                                                                                                        "iconClass": "string",
                                                                                                                                        "iconColour": "string"
                                                                                                                                    }
                                                                                                                                ],
                                                                                                                                "notifyEmail": "string",
                                                                                                                                "expirationNotified": true,
                                                                                                                                "retentionNotified": true,
                                                                                                                                "folders": null,
                                                                                                                                "taskLinks": null,
                                                                                                                                "taskTwoLinks": null,
                                                                                                                                "downloadTaskLinks": null,
                                                                                                                                "constituentTonnages": [
                                                                                                                                    {
                                                                                                                                        "id": 32,
                                                                                                                                        "reachLegislation": "EU_REACH",
                                                                                                                                        "registration": {
                                                                                                                                            "id": 72,
                                                                                                                                            "constituent": null,
                                                                                                                                            "forEntity": null,
                                                                                                                                            "reachLegislation": "EU_REACH",
                                                                                                                                            "legalEntity": null,
                                                                                                                                            "ecName": "string",
                                                                                                                                            "ecNumber": "string",
                                                                                                                                            "submissionNumber": "string",
                                                                                                                                            "registrationNumber": "string",
                                                                                                                                            "registrationName": "string",
                                                                                                                                            "registrationDate": "2022-04-13",
                                                                                                                                            "registrationNotes": "string",
                                                                                                                                            "publicName": "string",
                                                                                                                                            "submissionDate": "2022-04-13",
                                                                                                                                            "uclidID": "string",
                                                                                                                                            "reachRole": "MANUFACTURER",
                                                                                                                                            "reachSubstanceTypeComposition": "MONO_CONSTITUENT",
                                                                                                                                            "substanceTypeCompositionOther": "string",
                                                                                                                                            "reachSubstanceTypeOrigin": "ELEMENT",
                                                                                                                                            "substanceTypeOriginOther": "string",
                                                                                                                                            "originEntity": null,
                                                                                                                                            "onlyRepresentative": null,
                                                                                                                                            "preregistrationName": "string",
                                                                                                                                            "preregistrationNumber": "string",
                                                                                                                                            "preregistrationDate": "2022-04-13",
                                                                                                                                            "preregisteredTonnageBand": "BAND_1",
                                                                                                                                            "notPreregistered": "string",
                                                                                                                                            "exemptionType": "EXEMPTION",
                                                                                                                                            "exemption": "string",
                                                                                                                                            "exemptionClaimed": "string",
                                                                                                                                            "exemptionComment": "string",
                                                                                                                                            "reachITRegistrations": [
                                                                                                                                                {
                                                                                                                                                    "id": 221,
                                                                                                                                                    "reachRegistration": null,
                                                                                                                                                    "dateSubmitted": "2022-04-13",
                                                                                                                                                    "dateIssued": "2022-04-13",
                                                                                                                                                    "dateAccepted": "2022-04-13",
                                                                                                                                                    "reachDossierType": "A",
                                                                                                                                                    "tonnageBand": "BAND1",
                                                                                                                                                    "reason": "CEASE_OF_MANUFACTURE",
                                                                                                                                                    "notes": "string",
                                                                                                                                                    "iuclidDossierReference": "string",
                                                                                                                                                    "submissionNumber": "string",
                                                                                                                                                    "passedPipeline": true,
                                                                                                                                                    "supportingDocument": null,
                                                                                                                                                    "partitionId": 4,
                                                                                                                                                    "constituent": null,
                                                                                                                                                    "forEntity": null,
                                                                                                                                                    "leadRegistrant": null
                                                                                                                                                }
                                                                                                                                            ],
                                                                                                                                            "registeredTonnageBands": [
                                                                                                                                                {
                                                                                                                                                    "id": 57,
                                                                                                                                                    "reachRegistration": null,
                                                                                                                                                    "registeredTonnageBand": "BAND_1",
                                                                                                                                                    "start": "2022-04-13",
                                                                                                                                                    "url": "string",
                                                                                                                                                    "calendarStart": "2022-04-13T15:42:05.901Z",
                                                                                                                                                    "allDay": true,
                                                                                                                                                    "calendarDisplay": "string",
                                                                                                                                                    "calendarSource": "PRODUCT",
                                                                                                                                                    "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                                                    "calendarExtendedProps": {},
                                                                                                                                                    "name": "string",
                                                                                                                                                    "partitionId": 108,
                                                                                                                                                    "partition": null,
                                                                                                                                                    "display": "string",
                                                                                                                                                    "idInPartition": 11,
                                                                                                                                                    "recordName": "string",
                                                                                                                                                    "displayAttributes": [
                                                                                                                                                        {}
                                                                                                                                                    ],
                                                                                                                                                    "displayCodePartial": "string",
                                                                                                                                                    "displayArgs": [
                                                                                                                                                        "string"
                                                                                                                                                    ],
                                                                                                                                                    "breadcrumbParent": null,
                                                                                                                                                    "iconClass": "string",
                                                                                                                                                    "iconColour": "string"
                                                                                                                                                }
                                                                                                                                            ],
                                                                                                                                            "preregistered": true,
                                                                                                                                            "enquiryNumber": "string",
                                                                                                                                            "ppordNumber": "string",
                                                                                                                                            "submissionType": "GRANDFATHERED",
                                                                                                                                            "reachDossierType": "A",
                                                                                                                                            "constituentTonnages": null,
                                                                                                                                            "partitionId": 55,
                                                                                                                                            "currentTonnageBandToImport": "BAND_1",
                                                                                                                                            "lastUpdatedBy": null,
                                                                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z"
                                                                                                                                        },
                                                                                                                                        "percentage": 10.12,
                                                                                                                                        "constituent": null,
                                                                                                                                        "entryYear": 172,
                                                                                                                                        "forecast": true,
                                                                                                                                        "tonnesOwnProduction": 10.12,
                                                                                                                                        "tonnesOwnImport": 10.12,
                                                                                                                                        "site": null,
                                                                                                                                        "notes": "string",
                                                                                                                                        "enteredDate": "2022-04-13",
                                                                                                                                        "substanceOrUnknown": 10.12,
                                                                                                                                        "monomerInAPolymer": 10.12,
                                                                                                                                        "mixture": 10.12,
                                                                                                                                        "inAnArticle": 10.12,
                                                                                                                                        "notInAnArticle": 10.12,
                                                                                                                                        "document": null,
                                                                                                                                        "user": null,
                                                                                                                                        "lastUpdated": "2022-04-13",
                                                                                                                                        "deleted": true,
                                                                                                                                        "forEntity": null
                                                                                                                                    }
                                                                                                                                ],
                                                                                                                                "productTonnages": [
                                                                                                                                    {
                                                                                                                                        "id": 124,
                                                                                                                                        "reachLegislation": "EU_REACH",
                                                                                                                                        "forEntity": null,
                                                                                                                                        "product": null,
                                                                                                                                        "entryYear": 120,
                                                                                                                                        "forecast": true,
                                                                                                                                        "notes": "string",
                                                                                                                                        "enteredDate": "2022-04-13",
                                                                                                                                        "substanceOrUnknown": 10.12,
                                                                                                                                        "monomerInAPolymer": 10.12,
                                                                                                                                        "mixture": 10.12,
                                                                                                                                        "inAnArticle": 10.12,
                                                                                                                                        "notInAnArticle": 10.12,
                                                                                                                                        "document": null,
                                                                                                                                        "tonnesManufactured": 10.12,
                                                                                                                                        "tonnesImported": 10.12,
                                                                                                                                        "party": null,
                                                                                                                                        "user": null,
                                                                                                                                        "lastUpdated": "2022-04-13",
                                                                                                                                        "deleted": true
                                                                                                                                    }
                                                                                                                                ],
                                                                                                                                "comments": [
                                                                                                                                    {
                                                                                                                                        "id": 199,
                                                                                                                                        "replyTo": null,
                                                                                                                                        "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                        "user": null,
                                                                                                                                        "contact": null,
                                                                                                                                        "text": "string",
                                                                                                                                        "published": true,
                                                                                                                                        "replies": null,
                                                                                                                                        "notifications": null,
                                                                                                                                        "node": {
                                                                                                                                            "id": 225,
                                                                                                                                            "code": "string",
                                                                                                                                            "forType": "string",
                                                                                                                                            "title": "string",
                                                                                                                                            "matrix": true,
                                                                                                                                            "children": null,
                                                                                                                                            "records": [
                                                                                                                                                {
                                                                                                                                                    "type": "DOCUMENT",
                                                                                                                                                    "iuclidVersion": "string",
                                                                                                                                                    "key": "string",
                                                                                                                                                    "name": "string",
                                                                                                                                                    "documentType": "string",
                                                                                                                                                    "subType": "string",
                                                                                                                                                    "orderInSectionNo": "string",
                                                                                                                                                    "definitionVersion": "string",
                                                                                                                                                    "creationDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                                    "lastModificationDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                                    "submissionType": "string",
                                                                                                                                                    "submissionTypeVersion": "string",
                                                                                                                                                    "submittingLegalEntity": "string",
                                                                                                                                                    "dossier": null,
                                                                                                                                                    "dossierSubjectKey": "string",
                                                                                                                                                    "dossierSubject": null,
                                                                                                                                                    "i5Origin": true,
                                                                                                                                                    "creationTool": "string",
                                                                                                                                                    "snapshotCreationTool": "string",
                                                                                                                                                    "href": "string",
                                                                                                                                                    "attachments": null,
                                                                                                                                                    "literatureDocuments": null,
                                                                                                                                                    "otherReferences": null,
                                                                                                                                                    "templates": null,
                                                                                                                                                    "categories": null,
                                                                                                                                                    "records": {},
                                                                                                                                                    "tree": null,
                                                                                                                                                    "ownerLegalEntity": null,
                                                                                                                                                    "refSubstance": null,
                                                                                                                                                    "substances": null,
                                                                                                                                                    "containerId": "string",
                                                                                                                                                    "i6CategoryDocumentDefinitionIdentifiers": [
                                                                                                                                                        {
                                                                                                                                                            "documentType": "string",
                                                                                                                                                            "documentSubType": "string"
                                                                                                                                                        }
                                                                                                                                                    ],
                                                                                                                                                    "changeType": "ADDED",
                                                                                                                                                    "commentCount": 270,
                                                                                                                                                    "descendantComments": true,
                                                                                                                                                    "content": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ=",
                                                                                                                                                    "subject": null,
                                                                                                                                                    "definition": "string",
                                                                                                                                                    "template": true,
                                                                                                                                                    "uuid": "string",
                                                                                                                                                    "display": "string",
                                                                                                                                                    "category": true,
                                                                                                                                                    "creationDateFromString": "string",
                                                                                                                                                    "lastModificationDateFromString": "string",
                                                                                                                                                    "substance": true,
                                                                                                                                                    "idString": "string",
                                                                                                                                                    "endpointSummary": true
                                                                                                                                                }
                                                                                                                                            ],
                                                                                                                                            "changeType": "ADDED",
                                                                                                                                            "commentCount": 56,
                                                                                                                                            "descendantComments": true,
                                                                                                                                            "display": "string",
                                                                                                                                            "idString": "string"
                                                                                                                                        },
                                                                                                                                        "wrapperId": "string",
                                                                                                                                        "calendarSource": "PRODUCT",
                                                                                                                                        "forTocEntry": true,
                                                                                                                                        "name": "string",
                                                                                                                                        "partition": null,
                                                                                                                                        "display": "string",
                                                                                                                                        "idInPartition": 159,
                                                                                                                                        "recordName": "string",
                                                                                                                                        "displayAttributes": [
                                                                                                                                            {}
                                                                                                                                        ],
                                                                                                                                        "displayCodePartial": "string",
                                                                                                                                        "displayArgs": [
                                                                                                                                            "string"
                                                                                                                                        ],
                                                                                                                                        "breadcrumbParent": null,
                                                                                                                                        "iconClass": "string",
                                                                                                                                        "iconColour": "string",
                                                                                                                                        "hidden": true,
                                                                                                                                        "reply": true,
                                                                                                                                        "greatestAncestor": null,
                                                                                                                                        "replyToIsUnpublished": true,
                                                                                                                                        "serverCreatedReadableDate": "string",
                                                                                                                                        "lastUpdatedBy": null,
                                                                                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                                        "lastUpdatedById": 246,
                                                                                                                                        "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                                        "allDay": true,
                                                                                                                                        "calendarExtendedProps": {}
                                                                                                                                    }
                                                                                                                                ],
                                                                                                                                "searchedVia": null,
                                                                                                                                "integration": {
                                                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "id": 237,
                                                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "type": "BOCOUNT_EXPORT_INVOICES",
                                                                                                                                    "name": "string",
                                                                                                                                    "host": "string",
                                                                                                                                    "principal": "string",
                                                                                                                                    "credential": "string",
                                                                                                                                    "token": "string",
                                                                                                                                    "tokenTransient": "string",
                                                                                                                                    "tokenExpires": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "refreshToken": "string",
                                                                                                                                    "authType": "PLAIN",
                                                                                                                                    "entity": null,
                                                                                                                                    "iuclidDocuments": null,
                                                                                                                                    "display": "string",
                                                                                                                                    "tokenExpired": true,
                                                                                                                                    "tokenEncrypted": "string",
                                                                                                                                    "refreshTokenEncrypted": "string",
                                                                                                                                    "credentialEncrypted": "string",
                                                                                                                                    "refreshTokenExpired": true
                                                                                                                                },
                                                                                                                                "IUCLIDAuthor": "string",
                                                                                                                                "legalEntity": "string",
                                                                                                                                "creationDate": "2022-04-13",
                                                                                                                                "uuid": "string",
                                                                                                                                "context": {
                                                                                                                                    "id": 155,
                                                                                                                                    "provider": "string",
                                                                                                                                    "identifier": "string",
                                                                                                                                    "title": "string",
                                                                                                                                    "applicableFor": "string",
                                                                                                                                    "tree": "string",
                                                                                                                                    "key": "string"
                                                                                                                                },
                                                                                                                                "manifest": {
                                                                                                                                    "title": "string",
                                                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                    "author": "string",
                                                                                                                                    "application": "string",
                                                                                                                                    "submissionTypeString": "string",
                                                                                                                                    "context": null,
                                                                                                                                    "archiveType": "string",
                                                                                                                                    "legislation": {},
                                                                                                                                    "comment": "string",
                                                                                                                                    "baseDocumentUuid": "string",
                                                                                                                                    "baseDocument": null,
                                                                                                                                    "treeName": "string",
                                                                                                                                    "relevantDocumentType": "string"
                                                                                                                                },
                                                                                                                                "iuclidauthor": "string",
                                                                                                                                "index": 36,
                                                                                                                                "relatedDocumentConstituents": null,
                                                                                                                                "relatedDocumentEntities": null,
                                                                                                                                "relatedDocumentProductGroups": null,
                                                                                                                                "relatedDocumentProducts": null,
                                                                                                                                "relatedDocumentContactGroups": null,
                                                                                                                                "partitionId": 150
                                                                                                                            },
                                                                                                                            "commentType": "string",
                                                                                                                            "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                                            "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                                                                            "commentDisplayUrl": "string",
                                                                                                                            "watching": true,
                                                                                                                            "watchers": null,
                                                                                                                            "partitionId": 250,
                                                                                                                            "partition": null,
                                                                                                                            "display": "string",
                                                                                                                            "idInPartition": 148,
                                                                                                                            "displayAttributes": [
                                                                                                                                {}
                                                                                                                            ],
                                                                                                                            "displayCodePartial": "string",
                                                                                                                            "displayArgs": [
                                                                                                                                "string"
                                                                                                                            ],
                                                                                                                            "iconColour": "string"
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "contactCount": 269,
                                                                                                                    "tabCount": 286,
                                                                                                                    "taskCount": 55,
                                                                                                                    "inUse": true,
                                                                                                                    "breadcrumbParent": null,
                                                                                                                    "iconClass": "string",
                                                                                                                    "url": "string",
                                                                                                                    "partitionId": 172,
                                                                                                                    "partition": null,
                                                                                                                    "display": "string",
                                                                                                                    "idInPartition": 156,
                                                                                                                    "recordName": "string",
                                                                                                                    "displayAttributes": [
                                                                                                                        {}
                                                                                                                    ],
                                                                                                                    "displayCodePartial": "string",
                                                                                                                    "displayArgs": [
                                                                                                                        "string"
                                                                                                                    ],
                                                                                                                    "iconColour": "string"
                                                                                                                }
                                                                                                            ],
                                                                                                            "access": "PUBLIC",
                                                                                                            "deleted": true,
                                                                                                            "visibleToDeactivated": true,
                                                                                                            "source": "ENTITY",
                                                                                                            "entity": null,
                                                                                                            "entityGroup": null,
                                                                                                            "cutOffDate": "2022-04-13",
                                                                                                            "invoicePageInfo": {
                                                                                                                "purchaseNumber": "string",
                                                                                                                "showing": "BOTH",
                                                                                                                "otherEntity": null,
                                                                                                                "address": "string",
                                                                                                                "vat": "string",
                                                                                                                "invoicePageFooter": "string",
                                                                                                                "invoicingContacts": "string"
                                                                                                            },
                                                                                                            "docType": "DOCUMENT",
                                                                                                            "tags": null,
                                                                                                            "task": null,
                                                                                                            "notifications": [
                                                                                                                {
                                                                                                                    "id": 78,
                                                                                                                    "partitionId": 209,
                                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                                    "user": null,
                                                                                                                    "read": true,
                                                                                                                    "page": null,
                                                                                                                    "type": "ADDED",
                                                                                                                    "baseUrl": "string",
                                                                                                                    "url": "string",
                                                                                                                    "mailjetTemplateName": "string",
                                                                                                                    "displayCode": "string",
                                                                                                                    "mailjetTemplateVars": {},
                                                                                                                    "mailjetTemplateEmail": null,
                                                                                                                    "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                    "name": "string",
                                                                                                                    "partition": null,
                                                                                                                    "display": "string",
                                                                                                                    "idInPartition": 203,
                                                                                                                    "recordName": "string",
                                                                                                                    "displayAttributes": [
                                                                                                                        {}
                                                                                                                    ],
                                                                                                                    "displayCodePartial": "string",
                                                                                                                    "displayArgs": [
                                                                                                                        "string"
                                                                                                                    ],
                                                                                                                    "breadcrumbParent": null,
                                                                                                                    "iconClass": "string",
                                                                                                                    "iconColour": "string"
                                                                                                                }
                                                                                                            ],
                                                                                                            "hidden": true,
                                                                                                            "public": true,
                                                                                                            "entities": null,
                                                                                                            "url": "string",
                                                                                                            "visible": true,
                                                                                                            "archived": true,
                                                                                                            "issues": null,
                                                                                                            "contact": null,
                                                                                                            "activeEntities": null,
                                                                                                            "constituent": null,
                                                                                                            "sections": null,
                                                                                                            "nameWithSections": "string",
                                                                                                            "ancestorsString": "string",
                                                                                                            "campaignContacts": null,
                                                                                                            "campaignNavigationLevel": 255,
                                                                                                            "menuIndex": 21,
                                                                                                            "allUsers": true,
                                                                                                            "menuParent": {
                                                                                                                "campaignNavigationLevel": 153,
                                                                                                                "expand": true,
                                                                                                                "menuIndex": 139,
                                                                                                                "menuParent": null,
                                                                                                                "menuAncestors": null,
                                                                                                                "name": "string",
                                                                                                                "id": {},
                                                                                                                "url": "string",
                                                                                                                "partitionId": 61,
                                                                                                                "partition": null,
                                                                                                                "display": "string",
                                                                                                                "idInPartition": 46,
                                                                                                                "recordName": "string",
                                                                                                                "displayAttributes": [
                                                                                                                    {}
                                                                                                                ],
                                                                                                                "displayCodePartial": "string",
                                                                                                                "displayArgs": [
                                                                                                                    "string"
                                                                                                                ],
                                                                                                                "breadcrumbParent": null,
                                                                                                                "iconClass": "string",
                                                                                                                "iconColour": "string"
                                                                                                            },
                                                                                                            "highestSection": null,
                                                                                                            "allFields": "string",
                                                                                                            "iconClass": "string",
                                                                                                            "associatedToArchivedContact": true,
                                                                                                            "membersUrl": "string",
                                                                                                            "expand": true,
                                                                                                            "menuAncestors": null,
                                                                                                            "partitionId": 296,
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 146,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "iconColour": "string",
                                                                                                            "lastUpdatedById": 198
                                                                                                        }
                                                                                                    ],
                                                                                                    "menuIndex": 92,
                                                                                                    "url": "string",
                                                                                                    "display": "string",
                                                                                                    "descendants": null,
                                                                                                    "ancestorsString": "string",
                                                                                                    "campaignNavigationLevel": 92,
                                                                                                    "allPages": null,
                                                                                                    "menuParent": null,
                                                                                                    "recordName": "string",
                                                                                                    "breadcrumbParent": null,
                                                                                                    "iconClass": "string",
                                                                                                    "iconColour": "string",
                                                                                                    "updateOptions": {
                                                                                                        "campaignId": 24,
                                                                                                        "updateRole": true,
                                                                                                        "defaultRoleId": 174,
                                                                                                        "createCampaigns": true,
                                                                                                        "createContacts": true,
                                                                                                        "forCampaign": true
                                                                                                    },
                                                                                                    "menuAncestors": null,
                                                                                                    "partitionId": 191,
                                                                                                    "partition": null,
                                                                                                    "idInPartition": 207,
                                                                                                    "displayAttributes": [
                                                                                                        {}
                                                                                                    ],
                                                                                                    "displayCodePartial": "string",
                                                                                                    "displayArgs": [
                                                                                                        "string"
                                                                                                    ],
                                                                                                    "lastUpdatedById": 63
                                                                                                },
                                                                                                "expand": true,
                                                                                                "footerAddress": "string",
                                                                                                "footerLink": "string",
                                                                                                "footerPhone": "string",
                                                                                                "termsAndConditionsText": "string",
                                                                                                "menuIndex": 273,
                                                                                                "deleted": true,
                                                                                                "uploadingLock": true,
                                                                                                "contacts": null,
                                                                                                "roles": null,
                                                                                                "sections": null,
                                                                                                "pages": null,
                                                                                                "tasks": null,
                                                                                                "taskGroups": null,
                                                                                                "campaignEvents": [
                                                                                                    {
                                                                                                        "id": 262,
                                                                                                        "campaign": null,
                                                                                                        "eventTime": "2022-04-13T15:42:05.901Z",
                                                                                                        "campaignContacts": null,
                                                                                                        "displayName": "string"
                                                                                                    }
                                                                                                ],
                                                                                                "watchingUsers": null,
                                                                                                "securityIssueNotifications": [
                                                                                                    {
                                                                                                        "id": 157,
                                                                                                        "partitionId": 117,
                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                        "user": null,
                                                                                                        "read": true,
                                                                                                        "campaign": null,
                                                                                                        "hasPageSecurityIssues": true,
                                                                                                        "url": "string",
                                                                                                        "mailjetTemplateName": "string",
                                                                                                        "displayCode": "string",
                                                                                                        "mailjetTemplateVars": {},
                                                                                                        "displayIssueType": "string",
                                                                                                        "mailjetTemplateEmail": null,
                                                                                                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                        "name": "string",
                                                                                                        "partition": null,
                                                                                                        "display": "string",
                                                                                                        "idInPartition": 95,
                                                                                                        "recordName": "string",
                                                                                                        "displayAttributes": [
                                                                                                            {}
                                                                                                        ],
                                                                                                        "displayCodePartial": "string",
                                                                                                        "displayArgs": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "breadcrumbParent": null,
                                                                                                        "iconClass": "string",
                                                                                                        "iconColour": "string"
                                                                                                    }
                                                                                                ],
                                                                                                "closed": true,
                                                                                                "url": "string",
                                                                                                "visible": true,
                                                                                                "display": "string",
                                                                                                "campaignNavigationLevel": 249,
                                                                                                "onlyPublicAccessForUser": true,
                                                                                                "watching": true,
                                                                                                "menuParent": null,
                                                                                                "breadcrumbParent": null,
                                                                                                "iconClass": "string",
                                                                                                "iconColour": "string",
                                                                                                "footerPresent": true,
                                                                                                "menuAncestors": null,
                                                                                                "partitionId": 8,
                                                                                                "partition": null,
                                                                                                "idInPartition": 175,
                                                                                                "recordName": "string",
                                                                                                "displayAttributes": [
                                                                                                    {}
                                                                                                ],
                                                                                                "displayCodePartial": "string",
                                                                                                "displayArgs": [
                                                                                                    "string"
                                                                                                ],
                                                                                                "emailCode": "string",
                                                                                                "emailPrefix": "string",
                                                                                                "oneToOne": true
                                                                                            },
                                                                                            "contact": null,
                                                                                            "roles": null,
                                                                                            "tasks": null,
                                                                                            "pages": null,
                                                                                            "lastLoggedIn": "2022-04-13T15:42:05.901Z",
                                                                                            "deleted": true,
                                                                                            "fullName": "string",
                                                                                            "email": "string",
                                                                                            "user": null,
                                                                                            "lastName": "string",
                                                                                            "firstName": "string",
                                                                                            "recordName": "string",
                                                                                            "breadcrumbParent": null,
                                                                                            "iconClass": "string",
                                                                                            "iconColour": "string",
                                                                                            "fullNameFallback": "string",
                                                                                            "name": "string",
                                                                                            "url": "string",
                                                                                            "partitionId": 85,
                                                                                            "partition": null,
                                                                                            "display": "string",
                                                                                            "idInPartition": 169,
                                                                                            "displayAttributes": [
                                                                                                {}
                                                                                            ],
                                                                                            "displayCodePartial": "string",
                                                                                            "displayArgs": [
                                                                                                "string"
                                                                                            ]
                                                                                        }
                                                                                    ],
                                                                                    "events": null,
                                                                                    "selected": true,
                                                                                    "selectable": true,
                                                                                    "fullName": "string",
                                                                                    "partitionId": 108
                                                                                },
                                                                                "text": "string",
                                                                                "published": true,
                                                                                "replies": null,
                                                                                "notifications": null,
                                                                                "hidden": true,
                                                                                "reply": true,
                                                                                "greatestAncestor": null,
                                                                                "replyToIsUnpublished": true,
                                                                                "serverCreatedReadableDate": "string",
                                                                                "lastUpdatedBy": null,
                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                "lastUpdatedById": 191,
                                                                                "name": "string",
                                                                                "partition": null,
                                                                                "display": "string",
                                                                                "idInPartition": 74,
                                                                                "recordName": "string",
                                                                                "displayAttributes": [
                                                                                    {}
                                                                                ],
                                                                                "displayCodePartial": "string",
                                                                                "displayArgs": [
                                                                                    "string"
                                                                                ],
                                                                                "breadcrumbParent": null,
                                                                                "iconClass": "string",
                                                                                "iconColour": "string",
                                                                                "calendarSource": "PRODUCT",
                                                                                "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                "allDay": true,
                                                                                "calendarExtendedProps": {}
                                                                            }
                                                                        ],
                                                                        "watchingUsers": null,
                                                                        "relevantEntities": null,
                                                                        "tasks": null,
                                                                        "name": "string",
                                                                        "commentType": "string",
                                                                        "commentsPermission": "ROLE_PRE_AUTH",
                                                                        "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                        "commentDisplayUrl": "string",
                                                                        "productIds": [
                                                                            148
                                                                        ],
                                                                        "constituentIds": [
                                                                            164
                                                                        ],
                                                                        "studyIds": [
                                                                            138
                                                                        ],
                                                                        "entityIds": [
                                                                            271
                                                                        ],
                                                                        "lastUpdatedById": 31,
                                                                        "url": "string",
                                                                        "partitionId": 80,
                                                                        "partition": null,
                                                                        "display": "string",
                                                                        "idInPartition": 63,
                                                                        "recordName": "string",
                                                                        "displayAttributes": [
                                                                            {}
                                                                        ],
                                                                        "displayCodePartial": "string",
                                                                        "displayArgs": [
                                                                            "string"
                                                                        ],
                                                                        "breadcrumbParent": null,
                                                                        "iconClass": "string",
                                                                        "iconColour": "string",
                                                                        "emailCode": "string",
                                                                        "emailPrefix": "string",
                                                                        "oneToOne": true,
                                                                        "watching": true,
                                                                        "watchers": null
                                                                    }
                                                                ],
                                                                "documentLinkAttachments": null,
                                                                "deleted": true,
                                                                "deletedDate": "2022-04-13T15:42:05.901Z",
                                                                "fileId": "6c443f14-819c-476a-b031-aa71884f6b6a",
                                                                "watchingUsers": null,
                                                                "expiryNotifications": null,
                                                                "retentionNotifications": null,
                                                                "notifyEmail": "string",
                                                                "expirationNotified": true,
                                                                "retentionNotified": true,
                                                                "folders": null,
                                                                "taskLinks": null,
                                                                "taskTwoLinks": null,
                                                                "downloadTaskLinks": null,
                                                                "constituentTonnages": null,
                                                                "productTonnages": null,
                                                                "comments": null,
                                                                "searchedVia": null,
                                                                "emailDate": "2022-04-13T15:42:05.901Z",
                                                                "sender": "string",
                                                                "recipients": null,
                                                                "subject": "string",
                                                                "emailBody": "string",
                                                                "privatise": true,
                                                                "fromTemplate": true,
                                                                "cc": "string",
                                                                "bcc": "string",
                                                                "saveAsDraft": true,
                                                                "index": 185,
                                                                "relatedDocumentConstituents": null,
                                                                "relatedDocumentEntities": null,
                                                                "relatedDocumentProductGroups": null,
                                                                "relatedDocumentProducts": null,
                                                                "relatedDocumentContactGroups": null,
                                                                "partitionId": 194
                                                            }
                                                        ],
                                                        "issues": null,
                                                        "documentLinkAttachments": null,
                                                        "deleted": true,
                                                        "deletedDate": "2022-04-13T15:42:05.901Z",
                                                        "fileId": "53dc5fb2-854a-4223-aa93-ccc933d4dce7",
                                                        "watchingUsers": null,
                                                        "expiryNotifications": null,
                                                        "retentionNotifications": null,
                                                        "notifyEmail": "string",
                                                        "expirationNotified": true,
                                                        "retentionNotified": true,
                                                        "folders": null,
                                                        "taskLinks": null,
                                                        "taskTwoLinks": null,
                                                        "downloadTaskLinks": null,
                                                        "constituentTonnages": null,
                                                        "productTonnages": null,
                                                        "comments": null,
                                                        "searchedVia": null,
                                                        "receivedDate": "2022-04-13T15:42:05.901Z",
                                                        "emailDate": "2022-04-13",
                                                        "sender": "string",
                                                        "subject": "string",
                                                        "recipient": "string",
                                                        "emailBody": "string",
                                                        "ccAddresses": "string",
                                                        "missingAttachments": [
                                                            {
                                                                "id": 76,
                                                                "receivedEmail": {
                                                                    "id": 153,
                                                                    "subject": "string",
                                                                    "fromAddress": "string",
                                                                    "messageRead": true,
                                                                    "dateReceived": "2022-04-13T15:42:05.901Z",
                                                                    "dateMessageSaved": "2022-04-13T15:42:05.901Z",
                                                                    "dateAttachmentsSaved": "2022-04-13T15:42:05.901Z",
                                                                    "contentType": "string",
                                                                    "ccAddresses": "string",
                                                                    "recipients": "string",
                                                                    "content": "string",
                                                                    "clientPartition": null,
                                                                    "deleted": true,
                                                                    "emailAttachments": null
                                                                },
                                                                "fileId": "ffc678bb-9782-4871-b678-7b982d64e3f3",
                                                                "filename": "string"
                                                            }
                                                        ],
                                                        "attachmentsToSave": [
                                                            "4154d416-5b9f-48b8-a44b-cfd369dde699"
                                                        ],
                                                        "index": 16,
                                                        "relatedDocumentConstituents": null,
                                                        "relatedDocumentEntities": null,
                                                        "relatedDocumentProductGroups": null,
                                                        "relatedDocumentProducts": null,
                                                        "relatedDocumentContactGroups": null,
                                                        "partitionId": 88
                                                    }
                                                ],
                                                "internalSourceEmails": null,
                                                "issues": null,
                                                "documentLinkAttachments": null,
                                                "deleted": true,
                                                "deletedDate": "2022-04-13T15:42:05.901Z",
                                                "fileId": "0b641c38-c7b0-4032-ae37-71f6ce7bb964",
                                                "watchingUsers": null,
                                                "expiryNotifications": null,
                                                "retentionNotifications": null,
                                                "notifyEmail": "string",
                                                "expirationNotified": true,
                                                "retentionNotified": true,
                                                "folders": null,
                                                "taskLinks": null,
                                                "taskTwoLinks": null,
                                                "downloadTaskLinks": null,
                                                "constituentTonnages": null,
                                                "productTonnages": null,
                                                "submissions": null,
                                                "comments": null,
                                                "searchedVia": null,
                                                "index": 132,
                                                "relatedDocumentConstituents": null,
                                                "relatedDocumentEntities": null,
                                                "relatedDocumentCategoryGroups": null,
                                                "relatedDocumentProductGroups": null,
                                                "relatedDocumentProducts": null,
                                                "relatedDocumentContactGroups": null,
                                                "partitionId": 47
                                            }
                                        ],
                                        "createdBy": null,
                                        "created": "2022-04-13T15:42:05.901Z",
                                        "deletable": true,
                                        "study": null,
                                        "folderPath": "string",
                                        "folderLinks": "string"
                                    },
                                    "studyFolder": null,
                                    "archivedStudyFolder": null,
                                    "deletedStudyFolder": null,
                                    "studyTimelineTemplate": null,
                                    "studyNumberTimelineTemplate": null,
                                    "studyMultiRegistrantShare": 262,
                                    "defaultCostRoles": null,
                                    "invoiceOverdueDays": 234,
                                    "invoiceTemplate": "string",
                                    "docExpiryNotificationDays": 123,
                                    "deactivatedMessage": "string",
                                    "countries": null,
                                    "hidden": true,
                                    "pages": null,
                                    "campaignTasks": null,
                                    "campaignImages": [
                                        {
                                            "id": 147,
                                            "clientPartition": null,
                                            "created": "2022-04-13T15:42:05.901Z",
                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                            "campaign": null,
                                            "fileId": "e633b2d5-3988-4b0b-8d5a-188e8a039cd9",
                                            "fileName": "string",
                                            "lastUpdatedById": 3,
                                            "name": "string",
                                            "url": "string",
                                            "partitionId": 85,
                                            "partition": null,
                                            "display": "string",
                                            "idInPartition": 125,
                                            "recordName": "string",
                                            "displayAttributes": [
                                                {}
                                            ],
                                            "displayCodePartial": "string",
                                            "displayArgs": [
                                                "string"
                                            ],
                                            "breadcrumbParent": null,
                                            "iconClass": "string",
                                            "iconColour": "string"
                                        }
                                    ],
                                    "integrations": null,
                                    "name": "string",
                                    "campaignNavigationLevel": 300,
                                    "onlyPublicAccessForUser": true,
                                    "expand": true,
                                    "menuIndex": 39,
                                    "recordName": "string",
                                    "acceptInvoiceImport": true,
                                    "studyAdditionalSharePercent": 147,
                                    "menuParent": null,
                                    "menuAncestors": null,
                                    "url": "string",
                                    "partitionId": 223,
                                    "partition": null,
                                    "display": "string",
                                    "idInPartition": 142,
                                    "displayAttributes": [
                                        {}
                                    ],
                                    "displayCodePartial": "string",
                                    "displayArgs": [
                                        "string"
                                    ],
                                    "breadcrumbParent": null,
                                    "iconClass": "string",
                                    "iconColour": "string"
                                },
                                "display": "string",
                                "idInPartition": 152,
                                "recordName": "string",
                                "displayAttributes": [
                                    {}
                                ],
                                "displayCodePartial": "string",
                                "displayArgs": [
                                    "string"
                                ],
                                "breadcrumbParent": null,
                                "iconClass": "string",
                                "iconColour": "string"
                            },
                            "contact": null,
                            "text": "string",
                            "published": true,
                            "replies": null,
                            "notifications": null,
                            "hidden": true,
                            "reply": true,
                            "greatestAncestor": null,
                            "replyToIsUnpublished": true,
                            "serverCreatedReadableDate": "string",
                            "lastUpdatedBy": null,
                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                            "lastUpdatedById": 276,
                            "name": "string",
                            "partition": null,
                            "display": "string",
                            "idInPartition": 187,
                            "recordName": "string",
                            "displayAttributes": [
                                {}
                            ],
                            "displayCodePartial": "string",
                            "displayArgs": [
                                "string"
                            ],
                            "breadcrumbParent": null,
                            "iconClass": "string",
                            "iconColour": "string",
                            "calendarSource": "PRODUCT",
                            "calendarEnd": "2022-04-13T15:42:05.901Z",
                            "allDay": true,
                            "calendarExtendedProps": {}
                        },
                        "createdDate": "2022-04-13T15:42:05.901Z",
                        "user": null,
                        "contact": null,
                        "text": "string",
                        "published": true,
                        "replies": null,
                        "notifications": null,
                        "calendarSource": "PRODUCT",
                        "hidden": true,
                        "reply": true,
                        "greatestAncestor": null,
                        "replyToIsUnpublished": true,
                        "serverCreatedReadableDate": "string",
                        "lastUpdatedBy": null,
                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                        "lastUpdatedById": 141,
                        "name": "string",
                        "partition": null,
                        "display": "string",
                        "idInPartition": 196,
                        "recordName": "string",
                        "displayAttributes": [
                            {}
                        ],
                        "displayCodePartial": "string",
                        "displayArgs": [
                            "string"
                        ],
                        "breadcrumbParent": null,
                        "iconClass": "string",
                        "iconColour": "string",
                        "calendarEnd": "2022-04-13T15:42:05.901Z",
                        "allDay": true,
                        "calendarExtendedProps": {}
                    }
                ],
                "groups": null,
                "primaryInvoicingContact": null,
                "secondaryInvoicingContact": null,
                "watchingUsers": null,
                "registrationsFor": null,
                "partitionId": 128,
                "selected": true,
                "primaryInvoicingContactToImport": "string",
                "secondaryInvoicingContactToImport": "string",
                "testContacts": null
            },
            "studyRole": {
                "id": 1,
                "display": "Consortium Affiliate Lead Registrant"
            },
            "active": false
        }
    ],
    "number": 177,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 137,
        "sort": null,
        "pageNumber": 153,
        "paged": true,
        "unpaged": true,
        "pageSize": 90
    },
    "numberOfElements": 18,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/ConstituentEntityData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

GET /api/constituents/entities/{id}

Get a Constituent-Entity Link

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 404 Not Found

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "constituent": {
        "id": 1,
        "partitionId": 100,
        "name": "Benzene",
        "type": "SUBSTANCE",
        "casNumber": "100-00-5",
        "ecName": "1-chloro-4-nitrobenzene",
        "ecNumber": "202-809-6",
        "ecDescription": "string",
        "iupac": "benzene",
        "iuclidUuid": "string",
        "tsca": "Benzene, 1-chloro-4-nitro-",
        "molecularFormula": "C6H6",
        "smiles": "C1=CC=CC=C1",
        "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
        "deleted": false
    },
    "entity": {
        "id": 1,
        "partitionId": 100,
        "name": "Penman Consulting",
        "companyNo": "string",
        "vatNo": "string",
        "dunnNo": "string",
        "utr": "string"
    },
    "entityRoles": [
        {
            "display": "Registrant",
            "id": "REGISTRANT"
        }
    ],
    "manufacturerUuid": "37b58a8c-fae4-485f-bb99-1cf879d34678",
    "registrationNumber": "UK-12-1234567890-1-1111",
    "reasonForInterest": "UK_REACH",
    "manufacturer": {
        "lastUpdated": "2022-04-13T15:42:05.901Z",
        "id": 282,
        "name": "string",
        "version": 266,
        "companyNo": "string",
        "vatNo": "string",
        "remarks": "string",
        "dunnNo": "string",
        "utr": "string",
        "uclidID": "string",
        "reachID": "string",
        "clientPartitionId": 284,
        "sapBusinessReference": "string",
        "hasInvoicingAddress": true,
        "deleted": true,
        "entityEntityGroups": [
            {
                "id": 98,
                "entity": null,
                "entityGroup": {
                    "name": "string",
                    "partitionId": 20
                }
            }
        ],
        "invoiceOverdueDays": 30,
        "comments": [
            {
                "id": 288,
                "replyTo": {
                    "id": 9,
                    "replyTo": null,
                    "createdDate": "2022-04-13T15:42:05.901Z",
                    "user": {
                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                        "id": 76,
                        "firstName": "string",
                        "lastName": "string",
                        "emailAddress": "string",
                        "principal": "string",
                        "lastLoggedIn": "2022-04-13T15:42:05.901Z",
                        "created": "2022-04-13T15:42:05.901Z",
                        "enabled": true,
                        "locked": true,
                        "failedLoginCount": 72,
                        "notActiveAfter": "2022-04-13",
                        "passwordExpires": "2022-04-13",
                        "deleted": true,
                        "version": 56,
                        "owner": null,
                        "role": {
                            "id": 267,
                            "name": "string",
                            "deletable": true,
                            "permissions": [
                                "ROLE_PRE_AUTH"
                            ],
                            "externalGroups": [
                                "string"
                            ],
                            "forCampaign": true,
                            "forInternal": true,
                            "penmanAdmin": true,
                            "admin": true
                        },
                        "forcePasswordChange": true,
                        "termsAccepted": true,
                        "calendarDashboard": true,
                        "clientPortal": true,
                        "securityVersion": 216,
                        "secret": "string",
                        "initials": "string",
                        "active": true,
                        "fullName": "string",
                        "fullNameSanitized": "string",
                        "credentialsType": "BASIC",
                        "entityGroups": null,
                        "nameReversed": "string",
                        "temporaryPasswordActive": true,
                        "lastUpdatedById": 188,
                        "name": "string",
                        "url": "string",
                        "partitionId": 44,
                        "partition": {
                            "id": 278,
                            "partitionName": "string",
                            "logoID": "5bdd2eca-a1d6-429f-8430-f6977081ac53",
                            "email": "string",
                            "userPartitions": [
                                {
                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                    "id": 223,
                                    "user": null,
                                    "partition": null,
                                    "role": null,
                                    "enabled": true,
                                    "currentSelection": true,
                                    "notificationPreferences": {
                                        "allDocumentNotifications": true,
                                        "overdueInvoices": true,
                                        "allCampaignNotifications": true,
                                        "allStudyNotifications": true,
                                        "constituentTonnage": true,
                                        "emails": true,
                                        "constituentsInUpdatedInventories": true,
                                        "campaignSecurityWarnings": true,
                                        "invoicePayments": true
                                    },
                                    "relevantRole": null
                                }
                            ],
                            "entities": null,
                            "emailFolder": {
                                "id": 257,
                                "partitionId": 77,
                                "name": "string",
                                "parent": null,
                                "children": null,
                                "documents": [
                                    {
                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                        "id": 170,
                                        "partition": null,
                                        "title": "string",
                                        "description": "string",
                                        "fileName": "string",
                                        "originalFileName": "string",
                                        "link": true,
                                        "fileSize": 288,
                                        "uploadDate": "2022-04-13T15:42:05.901Z",
                                        "documentCreationDate": "2022-04-13",
                                        "fileType": "UNKNOWN",
                                        "docType": "DOCUMENT",
                                        "expiryDate": "2022-04-13",
                                        "retentionDate": "2022-04-13",
                                        "permanent": true,
                                        "documentProducts": [
                                            {
                                                "id": 206,
                                                "document": null,
                                                "product": {
                                                    "id": 82,
                                                    "name": "string",
                                                    "ownerManufacturer": "string",
                                                    "partitionId": 20,
                                                    "archived": true
                                                },
                                                "deleted": true
                                            }
                                        ],
                                        "products": null,
                                        "documentConstituents": [
                                            {
                                                "id": 267,
                                                "document": null,
                                                "constituent": {
                                                    "id": 54,
                                                    "casNumber": "string",
                                                    "ecName": "string",
                                                    "ecNumber": "string",
                                                    "ecDescription": "string",
                                                    "iupac": "string",
                                                    "iuclidUuid": "string",
                                                    "tsca": "string",
                                                    "molecularFormula": "string",
                                                    "smiles": "string",
                                                    "inChl": "string",
                                                    "name": "string",
                                                    "partitionId": 35,
                                                    "type": "ACTIVE_INGREDIENT",
                                                    "archived": true
                                                },
                                                "deleted": true
                                            }
                                        ],
                                        "constituents": null,
                                        "documentCategoryGroups": [
                                            {
                                                "id": 196,
                                                "document": null,
                                                "categoryGroup": {
                                                    "id": 232,
                                                    "groupName": "string",
                                                    "partitionId": 27
                                                },
                                                "deleted": true
                                            }
                                        ],
                                        "categoryGroups": null,
                                        "documentProductGroups": [
                                            {
                                                "id": 146,
                                                "document": null,
                                                "productGroup": {
                                                    "groupName": "string",
                                                    "partitionId": 218
                                                }
                                            }
                                        ],
                                        "productGroups": null,
                                        "documentEntities": [
                                            {
                                                "id": 76,
                                                "entity": null,
                                                "document": null,
                                                "deleted": true
                                            }
                                        ],
                                        "entities": null,
                                        "documentEntityGroups": [
                                            {
                                                "id": 205,
                                                "document": null,
                                                "entityGroup": null
                                            }
                                        ],
                                        "entityGroups": null,
                                        "documentContactGroups": [
                                            {
                                                "id": 151,
                                                "document": null,
                                                "contactGroup": {
                                                    "groupName": "string"
                                                },
                                                "deleted": true
                                            }
                                        ],
                                        "contactGroups": null,
                                        "documentTagSet": [
                                            {
                                                "id": 92,
                                                "document": null,
                                                "tag": {
                                                    "id": {
                                                        "partitionId": 169,
                                                        "id": 77
                                                    },
                                                    "tagText": "string"
                                                },
                                                "deleted": true
                                            }
                                        ],
                                        "linkedDocuments": null,
                                        "version": 54,
                                        "versionIdentifier": "string",
                                        "currentDocumentId": 204,
                                        "currentDocument": null,
                                        "newsItem": true,
                                        "sourceEmail": [
                                            {
                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                "id": 57,
                                                "partition": null,
                                                "title": "string",
                                                "description": "string",
                                                "fileName": "string",
                                                "originalFileName": "string",
                                                "link": true,
                                                "fileSize": 171,
                                                "uploadDate": "2022-04-13T15:42:05.901Z",
                                                "documentCreationDate": "2022-04-13",
                                                "fileType": "UNKNOWN",
                                                "docType": "DOCUMENT",
                                                "expiryDate": "2022-04-13",
                                                "retentionDate": "2022-04-13",
                                                "permanent": true,
                                                "products": null,
                                                "constituents": null,
                                                "categoryGroups": null,
                                                "productGroups": null,
                                                "entities": null,
                                                "documentEntityGroups": null,
                                                "entityGroups": null,
                                                "documentContactGroups": null,
                                                "contactGroups": null,
                                                "documentTagSet": null,
                                                "linkedDocuments": null,
                                                "version": 169,
                                                "versionIdentifier": "string",
                                                "currentDocumentId": 76,
                                                "currentDocument": null,
                                                "newsItem": true,
                                                "internalSourceEmails": [
                                                    {
                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                        "id": 243,
                                                        "partition": null,
                                                        "title": "string",
                                                        "description": "string",
                                                        "fileName": "string",
                                                        "originalFileName": "string",
                                                        "link": true,
                                                        "fileSize": 252,
                                                        "uploadDate": "2022-04-13T15:42:05.901Z",
                                                        "documentCreationDate": "2022-04-13",
                                                        "fileType": "UNKNOWN",
                                                        "docType": "DOCUMENT",
                                                        "expiryDate": "2022-04-13",
                                                        "retentionDate": "2022-04-13",
                                                        "permanent": true,
                                                        "products": null,
                                                        "constituents": null,
                                                        "categoryGroups": null,
                                                        "productGroups": null,
                                                        "entities": null,
                                                        "documentEntityGroups": null,
                                                        "entityGroups": null,
                                                        "documentContactGroups": null,
                                                        "contactGroups": null,
                                                        "documentTagSet": null,
                                                        "linkedDocuments": null,
                                                        "version": 179,
                                                        "versionIdentifier": "string",
                                                        "currentDocumentId": 169,
                                                        "currentDocument": null,
                                                        "newsItem": true,
                                                        "issues": [
                                                            {
                                                                "id": 22,
                                                                "clientPartition": null,
                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                "version": 163,
                                                                "issue": "string",
                                                                "statement": "string",
                                                                "basis": "string",
                                                                "reviewDate": "2022-04-13",
                                                                "reviewNotified": true,
                                                                "supportingDocuments": null,
                                                                "products": null,
                                                                "constituents": null,
                                                                "studies": [
                                                                    {
                                                                        "id": 206,
                                                                        "code": "string",
                                                                        "status": "PLANNED",
                                                                        "species": [
                                                                            {
                                                                                "id": 10,
                                                                                "description": "string"
                                                                            }
                                                                        ],
                                                                        "purpose": "VI",
                                                                        "start": "2022-04-13",
                                                                        "end": "2022-04-13",
                                                                        "folder": null,
                                                                        "partitionId": 126
                                                                    }
                                                                ],
                                                                "entities": null,
                                                                "notes": "string",
                                                                "inventoryId": "9c3a7b1e-a4f1-477a-aef1-477cc284a1f7",
                                                                "comments": [
                                                                    {
                                                                        "id": 31,
                                                                        "replyTo": null,
                                                                        "createdDate": "2022-04-13T15:42:05.901Z",
                                                                        "user": null,
                                                                        "contact": {
                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                            "id": 136,
                                                                            "partition": null,
                                                                            "user": null,
                                                                            "title": "MR",
                                                                            "firstName": "string",
                                                                            "lastName": "string",
                                                                            "nameSuffix": "string",
                                                                            "jobDescription": "string",
                                                                            "email": "string",
                                                                            "telephone": "string",
                                                                            "fax": "string",
                                                                            "mobile": "string",
                                                                            "skype": "string",
                                                                            "remarks": "string",
                                                                            "reachIt": true,
                                                                            "deactivated": true,
                                                                            "deleted": true,
                                                                            "productEntityContacts": [
                                                                                {
                                                                                    "id": 29,
                                                                                    "productEntity": {
                                                                                        "id": 234,
                                                                                        "product": null,
                                                                                        "baseEntity": null,
                                                                                        "entityRoles": [
                                                                                            {
                                                                                                "id": "string",
                                                                                                "display": "string",
                                                                                                "name": "string",
                                                                                                "url": "string",
                                                                                                "partitionId": 133,
                                                                                                "partition": null,
                                                                                                "idInPartition": 290,
                                                                                                "recordName": "string",
                                                                                                "displayAttributes": [
                                                                                                    {}
                                                                                                ],
                                                                                                "displayCodePartial": "string",
                                                                                                "displayArgs": [
                                                                                                    "string"
                                                                                                ],
                                                                                                "breadcrumbParent": {
                                                                                                    "name": "string",
                                                                                                    "id": {},
                                                                                                    "url": "string",
                                                                                                    "partitionId": 217,
                                                                                                    "partition": null,
                                                                                                    "display": "string",
                                                                                                    "idInPartition": 277,
                                                                                                    "recordName": "string",
                                                                                                    "displayAttributes": [
                                                                                                        {}
                                                                                                    ],
                                                                                                    "displayCodePartial": "string",
                                                                                                    "displayArgs": [
                                                                                                        "string"
                                                                                                    ],
                                                                                                    "breadcrumbParent": null,
                                                                                                    "iconClass": "string",
                                                                                                    "iconColour": "string"
                                                                                                },
                                                                                                "iconClass": "string",
                                                                                                "iconColour": "string"
                                                                                            }
                                                                                        ],
                                                                                        "deleted": true,
                                                                                        "partitionId": 231
                                                                                    },
                                                                                    "contact": null,
                                                                                    "deleted": true
                                                                                }
                                                                            ],
                                                                            "productPartyContacts": [
                                                                                {
                                                                                    "id": 149,
                                                                                    "productParty": {
                                                                                        "id": 79,
                                                                                        "product": null,
                                                                                        "party": {
                                                                                            "id": 262,
                                                                                            "entity": null,
                                                                                            "description": "string",
                                                                                            "addressLine1": "string",
                                                                                            "addressLine2": "string",
                                                                                            "addressLine3": "string",
                                                                                            "townCity": "string",
                                                                                            "countyStateRegion": "string",
                                                                                            "postcode": "string",
                                                                                            "country": {
                                                                                                "id": 80,
                                                                                                "name": "string",
                                                                                                "iso3166alpha2CountryCode": "string",
                                                                                                "iso3166alpha3CountryCode": "string",
                                                                                                "iso3166numeric3CountryCode": "string",
                                                                                                "partitionId": 41
                                                                                            },
                                                                                            "website": "string",
                                                                                            "telephone": "string",
                                                                                            "fax": "string",
                                                                                            "remarks": "string",
                                                                                            "addressType": "PRIMARY_ADDRESS",
                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                            "lastUpdatedByEmail": "string",
                                                                                            "lastUpdatedById": 94,
                                                                                            "sapBusinessReference": "string",
                                                                                            "deleted": true,
                                                                                            "contacts": null,
                                                                                            "plants": [
                                                                                                {
                                                                                                    "id": 298,
                                                                                                    "party": null,
                                                                                                    "name": "string",
                                                                                                    "plantCode": "string",
                                                                                                    "constituentPlants": [
                                                                                                        {
                                                                                                            "id": 89,
                                                                                                            "constituent": null,
                                                                                                            "plant": null
                                                                                                        }
                                                                                                    ],
                                                                                                    "productPlants": [
                                                                                                        {
                                                                                                            "id": 168,
                                                                                                            "product": null,
                                                                                                            "plant": null
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ],
                                                                                            "lastUpdatedBy": null,
                                                                                            "partitionId": 274
                                                                                        },
                                                                                        "deleted": true
                                                                                    },
                                                                                    "contact": null,
                                                                                    "deleted": true
                                                                                }
                                                                            ],
                                                                            "productContacts": [
                                                                                {
                                                                                    "id": 109,
                                                                                    "product": null,
                                                                                    "contact": null,
                                                                                    "contactType": "KEY",
                                                                                    "deleted": true
                                                                                }
                                                                            ],
                                                                            "constituentEntityContacts": [
                                                                                {
                                                                                    "id": 50,
                                                                                    "constituentEntity": {
                                                                                        "id": 147,
                                                                                        "constituent": null,
                                                                                        "entity": null,
                                                                                        "entityRoles": null,
                                                                                        "partitionId": 282
                                                                                    },
                                                                                    "contact": null,
                                                                                    "deleted": true
                                                                                }
                                                                            ],
                                                                            "constituentPartyContacts": [
                                                                                {
                                                                                    "id": 290,
                                                                                    "constituentParty": {
                                                                                        "id": 113,
                                                                                        "constituent": null,
                                                                                        "party": null,
                                                                                        "deleted": true
                                                                                    },
                                                                                    "contact": null,
                                                                                    "deleted": true
                                                                                }
                                                                            ],
                                                                            "constituentContacts": [
                                                                                {
                                                                                    "id": 122,
                                                                                    "constituent": null,
                                                                                    "contact": null,
                                                                                    "contactType": "KEY",
                                                                                    "deleted": true
                                                                                }
                                                                            ],
                                                                            "contactGroups": [
                                                                                {
                                                                                    "id": 151,
                                                                                    "contact": null,
                                                                                    "contactGroup": null,
                                                                                    "deleted": true
                                                                                }
                                                                            ],
                                                                            "primaryInvoicingEntities": null,
                                                                            "secondaryInvoicingEntities": null,
                                                                            "tonnageAndUseEnquiries": [
                                                                                {
                                                                                    "reachLegislation": "EU_REACH",
                                                                                    "contact": null,
                                                                                    "baseEntity": null,
                                                                                    "enquiryYear": 3,
                                                                                    "documentLink": {
                                                                                        "id": 252,
                                                                                        "contact": null,
                                                                                        "code": "string",
                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                        "documentLinkAttachments": [
                                                                                            {
                                                                                                "id": 91,
                                                                                                "document": null,
                                                                                                "documentLinks": null
                                                                                            }
                                                                                        ],
                                                                                        "expiryDays": 114,
                                                                                        "clientPartition": null,
                                                                                        "allDownloaded": true,
                                                                                        "link": "string",
                                                                                        "autoExpire": true,
                                                                                        "reminderDate": "2022-04-13",
                                                                                        "dateAllDownLoaded": "2022-04-13T15:42:05.901Z",
                                                                                        "emails": null,
                                                                                        "tonnageAndUseEnquiries": null,
                                                                                        "reminderDatePassed": true
                                                                                    },
                                                                                    "documentEmailInternals": null,
                                                                                    "products": null,
                                                                                    "tonnageAndUseImporters": [
                                                                                        {
                                                                                            "id": 108,
                                                                                            "name": "string",
                                                                                            "address": "string",
                                                                                            "contactPerson": "string",
                                                                                            "email": "string",
                                                                                            "telephone": "string",
                                                                                            "tauiProducts": [
                                                                                                {
                                                                                                    "id": 48,
                                                                                                    "tonnageAndUseEnquiryProductUses": [
                                                                                                        {
                                                                                                            "id": 206,
                                                                                                            "tonnageAndUseImporter": null,
                                                                                                            "useUuid": "ed4c77fe-fe69-4ccf-abc0-d3b375c8c910",
                                                                                                            "puStatus": "x",
                                                                                                            "usePercentage": 10.12,
                                                                                                            "selected": true,
                                                                                                            "remarks": "string"
                                                                                                        }
                                                                                                    ],
                                                                                                    "customUses": [
                                                                                                        {
                                                                                                            "id": 231,
                                                                                                            "useName": "string",
                                                                                                            "useDescription": "string",
                                                                                                            "percentage": 10.12,
                                                                                                            "tauiProduct": null
                                                                                                        }
                                                                                                    ],
                                                                                                    "quantityTonnes": 10.12,
                                                                                                    "substanceOrUnknown": 10.12,
                                                                                                    "monomerInAPolymer": 10.12,
                                                                                                    "mixture": 10.12,
                                                                                                    "inAnArticle": 10.12,
                                                                                                    "notInAnArticle": 10.12,
                                                                                                    "selected": true,
                                                                                                    "product": null,
                                                                                                    "remarks": "string"
                                                                                                }
                                                                                            ],
                                                                                            "clientPartition": null,
                                                                                            "taxID": "string",
                                                                                            "country": "string"
                                                                                        }
                                                                                    ],
                                                                                    "tonnageAndUseEnquiryUploadDocuments": [
                                                                                        {
                                                                                            "id": 229,
                                                                                            "fileName": "string",
                                                                                            "fileId": "6f67f852-f695-48cf-9011-af4f1d4dcbf0"
                                                                                        }
                                                                                    ],
                                                                                    "clientPartition": null,
                                                                                    "id": 87,
                                                                                    "dateCreated": "2022-04-13T15:42:05.901Z",
                                                                                    "code": "string",
                                                                                    "hidden": true,
                                                                                    "submitted": true,
                                                                                    "includeForms": true,
                                                                                    "dateSubmited": "2022-04-13T15:42:05.901Z",
                                                                                    "accepted": true,
                                                                                    "dateAccepted": "2022-04-13T15:42:05.901Z",
                                                                                    "acceptedBy": null,
                                                                                    "submittedBy": null,
                                                                                    "sentBy": null,
                                                                                    "completeWithinDays": 28,
                                                                                    "createdAsTonnageEnquiry": true,
                                                                                    "removeBracketedTextFromProductName": true,
                                                                                    "entityRole": null
                                                                                }
                                                                            ],
                                                                            "testingLaboratoryContacts": [
                                                                                {
                                                                                    "id": 4,
                                                                                    "testingLaboratory": {
                                                                                        "id": 252,
                                                                                        "clientPartition": null,
                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                        "study": null,
                                                                                        "testingLaboratoryEntity": null,
                                                                                        "contacts": null,
                                                                                        "studyNumbers": [
                                                                                            {
                                                                                                "id": 87,
                                                                                                "testingLaboratory": null,
                                                                                                "activity": "string",
                                                                                                "contractRef": "string",
                                                                                                "studyNumber": "string",
                                                                                                "cost": 10.12,
                                                                                                "publishedCost": 10.12,
                                                                                                "payments": [
                                                                                                    {
                                                                                                        "id": 250,
                                                                                                        "name": "string",
                                                                                                        "estimatedDate": "2022-04-13",
                                                                                                        "cost": 10.12,
                                                                                                        "percentage": 10.12,
                                                                                                        "studyNumber": null,
                                                                                                        "type": "SCHEDULED",
                                                                                                        "yearMonth": {
                                                                                                            "year": 240,
                                                                                                            "month": "JANUARY",
                                                                                                            "monthValue": 76,
                                                                                                            "leapYear": true
                                                                                                        },
                                                                                                        "year": 64,
                                                                                                        "budget": {
                                                                                                            "id": 242,
                                                                                                            "clientPartition": null,
                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                            "name": "string",
                                                                                                            "start": "2022-04-13",
                                                                                                            "end": "2022-04-13",
                                                                                                            "currency": "string",
                                                                                                            "cost": 10.12,
                                                                                                            "externalRef": "string",
                                                                                                            "description": "string",
                                                                                                            "products": null,
                                                                                                            "constituents": null,
                                                                                                            "categoryGroups": null,
                                                                                                            "documentBudgets": [
                                                                                                                {
                                                                                                                    "id": 170,
                                                                                                                    "document": null,
                                                                                                                    "budget": null,
                                                                                                                    "cost": 10.12
                                                                                                                }
                                                                                                            ],
                                                                                                            "entityBudgets": [
                                                                                                                {
                                                                                                                    "id": 38,
                                                                                                                    "entity": null,
                                                                                                                    "budget": null,
                                                                                                                    "purchaseOrderNumber": "string",
                                                                                                                    "constituentEntity": null,
                                                                                                                    "constituent": null
                                                                                                                }
                                                                                                            ],
                                                                                                            "currencyInstance": {
                                                                                                                "currencyCode": "string",
                                                                                                                "numericCodeAsString": "string",
                                                                                                                "displayName": "string",
                                                                                                                "symbol": "string",
                                                                                                                "defaultFractionDigits": 59,
                                                                                                                "numericCode": 97
                                                                                                            },
                                                                                                            "lastUpdatedById": 72,
                                                                                                            "url": "string",
                                                                                                            "partitionId": 65,
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 282,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "iconColour": "string"
                                                                                                        },
                                                                                                        "yearQuarter": {
                                                                                                            "left": 253,
                                                                                                            "right": 118,
                                                                                                            "value": 275,
                                                                                                            "key": 267
                                                                                                        },
                                                                                                        "quarter": 77
                                                                                                    }
                                                                                                ],
                                                                                                "publishedPayments": [
                                                                                                    {
                                                                                                        "id": 15,
                                                                                                        "name": "string",
                                                                                                        "estimatedDate": "2022-04-13",
                                                                                                        "cost": 10.12,
                                                                                                        "percentage": 10.12,
                                                                                                        "studyNumber": null,
                                                                                                        "type": "SCHEDULED",
                                                                                                        "yearMonth": {
                                                                                                            "year": 15,
                                                                                                            "month": "JANUARY",
                                                                                                            "monthValue": 208,
                                                                                                            "leapYear": true
                                                                                                        },
                                                                                                        "year": 28,
                                                                                                        "budget": null,
                                                                                                        "yearQuarter": null,
                                                                                                        "quarter": 290
                                                                                                    }
                                                                                                ],
                                                                                                "activities": [
                                                                                                    {
                                                                                                        "id": 69,
                                                                                                        "studyNumber": null,
                                                                                                        "name": "string",
                                                                                                        "autoPlannedAfter": 226,
                                                                                                        "autoPlannedAfterPrevious": 248,
                                                                                                        "planned": "2022-04-13",
                                                                                                        "completed": "2022-04-13",
                                                                                                        "signedBy": null,
                                                                                                        "editable": true,
                                                                                                        "template": {
                                                                                                            "id": 150,
                                                                                                            "timelineTemplate": {
                                                                                                                "id": 146,
                                                                                                                "name": "string",
                                                                                                                "activityTemplates": null
                                                                                                            },
                                                                                                            "name": "string",
                                                                                                            "autoPlannedAfter": 146,
                                                                                                            "autoPlannedAfterPrevious": 188,
                                                                                                            "responsible": "CRO",
                                                                                                            "activities": null
                                                                                                        },
                                                                                                        "comments": [
                                                                                                            {
                                                                                                                "id": 208,
                                                                                                                "replyTo": null,
                                                                                                                "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                                "user": null,
                                                                                                                "contact": null,
                                                                                                                "text": "string",
                                                                                                                "published": true,
                                                                                                                "replies": null,
                                                                                                                "notifications": [
                                                                                                                    {
                                                                                                                        "id": 190,
                                                                                                                        "partitionId": 13,
                                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                                        "user": null,
                                                                                                                        "read": true,
                                                                                                                        "comment": null,
                                                                                                                        "type": "ADDED",
                                                                                                                        "baseUrl": "string",
                                                                                                                        "parent": {
                                                                                                                            "watchingUsers": null,
                                                                                                                            "comments": null,
                                                                                                                            "watching": true,
                                                                                                                            "watchers": null,
                                                                                                                            "commentType": "string",
                                                                                                                            "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                                            "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                                                                            "commentDisplayUrl": "string",
                                                                                                                            "name": "string",
                                                                                                                            "id": {},
                                                                                                                            "url": "string",
                                                                                                                            "partitionId": 294,
                                                                                                                            "partition": null,
                                                                                                                            "display": "string",
                                                                                                                            "idInPartition": 105,
                                                                                                                            "recordName": "string",
                                                                                                                            "displayAttributes": [
                                                                                                                                {}
                                                                                                                            ],
                                                                                                                            "displayCodePartial": "string",
                                                                                                                            "displayArgs": [
                                                                                                                                "string"
                                                                                                                            ],
                                                                                                                            "breadcrumbParent": null,
                                                                                                                            "iconClass": "string",
                                                                                                                            "iconColour": "string"
                                                                                                                        },
                                                                                                                        "url": "string",
                                                                                                                        "mailjetTemplateName": "string",
                                                                                                                        "displayCode": "string",
                                                                                                                        "mailjetTemplateVars": {},
                                                                                                                        "mailjetTemplateEmail": {
                                                                                                                            "templateName": "string",
                                                                                                                            "subject": "string",
                                                                                                                            "globalTemplateVars": {},
                                                                                                                            "recipients": [
                                                                                                                                {
                                                                                                                                    "email": "string",
                                                                                                                                    "templateVars": {}
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "attachments": [
                                                                                                                                {
                                                                                                                                    "type": "string",
                                                                                                                                    "filename": "string",
                                                                                                                                    "data": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ="
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "priority": "LOW_FIFO"
                                                                                                                        },
                                                                                                                        "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                        "name": "string",
                                                                                                                        "partition": null,
                                                                                                                        "display": "string",
                                                                                                                        "idInPartition": 33,
                                                                                                                        "recordName": "string",
                                                                                                                        "displayAttributes": [
                                                                                                                            {}
                                                                                                                        ],
                                                                                                                        "displayCodePartial": "string",
                                                                                                                        "displayArgs": [
                                                                                                                            "string"
                                                                                                                        ],
                                                                                                                        "breadcrumbParent": null,
                                                                                                                        "iconClass": "string",
                                                                                                                        "iconColour": "string"
                                                                                                                    }
                                                                                                                ],
                                                                                                                "calendarSource": "PRODUCT",
                                                                                                                "hidden": true,
                                                                                                                "reply": true,
                                                                                                                "greatestAncestor": null,
                                                                                                                "replyToIsUnpublished": true,
                                                                                                                "serverCreatedReadableDate": "string",
                                                                                                                "lastUpdatedBy": null,
                                                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                "lastUpdatedById": 50,
                                                                                                                "name": "string",
                                                                                                                "partition": null,
                                                                                                                "display": "string",
                                                                                                                "idInPartition": 106,
                                                                                                                "recordName": "string",
                                                                                                                "displayAttributes": [
                                                                                                                    {}
                                                                                                                ],
                                                                                                                "displayCodePartial": "string",
                                                                                                                "displayArgs": [
                                                                                                                    "string"
                                                                                                                ],
                                                                                                                "breadcrumbParent": null,
                                                                                                                "iconClass": "string",
                                                                                                                "iconColour": "string",
                                                                                                                "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                "allDay": true,
                                                                                                                "calendarExtendedProps": {}
                                                                                                            }
                                                                                                        ],
                                                                                                        "overdueNotifications": [
                                                                                                            {
                                                                                                                "id": 97,
                                                                                                                "partitionId": 170,
                                                                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                                                                "user": null,
                                                                                                                "read": true,
                                                                                                                "activity": null,
                                                                                                                "planned": "2022-04-13",
                                                                                                                "url": "string",
                                                                                                                "mailjetTemplateName": "string",
                                                                                                                "displayCode": "string",
                                                                                                                "mailjetTemplateVars": {},
                                                                                                                "mailjetTemplateEmail": null,
                                                                                                                "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                "name": "string",
                                                                                                                "partition": null,
                                                                                                                "display": "string",
                                                                                                                "idInPartition": 244,
                                                                                                                "recordName": "string",
                                                                                                                "displayAttributes": [
                                                                                                                    {}
                                                                                                                ],
                                                                                                                "displayCodePartial": "string",
                                                                                                                "displayArgs": [
                                                                                                                    "string"
                                                                                                                ],
                                                                                                                "breadcrumbParent": null,
                                                                                                                "iconClass": "string",
                                                                                                                "iconColour": "string"
                                                                                                            }
                                                                                                        ],
                                                                                                        "overdueNotified": true,
                                                                                                        "inheritingGroupActivities": [
                                                                                                            {
                                                                                                                "id": 171,
                                                                                                                "group": {
                                                                                                                    "id": 158,
                                                                                                                    "clientPartition": null,
                                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                    "name": "string",
                                                                                                                    "description": "string",
                                                                                                                    "studies": null,
                                                                                                                    "entityStudyGroups": [
                                                                                                                        {
                                                                                                                            "id": 253,
                                                                                                                            "entity": null,
                                                                                                                            "purpose": "VI",
                                                                                                                            "entityCostRole": {
                                                                                                                                "id": 11,
                                                                                                                                "display": "string",
                                                                                                                                "journal": "MEM_S_CN",
                                                                                                                                "name": "string",
                                                                                                                                "url": "string",
                                                                                                                                "partitionId": 207,
                                                                                                                                "partition": null,
                                                                                                                                "idInPartition": 244,
                                                                                                                                "recordName": "string",
                                                                                                                                "displayAttributes": [
                                                                                                                                    {}
                                                                                                                                ],
                                                                                                                                "displayCodePartial": "string",
                                                                                                                                "displayArgs": [
                                                                                                                                    "string"
                                                                                                                                ],
                                                                                                                                "breadcrumbParent": null,
                                                                                                                                "iconClass": "string",
                                                                                                                                "iconColour": "string"
                                                                                                                            },
                                                                                                                            "purchaseOrderNumber": "string",
                                                                                                                            "constituentEntity": null,
                                                                                                                            "group": null,
                                                                                                                            "constituent": null
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "overriddenStudies": null,
                                                                                                                    "activities": null,
                                                                                                                    "watchingUsers": null,
                                                                                                                    "comments": [
                                                                                                                        {
                                                                                                                            "id": 167,
                                                                                                                            "replyTo": null,
                                                                                                                            "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                                            "user": null,
                                                                                                                            "contact": null,
                                                                                                                            "text": "string",
                                                                                                                            "published": true,
                                                                                                                            "replies": null,
                                                                                                                            "notifications": null,
                                                                                                                            "calendarSource": "PRODUCT",
                                                                                                                            "hidden": true,
                                                                                                                            "reply": true,
                                                                                                                            "greatestAncestor": null,
                                                                                                                            "replyToIsUnpublished": true,
                                                                                                                            "serverCreatedReadableDate": "string",
                                                                                                                            "lastUpdatedBy": null,
                                                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                            "lastUpdatedById": 15,
                                                                                                                            "name": "string",
                                                                                                                            "partition": null,
                                                                                                                            "display": "string",
                                                                                                                            "idInPartition": 204,
                                                                                                                            "recordName": "string",
                                                                                                                            "displayAttributes": [
                                                                                                                                {}
                                                                                                                            ],
                                                                                                                            "displayCodePartial": "string",
                                                                                                                            "displayArgs": [
                                                                                                                                "string"
                                                                                                                            ],
                                                                                                                            "breadcrumbParent": null,
                                                                                                                            "iconClass": "string",
                                                                                                                            "iconColour": "string",
                                                                                                                            "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                            "allDay": true,
                                                                                                                            "calendarExtendedProps": {}
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "studiesCount": 149,
                                                                                                                    "commentDisplayUrl": "string",
                                                                                                                    "watching": true,
                                                                                                                    "watchers": null,
                                                                                                                    "commentType": "string",
                                                                                                                    "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                                    "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                                                                    "url": "string",
                                                                                                                    "partitionId": 215,
                                                                                                                    "partition": null,
                                                                                                                    "display": "string",
                                                                                                                    "idInPartition": 262,
                                                                                                                    "recordName": "string",
                                                                                                                    "displayAttributes": [
                                                                                                                        {}
                                                                                                                    ],
                                                                                                                    "displayCodePartial": "string",
                                                                                                                    "displayArgs": [
                                                                                                                        "string"
                                                                                                                    ],
                                                                                                                    "breadcrumbParent": null,
                                                                                                                    "iconClass": "string",
                                                                                                                    "iconColour": "string",
                                                                                                                    "lastUpdatedById": 190
                                                                                                                },
                                                                                                                "name": "string",
                                                                                                                "planned": "2022-04-13"
                                                                                                            }
                                                                                                        ],
                                                                                                        "url": "string",
                                                                                                        "partitionId": 193,
                                                                                                        "commentCount": 97,
                                                                                                        "recordName": "string",
                                                                                                        "calendarStart": "2022-04-13T15:42:05.901Z",
                                                                                                        "allDay": true,
                                                                                                        "calendarExtendedProps": {},
                                                                                                        "commentType": "string",
                                                                                                        "commentDisplayUrl": "string",
                                                                                                        "daysOverdue": 267,
                                                                                                        "overdue": true,
                                                                                                        "inheritingGroupNames": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "multipleInheritanceDates": true,
                                                                                                        "fromTemplate": true,
                                                                                                        "autoPlannedAfterPreviousFallback": 94,
                                                                                                        "calendarSource": "PRODUCT",
                                                                                                        "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                        "partition": null,
                                                                                                        "display": "string",
                                                                                                        "idInPartition": 177,
                                                                                                        "displayAttributes": [
                                                                                                            {}
                                                                                                        ],
                                                                                                        "displayCodePartial": "string",
                                                                                                        "displayArgs": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "breadcrumbParent": null,
                                                                                                        "iconClass": "string",
                                                                                                        "iconColour": "string",
                                                                                                        "watchingUsers": null,
                                                                                                        "watching": true,
                                                                                                        "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                        "commentsEditPermission": "ROLE_PRE_AUTH"
                                                                                                    }
                                                                                                ],
                                                                                                "emptyCosts": true,
                                                                                                "activityStudyNumber": "string"
                                                                                            }
                                                                                        ],
                                                                                        "evaluations": [
                                                                                            {
                                                                                                "id": 165,
                                                                                                "metric": {
                                                                                                    "id": 139,
                                                                                                    "name": "string"
                                                                                                },
                                                                                                "score": "VERY_POOR"
                                                                                            }
                                                                                        ],
                                                                                        "evaluationNotes": "string",
                                                                                        "studyDirectors": null,
                                                                                        "lastUpdatedById": 266,
                                                                                        "name": "string",
                                                                                        "url": "string",
                                                                                        "partitionId": 131,
                                                                                        "partition": null,
                                                                                        "display": "string",
                                                                                        "idInPartition": 26,
                                                                                        "recordName": "string",
                                                                                        "displayAttributes": [
                                                                                            {}
                                                                                        ],
                                                                                        "displayCodePartial": "string",
                                                                                        "displayArgs": [
                                                                                            "string"
                                                                                        ],
                                                                                        "breadcrumbParent": null,
                                                                                        "iconClass": "string",
                                                                                        "iconColour": "string"
                                                                                    },
                                                                                    "role": {
                                                                                        "id": 62,
                                                                                        "name": "string"
                                                                                    },
                                                                                    "contact": null
                                                                                }
                                                                            ],
                                                                            "analyticalSamples": [
                                                                                {
                                                                                    "id": 87,
                                                                                    "study": null,
                                                                                    "referenceNumber": "string",
                                                                                    "batchNumber": "string",
                                                                                    "preparation": "2022-04-13",
                                                                                    "expiry": "2022-04-13",
                                                                                    "origin": null,
                                                                                    "contact": null,
                                                                                    "description": "string",
                                                                                    "folder": null,
                                                                                    "notes": "string",
                                                                                    "constituent": null,
                                                                                    "basisOfData": "ANALYTICAL_REPORT",
                                                                                    "analyticalMethods": [
                                                                                        {
                                                                                            "id": 133,
                                                                                            "analyticalSample": null,
                                                                                            "analyticalMethod": "AAS"
                                                                                        }
                                                                                    ],
                                                                                    "analysis": "2022-04-13",
                                                                                    "linkedDocument": null,
                                                                                    "subConstituents": [
                                                                                        {
                                                                                            "id": 229,
                                                                                            "analyticalSample": null,
                                                                                            "name": "string",
                                                                                            "casNumber": "string",
                                                                                            "ecNumber": "string",
                                                                                            "carbonNumber": 127,
                                                                                            "inclusionPercent": 10.12,
                                                                                            "type": [
                                                                                                {
                                                                                                    "id": 214,
                                                                                                    "subConstituent": null,
                                                                                                    "subConstituentType": {
                                                                                                        "id": 131,
                                                                                                        "typeText": "string"
                                                                                                    },
                                                                                                    "ordinalPosition": 108,
                                                                                                    "typeText": "string"
                                                                                                }
                                                                                            ],
                                                                                            "typeText": "string",
                                                                                            "exportIndex": 213
                                                                                        }
                                                                                    ],
                                                                                    "entity": null,
                                                                                    "studyId": 198,
                                                                                    "analyticalMethodsOnly": [
                                                                                        "AAS"
                                                                                    ],
                                                                                    "folderName": "string"
                                                                                }
                                                                            ],
                                                                            "documentLinks": null,
                                                                            "contactRecipients": [
                                                                                {
                                                                                    "id": 281,
                                                                                    "type": "TO",
                                                                                    "firstName": "string",
                                                                                    "secondName": "string",
                                                                                    "emailAddress": "string",
                                                                                    "documentEmailInternal": null,
                                                                                    "contact": null,
                                                                                    "deleted": true,
                                                                                    "fullName": "string",
                                                                                    "domain": "string"
                                                                                }
                                                                            ],
                                                                            "campaignContacts": [
                                                                                {
                                                                                    "id": 215,
                                                                                    "clientPartition": null,
                                                                                    "campaign": {
                                                                                        "id": 168,
                                                                                        "clientPartition": null,
                                                                                        "name": "string",
                                                                                        "description": "string",
                                                                                        "startDate": "2022-04-13",
                                                                                        "endDate": "2022-04-13",
                                                                                        "menuName": "string",
                                                                                        "section": {
                                                                                            "id": 62,
                                                                                            "clientPartition": null,
                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                            "campaign": null,
                                                                                            "constituent": null,
                                                                                            "name": "string",
                                                                                            "parentSection": null,
                                                                                            "children": null,
                                                                                            "expand": true,
                                                                                            "deleted": true,
                                                                                            "pages": [
                                                                                                {
                                                                                                    "id": 142,
                                                                                                    "clientPartition": null,
                                                                                                    "created": "2022-04-13T15:42:05.901Z",
                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                    "name": "string",
                                                                                                    "index": 227,
                                                                                                    "content": "string",
                                                                                                    "caretPosition": "string",
                                                                                                    "type": "COMPANY_INFO",
                                                                                                    "roles": [
                                                                                                        {
                                                                                                            "id": 273,
                                                                                                            "clientPartition": null,
                                                                                                            "name": "string",
                                                                                                            "description": "string",
                                                                                                            "campaign": null,
                                                                                                            "campaignContacts": null,
                                                                                                            "pages": null,
                                                                                                            "tasks": [
                                                                                                                {
                                                                                                                    "id": 191,
                                                                                                                    "clientPartition": null,
                                                                                                                    "campaign": null,
                                                                                                                    "campaignContact": null,
                                                                                                                    "role": null,
                                                                                                                    "access": "PUBLIC",
                                                                                                                    "template": {
                                                                                                                        "id": 106,
                                                                                                                        "clientPartition": null,
                                                                                                                        "created": "2022-04-13T15:42:05.901Z",
                                                                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                        "campaign": null,
                                                                                                                        "name": "string",
                                                                                                                        "instructions": "string",
                                                                                                                        "endingInstructions": "string",
                                                                                                                        "type": "DISCUSSION",
                                                                                                                        "fields": [
                                                                                                                            {
                                                                                                                                "id": 212,
                                                                                                                                "template": null,
                                                                                                                                "type": "BOOLEAN",
                                                                                                                                "index": 75,
                                                                                                                                "required": true,
                                                                                                                                "range": true,
                                                                                                                                "rangeMinimum": 10.12,
                                                                                                                                "rangeMaximum": 10.12,
                                                                                                                                "question": "string",
                                                                                                                                "defaultValue": "string",
                                                                                                                                "options": [
                                                                                                                                    {
                                                                                                                                        "id": 214,
                                                                                                                                        "template": null,
                                                                                                                                        "option": "string"
                                                                                                                                    }
                                                                                                                                ]
                                                                                                                            }
                                                                                                                        ],
                                                                                                                        "iconClass": "string",
                                                                                                                        "lastUpdatedById": 171,
                                                                                                                        "url": "string",
                                                                                                                        "partitionId": 8,
                                                                                                                        "partition": null,
                                                                                                                        "display": "string",
                                                                                                                        "idInPartition": 14,
                                                                                                                        "recordName": "string",
                                                                                                                        "displayAttributes": [
                                                                                                                            {}
                                                                                                                        ],
                                                                                                                        "displayCodePartial": "string",
                                                                                                                        "displayArgs": [
                                                                                                                            "string"
                                                                                                                        ],
                                                                                                                        "breadcrumbParent": null,
                                                                                                                        "iconColour": "string"
                                                                                                                    },
                                                                                                                    "dueByDate": "2022-04-13",
                                                                                                                    "closesOnDate": "2022-04-13",
                                                                                                                    "instructions": "string",
                                                                                                                    "endingInstructions": "string",
                                                                                                                    "name": "string",
                                                                                                                    "taskType": "DISCUSSION",
                                                                                                                    "document": null,
                                                                                                                    "documentTwo": null,
                                                                                                                    "documentLinks": [
                                                                                                                        {
                                                                                                                            "id": {
                                                                                                                                "taskId": 78,
                                                                                                                                "documentId": 143,
                                                                                                                                "documentPartitionId": 259,
                                                                                                                                "document": null
                                                                                                                            },
                                                                                                                            "task": null,
                                                                                                                            "document": null,
                                                                                                                            "index": 292,
                                                                                                                            "campaign": null
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "constituent": null,
                                                                                                                    "surveyFields": [
                                                                                                                        {
                                                                                                                            "id": 101,
                                                                                                                            "fieldType": "BOOLEAN",
                                                                                                                            "name": "string",
                                                                                                                            "defaultValue": "string",
                                                                                                                            "selectOptionValues": [
                                                                                                                                {
                                                                                                                                    "id": 81,
                                                                                                                                    "surveyField": null,
                                                                                                                                    "value": "string",
                                                                                                                                    "index": 12
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "index": 178,
                                                                                                                            "required": true,
                                                                                                                            "range": true,
                                                                                                                            "rangeMinimum": 10.12,
                                                                                                                            "rangeMaximum": 10.12,
                                                                                                                            "campaignContactTask": null,
                                                                                                                            "surveyValues": [
                                                                                                                                {
                                                                                                                                    "id": 4,
                                                                                                                                    "surveyField": null,
                                                                                                                                    "value": "string",
                                                                                                                                    "deleted": true,
                                                                                                                                    "campaignContactEvent": {
                                                                                                                                        "id": 284,
                                                                                                                                        "clientPartition": null,
                                                                                                                                        "task": null,
                                                                                                                                        "contact": null,
                                                                                                                                        "eventDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                        "completed": true,
                                                                                                                                        "surveyValues": null,
                                                                                                                                        "documentDates": [
                                                                                                                                            {
                                                                                                                                                "id": 264,
                                                                                                                                                "document": null,
                                                                                                                                                "dateAccessed": "2022-04-13T15:42:05.901Z",
                                                                                                                                                "events": null
                                                                                                                                            }
                                                                                                                                        ],
                                                                                                                                        "useSurvey": {
                                                                                                                                            "id": 233,
                                                                                                                                            "clientPartition": null,
                                                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                                            "event": null,
                                                                                                                                            "contact": null,
                                                                                                                                            "campaign": null,
                                                                                                                                            "entity": null,
                                                                                                                                            "company": "string",
                                                                                                                                            "referrer": null,
                                                                                                                                            "referralCode": "string",
                                                                                                                                            "role": null,
                                                                                                                                            "date": "2022-04-13",
                                                                                                                                            "constituent": null,
                                                                                                                                            "status": "ACTIVE",
                                                                                                                                            "importedTonnage": 10.12,
                                                                                                                                            "exportedTonnage": 10.12,
                                                                                                                                            "orTonnage": 10.12,
                                                                                                                                            "useTonnages": [
                                                                                                                                                {
                                                                                                                                                    "id": 85,
                                                                                                                                                    "useSurvey": null,
                                                                                                                                                    "use": "b099739a-9da8-4116-9fb4-19d4a2845b48",
                                                                                                                                                    "useNameFallback": "string",
                                                                                                                                                    "useLifeCycleFallback": "string",
                                                                                                                                                    "tonnage": 10.12,
                                                                                                                                                    "maxSiteTonnage": 10.12,
                                                                                                                                                    "notes": "string",
                                                                                                                                                    "exposureMonitored": true,
                                                                                                                                                    "proceduresDocumented": true,
                                                                                                                                                    "legalEmissions": true,
                                                                                                                                                    "functions": [
                                                                                                                                                        {
                                                                                                                                                            "id": 286,
                                                                                                                                                            "useSurveyTonnage": null,
                                                                                                                                                            "functionId": 17,
                                                                                                                                                            "functionNameFallback": "string"
                                                                                                                                                        }
                                                                                                                                                    ],
                                                                                                                                                    "tonnageDetails": [
                                                                                                                                                        {
                                                                                                                                                            "id": 259,
                                                                                                                                                            "useSurveyTonnage": null,
                                                                                                                                                            "productCategory": "string",
                                                                                                                                                            "processCategory": 113,
                                                                                                                                                            "localVentilation": true,
                                                                                                                                                            "roomVentilation": "BASIC",
                                                                                                                                                            "additionalMeasures": [
                                                                                                                                                                "CLOSED_LOOP_SAMPLING"
                                                                                                                                                            ],
                                                                                                                                                            "goggles": true,
                                                                                                                                                            "masks": "YES_10",
                                                                                                                                                            "gloves": "YES_80",
                                                                                                                                                            "location": "INDOOR",
                                                                                                                                                            "duration": "BELOW_15",
                                                                                                                                                            "temperature": 10.12,
                                                                                                                                                            "concentrationRange": "BELOW_1",
                                                                                                                                                            "concentration": 10.12
                                                                                                                                                        }
                                                                                                                                                    ],
                                                                                                                                                    "sdsFileIds": [
                                                                                                                                                        "2c7e4e51-9643-433b-9e40-f55ebd2f88a4"
                                                                                                                                                    ],
                                                                                                                                                    "sdsFileNames": [
                                                                                                                                                        "string"
                                                                                                                                                    ]
                                                                                                                                                }
                                                                                                                                            ],
                                                                                                                                            "notes": "string",
                                                                                                                                            "empty": true,
                                                                                                                                            "entities": null,
                                                                                                                                            "ceasedManufacture": true,
                                                                                                                                            "onlyRepresentative": true,
                                                                                                                                            "lastUpdatedById": 298,
                                                                                                                                            "name": "string",
                                                                                                                                            "url": "string",
                                                                                                                                            "partitionId": 249,
                                                                                                                                            "partition": null,
                                                                                                                                            "display": "string",
                                                                                                                                            "idInPartition": 254,
                                                                                                                                            "recordName": "string",
                                                                                                                                            "displayAttributes": [
                                                                                                                                                {}
                                                                                                                                            ],
                                                                                                                                            "displayCodePartial": "string",
                                                                                                                                            "displayArgs": [
                                                                                                                                                "string"
                                                                                                                                            ],
                                                                                                                                            "breadcrumbParent": null,
                                                                                                                                            "iconClass": "string",
                                                                                                                                            "iconColour": "string"
                                                                                                                                        },
                                                                                                                                        "fileId": "743a041d-1b9a-438f-87e9-26343d0c793e",
                                                                                                                                        "url": "string",
                                                                                                                                        "campaign": null,
                                                                                                                                        "display": "string",
                                                                                                                                        "responses": [
                                                                                                                                            {
                                                                                                                                                "id": 266,
                                                                                                                                                "surveyField": null,
                                                                                                                                                "value": "string",
                                                                                                                                                "deleted": true,
                                                                                                                                                "fieldType": "BOOLEAN",
                                                                                                                                                "file": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ=",
                                                                                                                                                "fileName": "string",
                                                                                                                                                "valueAsUUID": "6f600b9a-e957-4c5c-9463-9aaa41c22767",
                                                                                                                                                "valueAsDate": "2022-04-13",
                                                                                                                                                "valueSanitized": "string"
                                                                                                                                            }
                                                                                                                                        ],
                                                                                                                                        "deleted": true,
                                                                                                                                        "calendarStart": "2022-04-13T15:42:05.901Z",
                                                                                                                                        "responsesDeleted": true,
                                                                                                                                        "downloadedDocumentIds": [
                                                                                                                                            17
                                                                                                                                        ],
                                                                                                                                        "downloadedOldDocumentsOf": [
                                                                                                                                            155
                                                                                                                                        ],
                                                                                                                                        "calendarSource": "PRODUCT",
                                                                                                                                        "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                                        "allDay": true,
                                                                                                                                        "calendarDisplay": "string",
                                                                                                                                        "calendarExtendedProps": {},
                                                                                                                                        "name": "string",
                                                                                                                                        "partitionId": 172,
                                                                                                                                        "partition": null,
                                                                                                                                        "idInPartition": 257,
                                                                                                                                        "recordName": "string",
                                                                                                                                        "displayAttributes": [
                                                                                                                                            {}
                                                                                                                                        ],
                                                                                                                                        "displayCodePartial": "string",
                                                                                                                                        "displayArgs": [
                                                                                                                                            "string"
                                                                                                                                        ],
                                                                                                                                        "breadcrumbParent": null,
                                                                                                                                        "iconClass": "string",
                                                                                                                                        "iconColour": "string"
                                                                                                                                    },
                                                                                                                                    "fieldType": "BOOLEAN",
                                                                                                                                    "file": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ=",
                                                                                                                                    "fileName": "string",
                                                                                                                                    "valueAsUUID": "b9f5444b-8ad0-48f3-97e1-ed74a6587aba",
                                                                                                                                    "valueAsDate": "2022-04-13",
                                                                                                                                    "valueSanitized": "string"
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "nameIssues": [
                                                                                                                                {
                                                                                                                                    "uuid": "65a9108c-09da-448e-9bd2-01ab8e6da9c6",
                                                                                                                                    "error": "string",
                                                                                                                                    "html": "string"
                                                                                                                                }
                                                                                                                            ],
                                                                                                                            "nameContainsHtml": true,
                                                                                                                            "nameAsText": "string",
                                                                                                                            "selectValuesArray": [
                                                                                                                                "string"
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "entityRoles": null,
                                                                                                                    "uses": [
                                                                                                                        "e85651dd-e49d-4f66-a3a2-8e49e1178a76"
                                                                                                                    ],
                                                                                                                    "user": null,
                                                                                                                    "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                                    "uploadNotificationEmail": "string",
                                                                                                                    "pages": null,
                                                                                                                    "taskGroupLinks": [
                                                                                                                        {
                                                                                                                            "id": {
                                                                                                                                "taskGroupId": 176,
                                                                                                                                "taskId": 171
                                                                                                                            },
                                                                                                                            "taskGroup": {
                                                                                                                                "id": 191,
                                                                                                                                "clientPartition": null,
                                                                                                                                "name": "string",
                                                                                                                                "description": "string",
                                                                                                                                "campaign": null,
                                                                                                                                "taskLinks": null,
                                                                                                                                "pages": [
                                                                                                                                    {
                                                                                                                                        "id": 226,
                                                                                                                                        "taskGroup": null,
                                                                                                                                        "page": null,
                                                                                                                                        "cutOffDate": "2022-04-13",
                                                                                                                                        "index": 86
                                                                                                                                    }
                                                                                                                                ],
                                                                                                                                "url": "string",
                                                                                                                                "breadcrumbParent": null,
                                                                                                                                "iconClass": "string",
                                                                                                                                "descriptionContainsHtml": true,
                                                                                                                                "partitionId": 60,
                                                                                                                                "partition": null,
                                                                                                                                "display": "string",
                                                                                                                                "idInPartition": 103,
                                                                                                                                "recordName": "string",
                                                                                                                                "displayAttributes": [
                                                                                                                                    {}
                                                                                                                                ],
                                                                                                                                "displayCodePartial": "string",
                                                                                                                                "displayArgs": [
                                                                                                                                    "string"
                                                                                                                                ],
                                                                                                                                "iconColour": "string"
                                                                                                                            },
                                                                                                                            "task": null,
                                                                                                                            "index": 74
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "deleted": true,
                                                                                                                    "watchingUsers": null,
                                                                                                                    "comments": [
                                                                                                                        {
                                                                                                                            "id": 296,
                                                                                                                            "replyTo": null,
                                                                                                                            "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                                            "user": null,
                                                                                                                            "contact": null,
                                                                                                                            "text": "string",
                                                                                                                            "published": true,
                                                                                                                            "replies": null,
                                                                                                                            "notifications": null,
                                                                                                                            "calendarSource": "PRODUCT",
                                                                                                                            "hidden": true,
                                                                                                                            "reply": true,
                                                                                                                            "greatestAncestor": null,
                                                                                                                            "replyToIsUnpublished": true,
                                                                                                                            "serverCreatedReadableDate": "string",
                                                                                                                            "lastUpdatedBy": null,
                                                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                            "lastUpdatedById": 255,
                                                                                                                            "name": "string",
                                                                                                                            "partition": null,
                                                                                                                            "display": "string",
                                                                                                                            "idInPartition": 158,
                                                                                                                            "recordName": "string",
                                                                                                                            "displayAttributes": [
                                                                                                                                {}
                                                                                                                            ],
                                                                                                                            "displayCodePartial": "string",
                                                                                                                            "displayArgs": [
                                                                                                                                "string"
                                                                                                                            ],
                                                                                                                            "breadcrumbParent": null,
                                                                                                                            "iconClass": "string",
                                                                                                                            "iconColour": "string",
                                                                                                                            "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                            "allDay": true,
                                                                                                                            "calendarExtendedProps": {}
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "events": null,
                                                                                                                    "uploadNotifications": [
                                                                                                                        {
                                                                                                                            "id": 95,
                                                                                                                            "partitionId": 4,
                                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                                            "user": null,
                                                                                                                            "read": true,
                                                                                                                            "campaignContactTask": null,
                                                                                                                            "contact": null,
                                                                                                                            "fileName": "string",
                                                                                                                            "baseUrl": "string",
                                                                                                                            "url": "string",
                                                                                                                            "mailjetTemplateName": "string",
                                                                                                                            "displayCode": "string",
                                                                                                                            "mailjetTemplateVars": {},
                                                                                                                            "mailjetTemplateEmail": null,
                                                                                                                            "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                            "name": "string",
                                                                                                                            "partition": null,
                                                                                                                            "display": "string",
                                                                                                                            "idInPartition": 206,
                                                                                                                            "recordName": "string",
                                                                                                                            "displayAttributes": [
                                                                                                                                {}
                                                                                                                            ],
                                                                                                                            "displayCodePartial": "string",
                                                                                                                            "displayArgs": [
                                                                                                                                "string"
                                                                                                                            ],
                                                                                                                            "breadcrumbParent": null,
                                                                                                                            "iconClass": "string",
                                                                                                                            "iconColour": "string"
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "surveyNotifications": [
                                                                                                                        {
                                                                                                                            "id": 55,
                                                                                                                            "partitionId": 225,
                                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                                            "user": null,
                                                                                                                            "read": true,
                                                                                                                            "campaignContactTask": null,
                                                                                                                            "contact": null,
                                                                                                                            "baseUrl": "string",
                                                                                                                            "url": "string",
                                                                                                                            "mailjetTemplateName": "string",
                                                                                                                            "taskUrl": "string",
                                                                                                                            "displayCode": "string",
                                                                                                                            "mailjetTemplateVars": {},
                                                                                                                            "mailjetTemplateEmail": null,
                                                                                                                            "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                            "name": "string",
                                                                                                                            "partition": null,
                                                                                                                            "display": "string",
                                                                                                                            "idInPartition": 237,
                                                                                                                            "recordName": "string",
                                                                                                                            "displayAttributes": [
                                                                                                                                {}
                                                                                                                            ],
                                                                                                                            "displayCodePartial": "string",
                                                                                                                            "displayArgs": [
                                                                                                                                "string"
                                                                                                                            ],
                                                                                                                            "breadcrumbParent": null,
                                                                                                                            "iconClass": "string",
                                                                                                                            "iconColour": "string"
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "iuclidReviewNotifications": [
                                                                                                                        {
                                                                                                                            "id": 236,
                                                                                                                            "partitionId": 14,
                                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                                            "user": null,
                                                                                                                            "read": true,
                                                                                                                            "campaignContactTask": null,
                                                                                                                            "contact": null,
                                                                                                                            "baseUrl": "string",
                                                                                                                            "url": "string",
                                                                                                                            "mailjetTemplateName": "string",
                                                                                                                            "approval": true,
                                                                                                                            "displayCode": "string",
                                                                                                                            "mailjetTemplateVars": {},
                                                                                                                            "mailjetTemplateEmail": null,
                                                                                                                            "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                            "name": "string",
                                                                                                                            "partition": null,
                                                                                                                            "display": "string",
                                                                                                                            "idInPartition": 216,
                                                                                                                            "recordName": "string",
                                                                                                                            "displayAttributes": [
                                                                                                                                {}
                                                                                                                            ],
                                                                                                                            "displayCodePartial": "string",
                                                                                                                            "displayArgs": [
                                                                                                                                "string"
                                                                                                                            ],
                                                                                                                            "breadcrumbParent": null,
                                                                                                                            "iconClass": "string",
                                                                                                                            "iconColour": "string"
                                                                                                                        }
                                                                                                                    ],
                                                                                                                    "documentsList": null,
                                                                                                                    "sendCustomSurveyNotificationEmail": true,
                                                                                                                    "showDocumentNameOnDownloads": true,
                                                                                                                    "public": true,
                                                                                                                    "closed": true,
                                                                                                                    "groups": null,
                                                                                                                    "url": "string",
                                                                                                                    "archived": true,
                                                                                                                    "letterOfAccessRelated": true,
                                                                                                                    "firstActiveDocument": null,
                                                                                                                    "containingArchivedDocument": true,
                                                                                                                    "instructionsIssues": null,
                                                                                                                    "endingInstructionsIssues": null,
                                                                                                                    "recordName": "string",
                                                                                                                    "breadcrumbParent": null,
                                                                                                                    "iconClass": "string",
                                                                                                                    "webPortalDisplays": "string",
                                                                                                                    "campaignIfUnrestricted": null,
                                                                                                                    "firstActiveIuclid": {
                                                                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                        "id": 163,
                                                                                                                        "partition": null,
                                                                                                                        "title": "string",
                                                                                                                        "description": "string",
                                                                                                                        "fileName": "string",
                                                                                                                        "originalFileName": "string",
                                                                                                                        "link": true,
                                                                                                                        "fileSize": 216,
                                                                                                                        "uploadDate": "2022-04-13T15:42:05.901Z",
                                                                                                                        "documentCreationDate": "2022-04-13",
                                                                                                                        "fileType": "UNKNOWN",
                                                                                                                        "docType": "DOCUMENT",
                                                                                                                        "expiryDate": "2022-04-13",
                                                                                                                        "retentionDate": "2022-04-13",
                                                                                                                        "permanent": true,
                                                                                                                        "products": null,
                                                                                                                        "constituents": null,
                                                                                                                        "categoryGroups": null,
                                                                                                                        "productGroups": null,
                                                                                                                        "entities": null,
                                                                                                                        "documentEntityGroups": null,
                                                                                                                        "entityGroups": null,
                                                                                                                        "documentContactGroups": null,
                                                                                                                        "contactGroups": null,
                                                                                                                        "documentTagSet": null,
                                                                                                                        "linkedDocuments": null,
                                                                                                                        "version": 167,
                                                                                                                        "versionIdentifier": "string",
                                                                                                                        "currentDocumentId": 150,
                                                                                                                        "currentDocument": null,
                                                                                                                        "newsItem": true,
                                                                                                                        "deleted": true,
                                                                                                                        "deletedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                        "fileId": "8a1dd1d1-bfc3-4712-b4dd-027f8472084d",
                                                                                                                        "watchingUsers": null,
                                                                                                                        "expiryNotifications": [
                                                                                                                            {
                                                                                                                                "id": 285,
                                                                                                                                "partitionId": 68,
                                                                                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                "user": null,
                                                                                                                                "read": true,
                                                                                                                                "document": null,
                                                                                                                                "expiryDate": "2022-04-13",
                                                                                                                                "url": "string",
                                                                                                                                "mailjetTemplateName": "string",
                                                                                                                                "displayCode": "string",
                                                                                                                                "mailjetTemplateVars": {},
                                                                                                                                "daysUntilExpiry": 105,
                                                                                                                                "drc": true,
                                                                                                                                "mailjetTemplateEmail": null,
                                                                                                                                "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                "name": "string",
                                                                                                                                "partition": null,
                                                                                                                                "display": "string",
                                                                                                                                "idInPartition": 289,
                                                                                                                                "recordName": "string",
                                                                                                                                "displayAttributes": [
                                                                                                                                    {}
                                                                                                                                ],
                                                                                                                                "displayCodePartial": "string",
                                                                                                                                "displayArgs": [
                                                                                                                                    "string"
                                                                                                                                ],
                                                                                                                                "breadcrumbParent": null,
                                                                                                                                "iconClass": "string",
                                                                                                                                "iconColour": "string"
                                                                                                                            }
                                                                                                                        ],
                                                                                                                        "retentionNotifications": [
                                                                                                                            {
                                                                                                                                "id": 79,
                                                                                                                                "partitionId": 32,
                                                                                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                                                                                "user": null,
                                                                                                                                "read": true,
                                                                                                                                "document": null,
                                                                                                                                "retentionDate": "2022-04-13",
                                                                                                                                "url": "string",
                                                                                                                                "mailjetTemplateName": "string",
                                                                                                                                "displayCode": "string",
                                                                                                                                "mailjetTemplateVars": {},
                                                                                                                                "daysUntilExpiry": 204,
                                                                                                                                "mailjetTemplateEmail": null,
                                                                                                                                "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                "name": "string",
                                                                                                                                "partition": null,
                                                                                                                                "display": "string",
                                                                                                                                "idInPartition": 152,
                                                                                                                                "recordName": "string",
                                                                                                                                "displayAttributes": [
                                                                                                                                    {}
                                                                                                                                ],
                                                                                                                                "displayCodePartial": "string",
                                                                                                                                "displayArgs": [
                                                                                                                                    "string"
                                                                                                                                ],
                                                                                                                                "breadcrumbParent": null,
                                                                                                                                "iconClass": "string",
                                                                                                                                "iconColour": "string"
                                                                                                                            }
                                                                                                                        ],
                                                                                                                        "notifyEmail": "string",
                                                                                                                        "expirationNotified": true,
                                                                                                                        "retentionNotified": true,
                                                                                                                        "folders": null,
                                                                                                                        "taskLinks": null,
                                                                                                                        "taskTwoLinks": null,
                                                                                                                        "downloadTaskLinks": null,
                                                                                                                        "constituentTonnages": [
                                                                                                                            {
                                                                                                                                "id": 162,
                                                                                                                                "reachLegislation": "EU_REACH",
                                                                                                                                "registration": {
                                                                                                                                    "id": 300,
                                                                                                                                    "constituent": null,
                                                                                                                                    "forEntity": null,
                                                                                                                                    "reachLegislation": "EU_REACH",
                                                                                                                                    "legalEntity": null,
                                                                                                                                    "ecName": "string",
                                                                                                                                    "ecNumber": "string",
                                                                                                                                    "submissionNumber": "string",
                                                                                                                                    "registrationNumber": "string",
                                                                                                                                    "registrationName": "string",
                                                                                                                                    "registrationDate": "2022-04-13",
                                                                                                                                    "registrationNotes": "string",
                                                                                                                                    "publicName": "string",
                                                                                                                                    "submissionDate": "2022-04-13",
                                                                                                                                    "uclidID": "string",
                                                                                                                                    "reachRole": "MANUFACTURER",
                                                                                                                                    "reachSubstanceTypeComposition": "MONO_CONSTITUENT",
                                                                                                                                    "substanceTypeCompositionOther": "string",
                                                                                                                                    "reachSubstanceTypeOrigin": "ELEMENT",
                                                                                                                                    "substanceTypeOriginOther": "string",
                                                                                                                                    "originEntity": null,
                                                                                                                                    "onlyRepresentative": null,
                                                                                                                                    "preregistrationName": "string",
                                                                                                                                    "preregistrationNumber": "string",
                                                                                                                                    "preregistrationDate": "2022-04-13",
                                                                                                                                    "preregisteredTonnageBand": "BAND_1",
                                                                                                                                    "notPreregistered": "string",
                                                                                                                                    "exemptionType": "EXEMPTION",
                                                                                                                                    "exemption": "string",
                                                                                                                                    "exemptionClaimed": "string",
                                                                                                                                    "exemptionComment": "string",
                                                                                                                                    "reachITRegistrations": [
                                                                                                                                        {
                                                                                                                                            "id": 106,
                                                                                                                                            "reachRegistration": null,
                                                                                                                                            "dateSubmitted": "2022-04-13",
                                                                                                                                            "dateIssued": "2022-04-13",
                                                                                                                                            "dateAccepted": "2022-04-13",
                                                                                                                                            "reachDossierType": "A",
                                                                                                                                            "tonnageBand": "BAND1",
                                                                                                                                            "reason": "CEASE_OF_MANUFACTURE",
                                                                                                                                            "notes": "string",
                                                                                                                                            "iuclidDossierReference": "string",
                                                                                                                                            "submissionNumber": "string",
                                                                                                                                            "passedPipeline": true,
                                                                                                                                            "supportingDocument": null,
                                                                                                                                            "partitionId": 226,
                                                                                                                                            "constituent": null,
                                                                                                                                            "forEntity": null,
                                                                                                                                            "leadRegistrant": null
                                                                                                                                        }
                                                                                                                                    ],
                                                                                                                                    "registeredTonnageBands": [
                                                                                                                                        {
                                                                                                                                            "id": 173,
                                                                                                                                            "reachRegistration": null,
                                                                                                                                            "registeredTonnageBand": "BAND_1",
                                                                                                                                            "start": "2022-04-13",
                                                                                                                                            "url": "string",
                                                                                                                                            "calendarStart": "2022-04-13T15:42:05.901Z",
                                                                                                                                            "allDay": true,
                                                                                                                                            "calendarDisplay": "string",
                                                                                                                                            "calendarSource": "PRODUCT",
                                                                                                                                            "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                                            "calendarExtendedProps": {},
                                                                                                                                            "name": "string",
                                                                                                                                            "partitionId": 205,
                                                                                                                                            "partition": null,
                                                                                                                                            "display": "string",
                                                                                                                                            "idInPartition": 275,
                                                                                                                                            "recordName": "string",
                                                                                                                                            "displayAttributes": [
                                                                                                                                                {}
                                                                                                                                            ],
                                                                                                                                            "displayCodePartial": "string",
                                                                                                                                            "displayArgs": [
                                                                                                                                                "string"
                                                                                                                                            ],
                                                                                                                                            "breadcrumbParent": null,
                                                                                                                                            "iconClass": "string",
                                                                                                                                            "iconColour": "string"
                                                                                                                                        }
                                                                                                                                    ],
                                                                                                                                    "preregistered": true,
                                                                                                                                    "enquiryNumber": "string",
                                                                                                                                    "ppordNumber": "string",
                                                                                                                                    "submissionType": "GRANDFATHERED",
                                                                                                                                    "reachDossierType": "A",
                                                                                                                                    "constituentTonnages": null,
                                                                                                                                    "partitionId": 4,
                                                                                                                                    "currentTonnageBandToImport": "BAND_1",
                                                                                                                                    "lastUpdatedBy": null,
                                                                                                                                    "lastUpdated": "2022-04-13T15:42:05.901Z"
                                                                                                                                },
                                                                                                                                "percentage": 10.12,
                                                                                                                                "constituent": null,
                                                                                                                                "entryYear": 9,
                                                                                                                                "forecast": true,
                                                                                                                                "tonnesOwnProduction": 10.12,
                                                                                                                                "tonnesOwnImport": 10.12,
                                                                                                                                "site": null,
                                                                                                                                "notes": "string",
                                                                                                                                "enteredDate": "2022-04-13",
                                                                                                                                "substanceOrUnknown": 10.12,
                                                                                                                                "monomerInAPolymer": 10.12,
                                                                                                                                "mixture": 10.12,
                                                                                                                                "inAnArticle": 10.12,
                                                                                                                                "notInAnArticle": 10.12,
                                                                                                                                "document": null,
                                                                                                                                "user": null,
                                                                                                                                "lastUpdated": "2022-04-13",
                                                                                                                                "deleted": true,
                                                                                                                                "forEntity": null
                                                                                                                            }
                                                                                                                        ],
                                                                                                                        "productTonnages": [
                                                                                                                            {
                                                                                                                                "id": 290,
                                                                                                                                "reachLegislation": "EU_REACH",
                                                                                                                                "forEntity": null,
                                                                                                                                "product": null,
                                                                                                                                "entryYear": 220,
                                                                                                                                "forecast": true,
                                                                                                                                "notes": "string",
                                                                                                                                "enteredDate": "2022-04-13",
                                                                                                                                "substanceOrUnknown": 10.12,
                                                                                                                                "monomerInAPolymer": 10.12,
                                                                                                                                "mixture": 10.12,
                                                                                                                                "inAnArticle": 10.12,
                                                                                                                                "notInAnArticle": 10.12,
                                                                                                                                "document": null,
                                                                                                                                "tonnesManufactured": 10.12,
                                                                                                                                "tonnesImported": 10.12,
                                                                                                                                "party": null,
                                                                                                                                "user": null,
                                                                                                                                "lastUpdated": "2022-04-13",
                                                                                                                                "deleted": true
                                                                                                                            }
                                                                                                                        ],
                                                                                                                        "comments": [
                                                                                                                            {
                                                                                                                                "id": 21,
                                                                                                                                "replyTo": null,
                                                                                                                                "createdDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                "user": null,
                                                                                                                                "contact": null,
                                                                                                                                "text": "string",
                                                                                                                                "published": true,
                                                                                                                                "replies": null,
                                                                                                                                "notifications": null,
                                                                                                                                "node": {
                                                                                                                                    "id": 7,
                                                                                                                                    "code": "string",
                                                                                                                                    "forType": "string",
                                                                                                                                    "title": "string",
                                                                                                                                    "matrix": true,
                                                                                                                                    "children": null,
                                                                                                                                    "records": [
                                                                                                                                        {
                                                                                                                                            "type": "DOCUMENT",
                                                                                                                                            "iuclidVersion": "string",
                                                                                                                                            "key": "string",
                                                                                                                                            "name": "string",
                                                                                                                                            "documentType": "string",
                                                                                                                                            "subType": "string",
                                                                                                                                            "orderInSectionNo": "string",
                                                                                                                                            "definitionVersion": "string",
                                                                                                                                            "creationDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                            "lastModificationDate": "2022-04-13T15:42:05.901Z",
                                                                                                                                            "submissionType": "string",
                                                                                                                                            "submissionTypeVersion": "string",
                                                                                                                                            "submittingLegalEntity": "string",
                                                                                                                                            "dossier": null,
                                                                                                                                            "dossierSubjectKey": "string",
                                                                                                                                            "dossierSubject": null,
                                                                                                                                            "i5Origin": true,
                                                                                                                                            "creationTool": "string",
                                                                                                                                            "snapshotCreationTool": "string",
                                                                                                                                            "href": "string",
                                                                                                                                            "attachments": null,
                                                                                                                                            "literatureDocuments": null,
                                                                                                                                            "otherReferences": null,
                                                                                                                                            "templates": null,
                                                                                                                                            "categories": null,
                                                                                                                                            "records": {},
                                                                                                                                            "tree": null,
                                                                                                                                            "ownerLegalEntity": null,
                                                                                                                                            "refSubstance": null,
                                                                                                                                            "substances": null,
                                                                                                                                            "containerId": "string",
                                                                                                                                            "i6CategoryDocumentDefinitionIdentifiers": [
                                                                                                                                                {
                                                                                                                                                    "documentType": "string",
                                                                                                                                                    "documentSubType": "string"
                                                                                                                                                }
                                                                                                                                            ],
                                                                                                                                            "changeType": "ADDED",
                                                                                                                                            "commentCount": 107,
                                                                                                                                            "descendantComments": true,
                                                                                                                                            "content": "TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQ=",
                                                                                                                                            "subject": null,
                                                                                                                                            "definition": "string",
                                                                                                                                            "template": true,
                                                                                                                                            "uuid": "string",
                                                                                                                                            "display": "string",
                                                                                                                                            "category": true,
                                                                                                                                            "creationDateFromString": "string",
                                                                                                                                            "lastModificationDateFromString": "string",
                                                                                                                                            "substance": true,
                                                                                                                                            "idString": "string",
                                                                                                                                            "endpointSummary": true
                                                                                                                                        }
                                                                                                                                    ],
                                                                                                                                    "changeType": "ADDED",
                                                                                                                                    "commentCount": 220,
                                                                                                                                    "descendantComments": true,
                                                                                                                                    "display": "string",
                                                                                                                                    "idString": "string"
                                                                                                                                },
                                                                                                                                "wrapperId": "string",
                                                                                                                                "calendarSource": "PRODUCT",
                                                                                                                                "forTocEntry": true,
                                                                                                                                "name": "string",
                                                                                                                                "partition": null,
                                                                                                                                "display": "string",
                                                                                                                                "idInPartition": 100,
                                                                                                                                "recordName": "string",
                                                                                                                                "displayAttributes": [
                                                                                                                                    {}
                                                                                                                                ],
                                                                                                                                "displayCodePartial": "string",
                                                                                                                                "displayArgs": [
                                                                                                                                    "string"
                                                                                                                                ],
                                                                                                                                "breadcrumbParent": null,
                                                                                                                                "iconClass": "string",
                                                                                                                                "iconColour": "string",
                                                                                                                                "hidden": true,
                                                                                                                                "reply": true,
                                                                                                                                "greatestAncestor": null,
                                                                                                                                "replyToIsUnpublished": true,
                                                                                                                                "serverCreatedReadableDate": "string",
                                                                                                                                "lastUpdatedBy": null,
                                                                                                                                "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                                "lastUpdatedById": 49,
                                                                                                                                "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                                                                                "allDay": true,
                                                                                                                                "calendarExtendedProps": {}
                                                                                                                            }
                                                                                                                        ],
                                                                                                                        "searchedVia": null,
                                                                                                                        "integration": {
                                                                                                                            "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                                                                            "id": 27,
                                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                                            "type": "BOCOUNT_EXPORT_INVOICES",
                                                                                                                            "name": "string",
                                                                                                                            "host": "string",
                                                                                                                            "principal": "string",
                                                                                                                            "credential": "string",
                                                                                                                            "token": "string",
                                                                                                                            "tokenTransient": "string",
                                                                                                                            "tokenExpires": "2022-04-13T15:42:05.901Z",
                                                                                                                            "refreshToken": "string",
                                                                                                                            "authType": "PLAIN",
                                                                                                                            "entity": null,
                                                                                                                            "iuclidDocuments": null,
                                                                                                                            "display": "string",
                                                                                                                            "tokenExpired": true,
                                                                                                                            "tokenEncrypted": "string",
                                                                                                                            "refreshTokenEncrypted": "string",
                                                                                                                            "credentialEncrypted": "string",
                                                                                                                            "refreshTokenExpired": true
                                                                                                                        },
                                                                                                                        "IUCLIDAuthor": "string",
                                                                                                                        "legalEntity": "string",
                                                                                                                        "creationDate": "2022-04-13",
                                                                                                                        "uuid": "string",
                                                                                                                        "context": {
                                                                                                                            "id": 69,
                                                                                                                            "provider": "string",
                                                                                                                            "identifier": "string",
                                                                                                                            "title": "string",
                                                                                                                            "applicableFor": "string",
                                                                                                                            "tree": "string",
                                                                                                                            "key": "string"
                                                                                                                        },
                                                                                                                        "manifest": {
                                                                                                                            "title": "string",
                                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                                            "author": "string",
                                                                                                                            "application": "string",
                                                                                                                            "submissionTypeString": "string",
                                                                                                                            "context": null,
                                                                                                                            "archiveType": "string",
                                                                                                                            "legislation": {},
                                                                                                                            "comment": "string",
                                                                                                                            "baseDocumentUuid": "string",
                                                                                                                            "baseDocument": null,
                                                                                                                            "treeName": "string",
                                                                                                                            "relevantDocumentType": "string"
                                                                                                                        },
                                                                                                                        "iuclidauthor": "string",
                                                                                                                        "index": 166,
                                                                                                                        "relatedDocumentConstituents": null,
                                                                                                                        "relatedDocumentEntities": null,
                                                                                                                        "relatedDocumentProductGroups": null,
                                                                                                                        "relatedDocumentProducts": null,
                                                                                                                        "relatedDocumentContactGroups": null,
                                                                                                                        "partitionId": 182
                                                                                                                    },
                                                                                                                    "commentType": "string",
                                                                                                                    "commentsPermission": "ROLE_PRE_AUTH",
                                                                                                                    "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                                                                    "commentDisplayUrl": "string",
                                                                                                                    "watching": true,
                                                                                                                    "watchers": null,
                                                                                                                    "partitionId": 76,
                                                                                                                    "partition": null,
                                                                                                                    "display": "string",
                                                                                                                    "idInPartition": 64,
                                                                                                                    "displayAttributes": [
                                                                                                                        {}
                                                                                                                    ],
                                                                                                                    "displayCodePartial": "string",
                                                                                                                    "displayArgs": [
                                                                                                                        "string"
                                                                                                                    ],
                                                                                                                    "iconColour": "string"
                                                                                                                }
                                                                                                            ],
                                                                                                            "contactCount": 41,
                                                                                                            "tabCount": 176,
                                                                                                            "taskCount": 134,
                                                                                                            "inUse": true,
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "url": "string",
                                                                                                            "partitionId": 19,
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 67,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "iconColour": "string"
                                                                                                        }
                                                                                                    ],
                                                                                                    "access": "PUBLIC",
                                                                                                    "deleted": true,
                                                                                                    "visibleToDeactivated": true,
                                                                                                    "source": "ENTITY",
                                                                                                    "entity": null,
                                                                                                    "entityGroup": null,
                                                                                                    "cutOffDate": "2022-04-13",
                                                                                                    "invoicePageInfo": {
                                                                                                        "purchaseNumber": "string",
                                                                                                        "showing": "BOTH",
                                                                                                        "otherEntity": null,
                                                                                                        "address": "string",
                                                                                                        "vat": "string",
                                                                                                        "invoicePageFooter": "string",
                                                                                                        "invoicingContacts": "string"
                                                                                                    },
                                                                                                    "docType": "DOCUMENT",
                                                                                                    "tags": null,
                                                                                                    "task": null,
                                                                                                    "notifications": [
                                                                                                        {
                                                                                                            "id": 81,
                                                                                                            "partitionId": 102,
                                                                                                            "created": "2022-04-13T15:42:05.901Z",
                                                                                                            "user": null,
                                                                                                            "read": true,
                                                                                                            "page": null,
                                                                                                            "type": "ADDED",
                                                                                                            "baseUrl": "string",
                                                                                                            "url": "string",
                                                                                                            "mailjetTemplateName": "string",
                                                                                                            "displayCode": "string",
                                                                                                            "mailjetTemplateVars": {},
                                                                                                            "mailjetTemplateEmail": null,
                                                                                                            "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                            "name": "string",
                                                                                                            "partition": null,
                                                                                                            "display": "string",
                                                                                                            "idInPartition": 228,
                                                                                                            "recordName": "string",
                                                                                                            "displayAttributes": [
                                                                                                                {}
                                                                                                            ],
                                                                                                            "displayCodePartial": "string",
                                                                                                            "displayArgs": [
                                                                                                                "string"
                                                                                                            ],
                                                                                                            "breadcrumbParent": null,
                                                                                                            "iconClass": "string",
                                                                                                            "iconColour": "string"
                                                                                                        }
                                                                                                    ],
                                                                                                    "hidden": true,
                                                                                                    "public": true,
                                                                                                    "entities": null,
                                                                                                    "url": "string",
                                                                                                    "visible": true,
                                                                                                    "archived": true,
                                                                                                    "issues": null,
                                                                                                    "contact": null,
                                                                                                    "activeEntities": null,
                                                                                                    "constituent": null,
                                                                                                    "sections": null,
                                                                                                    "nameWithSections": "string",
                                                                                                    "ancestorsString": "string",
                                                                                                    "campaignContacts": null,
                                                                                                    "campaignNavigationLevel": 266,
                                                                                                    "menuIndex": 63,
                                                                                                    "allUsers": true,
                                                                                                    "menuParent": {
                                                                                                        "campaignNavigationLevel": 44,
                                                                                                        "expand": true,
                                                                                                        "menuIndex": 2,
                                                                                                        "menuParent": null,
                                                                                                        "menuAncestors": null,
                                                                                                        "name": "string",
                                                                                                        "id": {},
                                                                                                        "url": "string",
                                                                                                        "partitionId": 127,
                                                                                                        "partition": null,
                                                                                                        "display": "string",
                                                                                                        "idInPartition": 167,
                                                                                                        "recordName": "string",
                                                                                                        "displayAttributes": [
                                                                                                            {}
                                                                                                        ],
                                                                                                        "displayCodePartial": "string",
                                                                                                        "displayArgs": [
                                                                                                            "string"
                                                                                                        ],
                                                                                                        "breadcrumbParent": null,
                                                                                                        "iconClass": "string",
                                                                                                        "iconColour": "string"
                                                                                                    },
                                                                                                    "highestSection": null,
                                                                                                    "allFields": "string",
                                                                                                    "iconClass": "string",
                                                                                                    "associatedToArchivedContact": true,
                                                                                                    "membersUrl": "string",
                                                                                                    "expand": true,
                                                                                                    "menuAncestors": null,
                                                                                                    "partitionId": 0,
                                                                                                    "partition": null,
                                                                                                    "display": "string",
                                                                                                    "idInPartition": 116,
                                                                                                    "recordName": "string",
                                                                                                    "displayAttributes": [
                                                                                                        {}
                                                                                                    ],
                                                                                                    "displayCodePartial": "string",
                                                                                                    "displayArgs": [
                                                                                                        "string"
                                                                                                    ],
                                                                                                    "iconColour": "string",
                                                                                                    "lastUpdatedById": 288
                                                                                                }
                                                                                            ],
                                                                                            "menuIndex": 101,
                                                                                            "url": "string",
                                                                                            "display": "string",
                                                                                            "descendants": null,
                                                                                            "ancestorsString": "string",
                                                                                            "campaignNavigationLevel": 258,
                                                                                            "allPages": null,
                                                                                            "menuParent": null,
                                                                                            "recordName": "string",
                                                                                            "breadcrumbParent": null,
                                                                                            "iconClass": "string",
                                                                                            "iconColour": "string",
                                                                                            "updateOptions": {
                                                                                                "campaignId": 237,
                                                                                                "updateRole": true,
                                                                                                "defaultRoleId": 83,
                                                                                                "createCampaigns": true,
                                                                                                "createContacts": true,
                                                                                                "forCampaign": true
                                                                                            },
                                                                                            "menuAncestors": null,
                                                                                            "partitionId": 46,
                                                                                            "partition": null,
                                                                                            "idInPartition": 147,
                                                                                            "displayAttributes": [
                                                                                                {}
                                                                                            ],
                                                                                            "displayCodePartial": "string",
                                                                                            "displayArgs": [
                                                                                                "string"
                                                                                            ],
                                                                                            "lastUpdatedById": 285
                                                                                        },
                                                                                        "expand": true,
                                                                                        "footerAddress": "string",
                                                                                        "footerLink": "string",
                                                                                        "footerPhone": "string",
                                                                                        "termsAndConditionsText": "string",
                                                                                        "menuIndex": 144,
                                                                                        "deleted": true,
                                                                                        "uploadingLock": true,
                                                                                        "contacts": null,
                                                                                        "roles": null,
                                                                                        "sections": null,
                                                                                        "pages": null,
                                                                                        "tasks": null,
                                                                                        "taskGroups": null,
                                                                                        "campaignEvents": [
                                                                                            {
                                                                                                "id": 118,
                                                                                                "campaign": null,
                                                                                                "eventTime": "2022-04-13T15:42:05.901Z",
                                                                                                "campaignContacts": null,
                                                                                                "displayName": "string"
                                                                                            }
                                                                                        ],
                                                                                        "watchingUsers": null,
                                                                                        "securityIssueNotifications": [
                                                                                            {
                                                                                                "id": 192,
                                                                                                "partitionId": 244,
                                                                                                "created": "2022-04-13T15:42:05.901Z",
                                                                                                "user": null,
                                                                                                "read": true,
                                                                                                "campaign": null,
                                                                                                "hasPageSecurityIssues": true,
                                                                                                "url": "string",
                                                                                                "mailjetTemplateName": "string",
                                                                                                "displayCode": "string",
                                                                                                "mailjetTemplateVars": {},
                                                                                                "displayIssueType": "string",
                                                                                                "mailjetTemplateEmail": null,
                                                                                                "serverCreatedDate": "2022-04-13T15:42:05.901Z",
                                                                                                "name": "string",
                                                                                                "partition": null,
                                                                                                "display": "string",
                                                                                                "idInPartition": 192,
                                                                                                "recordName": "string",
                                                                                                "displayAttributes": [
                                                                                                    {}
                                                                                                ],
                                                                                                "displayCodePartial": "string",
                                                                                                "displayArgs": [
                                                                                                    "string"
                                                                                                ],
                                                                                                "breadcrumbParent": null,
                                                                                                "iconClass": "string",
                                                                                                "iconColour": "string"
                                                                                            }
                                                                                        ],
                                                                                        "closed": true,
                                                                                        "url": "string",
                                                                                        "visible": true,
                                                                                        "display": "string",
                                                                                        "campaignNavigationLevel": 97,
                                                                                        "onlyPublicAccessForUser": true,
                                                                                        "watching": true,
                                                                                        "menuParent": null,
                                                                                        "breadcrumbParent": null,
                                                                                        "iconClass": "string",
                                                                                        "iconColour": "string",
                                                                                        "footerPresent": true,
                                                                                        "menuAncestors": null,
                                                                                        "partitionId": 145,
                                                                                        "partition": null,
                                                                                        "idInPartition": 136,
                                                                                        "recordName": "string",
                                                                                        "displayAttributes": [
                                                                                            {}
                                                                                        ],
                                                                                        "displayCodePartial": "string",
                                                                                        "displayArgs": [
                                                                                            "string"
                                                                                        ],
                                                                                        "emailCode": "string",
                                                                                        "emailPrefix": "string",
                                                                                        "oneToOne": true
                                                                                    },
                                                                                    "contact": null,
                                                                                    "roles": null,
                                                                                    "tasks": null,
                                                                                    "pages": null,
                                                                                    "lastLoggedIn": "2022-04-13T15:42:05.901Z",
                                                                                    "deleted": true,
                                                                                    "fullName": "string",
                                                                                    "email": "string",
                                                                                    "user": null,
                                                                                    "lastName": "string",
                                                                                    "firstName": "string",
                                                                                    "recordName": "string",
                                                                                    "breadcrumbParent": null,
                                                                                    "iconClass": "string",
                                                                                    "iconColour": "string",
                                                                                    "fullNameFallback": "string",
                                                                                    "name": "string",
                                                                                    "url": "string",
                                                                                    "partitionId": 112,
                                                                                    "partition": null,
                                                                                    "display": "string",
                                                                                    "idInPartition": 152,
                                                                                    "displayAttributes": [
                                                                                        {}
                                                                                    ],
                                                                                    "displayCodePartial": "string",
                                                                                    "displayArgs": [
                                                                                        "string"
                                                                                    ]
                                                                                }
                                                                            ],
                                                                            "events": null,
                                                                            "selected": true,
                                                                            "selectable": true,
                                                                            "fullName": "string",
                                                                            "partitionId": 57
                                                                        },
                                                                        "text": "string",
                                                                        "published": true,
                                                                        "replies": null,
                                                                        "notifications": null,
                                                                        "hidden": true,
                                                                        "reply": true,
                                                                        "greatestAncestor": null,
                                                                        "replyToIsUnpublished": true,
                                                                        "serverCreatedReadableDate": "string",
                                                                        "lastUpdatedBy": null,
                                                                        "lastUpdated": "2022-04-13T15:42:05.901Z",
                                                                        "lastUpdatedById": 198,
                                                                        "name": "string",
                                                                        "partition": null,
                                                                        "display": "string",
                                                                        "idInPartition": 118,
                                                                        "recordName": "string",
                                                                        "displayAttributes": [
                                                                            {}
                                                                        ],
                                                                        "displayCodePartial": "string",
                                                                        "displayArgs": [
                                                                            "string"
                                                                        ],
                                                                        "breadcrumbParent": null,
                                                                        "iconClass": "string",
                                                                        "iconColour": "string",
                                                                        "calendarSource": "PRODUCT",
                                                                        "calendarEnd": "2022-04-13T15:42:05.901Z",
                                                                        "allDay": true,
                                                                        "calendarExtendedProps": {}
                                                                    }
                                                                ],
                                                                "watchingUsers": null,
                                                                "relevantEntities": null,
                                                                "tasks": null,
                                                                "name": "string",
                                                                "commentType": "string",
                                                                "commentsPermission": "ROLE_PRE_AUTH",
                                                                "commentsEditPermission": "ROLE_PRE_AUTH",
                                                                "commentDisplayUrl": "string",
                                                                "productIds": [
                                                                    265
                                                                ],
                                                                "constituentIds": [
                                                                    50
                                                                ],
                                                                "studyIds": [
                                                                    117
                                                                ],
                                                                "entityIds": [
                                                                    0
                                                                ],
                                                                "lastUpdatedById": 72,
                                                                "url": "string",
                                                                "partitionId": 275,
                                                                "partition": null,
                                                                "display": "string",
                                                                "idInPartition": 134,
                                                                "recordName": "string",
                                                                "displayAttributes": [
                                                                    {}
                                                                ],
                                                                "displayCodePartial": "string",
                                                                "displayArgs": [
                                                                    "string"
                                                                ],
                                                                "breadcrumbParent": null,
                                                                "iconClass": "string",
                                                                "iconColour": "string",
                                                                "emailCode": "string",
                                                                "emailPrefix": "string",
                                                                "oneToOne": true,
                                                                "watching": true,
                                                                "watchers": null
                                                            }
                                                        ],
                                                        "documentLinkAttachments": null,
                                                        "deleted": true,
                                                        "deletedDate": "2022-04-13T15:42:05.901Z",
                                                        "fileId": "60f4580d-9b67-4864-aff1-d29152f5816e",
                                                        "watchingUsers": null,
                                                        "expiryNotifications": null,
                                                        "retentionNotifications": null,
                                                        "notifyEmail": "string",
                                                        "expirationNotified": true,
                                                        "retentionNotified": true,
                                                        "folders": null,
                                                        "taskLinks": null,
                                                        "taskTwoLinks": null,
                                                        "downloadTaskLinks": null,
                                                        "constituentTonnages": null,
                                                        "productTonnages": null,
                                                        "comments": null,
                                                        "searchedVia": null,
                                                        "emailDate": "2022-04-13T15:42:05.901Z",
                                                        "sender": "string",
                                                        "recipients": null,
                                                        "subject": "string",
                                                        "emailBody": "string",
                                                        "privatise": true,
                                                        "fromTemplate": true,
                                                        "cc": "string",
                                                        "bcc": "string",
                                                        "saveAsDraft": true,
                                                        "index": 65,
                                                        "relatedDocumentConstituents": null,
                                                        "relatedDocumentEntities": null,
                                                        "relatedDocumentProductGroups": null,
                                                        "relatedDocumentProducts": null,
                                                        "relatedDocumentContactGroups": null,
                                                        "partitionId": 134
                                                    }
                                                ],
                                                "issues": null,
                                                "documentLinkAttachments": null,
                                                "deleted": true,
                                                "deletedDate": "2022-04-13T15:42:05.901Z",
                                                "fileId": "0d9eccdb-e1bb-49a5-ba45-3bcdf411afde",
                                                "watchingUsers": null,
                                                "expiryNotifications": null,
                                                "retentionNotifications": null,
                                                "notifyEmail": "string",
                                                "expirationNotified": true,
                                                "retentionNotified": true,
                                                "folders": null,
                                                "taskLinks": null,
                                                "taskTwoLinks": null,
                                                "downloadTaskLinks": null,
                                                "constituentTonnages": null,
                                                "productTonnages": null,
                                                "comments": null,
                                                "searchedVia": null,
                                                "receivedDate": "2022-04-13T15:42:05.901Z",
                                                "emailDate": "2022-04-13",
                                                "sender": "string",
                                                "subject": "string",
                                                "recipient": "string",
                                                "emailBody": "string",
                                                "ccAddresses": "string",
                                                "missingAttachments": [
                                                    {
                                                        "id": 120,
                                                        "receivedEmail": {
                                                            "id": 37,
                                                            "subject": "string",
                                                            "fromAddress": "string",
                                                            "messageRead": true,
                                                            "dateReceived": "2022-04-13T15:42:05.901Z",
                                                            "dateMessageSaved": "2022-04-13T15:42:05.901Z",
                                                            "dateAttachmentsSaved": "2022-04-13T15:42:05.901Z",
                                                            "contentType": "string",
                                                            "ccAddresses": "string",
                                                            "recipients": "string",
                                                            "content": "string",
                                                            "clientPartition": null,
                                                            "deleted": true,
                                                            "emailAttachments": null
                                                        },
                                                        "fileId": "48bc4903-fe65-4579-961f-0cf5869b87e8",
                                                        "filename": "string"
                                                    }
                                                ],
                                                "attachmentsToSave": [
                                                    "f7d5a386-fb19-4bd7-8f6b-269fbe3a0014"
                                                ],
                                                "index": 174,
                                                "relatedDocumentConstituents": null,
                                                "relatedDocumentEntities": null,
                                                "relatedDocumentProductGroups": null,
                                                "relatedDocumentProducts": null,
                                                "relatedDocumentContactGroups": null,
                                                "partitionId": 136
                                            }
                                        ],
                                        "internalSourceEmails": null,
                                        "issues": null,
                                        "documentLinkAttachments": null,
                                        "deleted": true,
                                        "deletedDate": "2022-04-13T15:42:05.901Z",
                                        "fileId": "1690cb95-46a5-4be7-ab07-0c9e93feaf4d",
                                        "watchingUsers": null,
                                        "expiryNotifications": null,
                                        "retentionNotifications": null,
                                        "notifyEmail": "string",
                                        "expirationNotified": true,
                                        "retentionNotified": true,
                                        "folders": null,
                                        "taskLinks": null,
                                        "taskTwoLinks": null,
                                        "downloadTaskLinks": null,
                                        "constituentTonnages": null,
                                        "productTonnages": null,
                                        "submissions": null,
                                        "comments": null,
                                        "searchedVia": null,
                                        "index": 38,
                                        "relatedDocumentConstituents": null,
                                        "relatedDocumentEntities": null,
                                        "relatedDocumentCategoryGroups": null,
                                        "relatedDocumentProductGroups": null,
                                        "relatedDocumentProducts": null,
                                        "relatedDocumentContactGroups": null,
                                        "partitionId": 275
                                    }
                                ],
                                "createdBy": null,
                                "created": "2022-04-13T15:42:05.901Z",
                                "deletable": true,
                                "study": null,
                                "folderPath": "string",
                                "folderLinks": "string"
                            },
                            "studyFolder": null,
                            "archivedStudyFolder": null,
                            "deletedStudyFolder": null,
                            "studyTimelineTemplate": null,
                            "studyNumberTimelineTemplate": null,
                            "studyMultiRegistrantShare": 192,
                            "defaultCostRoles": null,
                            "invoiceOverdueDays": 20,
                            "invoiceTemplate": "string",
                            "docExpiryNotificationDays": 139,
                            "deactivatedMessage": "string",
                            "countries": null,
                            "hidden": true,
                            "pages": null,
                            "campaignTasks": null,
                            "campaignImages": [
                                {
                                    "id": 209,
                                    "clientPartition": null,
                                    "created": "2022-04-13T15:42:05.901Z",
                                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                                    "campaign": null,
                                    "fileId": "75c73e41-fc01-4043-8b3e-fc69f68aa332",
                                    "fileName": "string",
                                    "lastUpdatedById": 188,
                                    "name": "string",
                                    "url": "string",
                                    "partitionId": 2,
                                    "partition": null,
                                    "display": "string",
                                    "idInPartition": 192,
                                    "recordName": "string",
                                    "displayAttributes": [
                                        {}
                                    ],
                                    "displayCodePartial": "string",
                                    "displayArgs": [
                                        "string"
                                    ],
                                    "breadcrumbParent": null,
                                    "iconClass": "string",
                                    "iconColour": "string"
                                }
                            ],
                            "integrations": null,
                            "name": "string",
                            "campaignNavigationLevel": 145,
                            "onlyPublicAccessForUser": true,
                            "expand": true,
                            "menuIndex": 149,
                            "recordName": "string",
                            "acceptInvoiceImport": true,
                            "studyAdditionalSharePercent": 50,
                            "menuParent": null,
                            "menuAncestors": null,
                            "url": "string",
                            "partitionId": 193,
                            "partition": null,
                            "display": "string",
                            "idInPartition": 166,
                            "displayAttributes": [
                                {}
                            ],
                            "displayCodePartial": "string",
                            "displayArgs": [
                                "string"
                            ],
                            "breadcrumbParent": null,
                            "iconClass": "string",
                            "iconColour": "string"
                        },
                        "display": "string",
                        "idInPartition": 231,
                        "recordName": "string",
                        "displayAttributes": [
                            {}
                        ],
                        "displayCodePartial": "string",
                        "displayArgs": [
                            "string"
                        ],
                        "breadcrumbParent": null,
                        "iconClass": "string",
                        "iconColour": "string"
                    },
                    "contact": null,
                    "text": "string",
                    "published": true,
                    "replies": null,
                    "notifications": null,
                    "hidden": true,
                    "reply": true,
                    "greatestAncestor": null,
                    "replyToIsUnpublished": true,
                    "serverCreatedReadableDate": "string",
                    "lastUpdatedBy": null,
                    "lastUpdated": "2022-04-13T15:42:05.901Z",
                    "lastUpdatedById": 36,
                    "name": "string",
                    "partition": null,
                    "display": "string",
                    "idInPartition": 57,
                    "recordName": "string",
                    "displayAttributes": [
                        {}
                    ],
                    "displayCodePartial": "string",
                    "displayArgs": [
                        "string"
                    ],
                    "breadcrumbParent": null,
                    "iconClass": "string",
                    "iconColour": "string",
                    "calendarSource": "PRODUCT",
                    "calendarEnd": "2022-04-13T15:42:05.901Z",
                    "allDay": true,
                    "calendarExtendedProps": {}
                },
                "createdDate": "2022-04-13T15:42:05.901Z",
                "user": null,
                "contact": null,
                "text": "string",
                "published": true,
                "replies": null,
                "notifications": null,
                "calendarSource": "PRODUCT",
                "hidden": true,
                "reply": true,
                "greatestAncestor": null,
                "replyToIsUnpublished": true,
                "serverCreatedReadableDate": "string",
                "lastUpdatedBy": null,
                "lastUpdated": "2022-04-13T15:42:05.901Z",
                "lastUpdatedById": 257,
                "name": "string",
                "partition": null,
                "display": "string",
                "idInPartition": 224,
                "recordName": "string",
                "displayAttributes": [
                    {}
                ],
                "displayCodePartial": "string",
                "displayArgs": [
                    "string"
                ],
                "breadcrumbParent": null,
                "iconClass": "string",
                "iconColour": "string",
                "calendarEnd": "2022-04-13T15:42:05.901Z",
                "allDay": true,
                "calendarExtendedProps": {}
            }
        ],
        "groups": null,
        "primaryInvoicingContact": null,
        "secondaryInvoicingContact": null,
        "watchingUsers": null,
        "registrationsFor": null,
        "partitionId": 86,
        "selected": true,
        "primaryInvoicingContactToImport": "string",
        "secondaryInvoicingContactToImport": "string",
        "testContacts": null
    },
    "studyRole": {
        "id": 1,
        "display": "Consortium Affiliate Lead Registrant"
    },
    "active": false
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "constituent": {
            "$ref": "#/components/schemas/ConstituentData"
        },
        "entity": {
            "$ref": "#/components/schemas/EntityData"
        },
        "entityRoles": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/EntityRoleData"
            },
            "uniqueItems": true
        },
        "manufacturerUuid": {
            "type": "string",
            "example": "37b58a8c-fae4-485f-bb99-1cf879d34678"
        },
        "registrationNumber": {
            "type": "string",
            "example": "UK-12-1234567890-1-1111"
        },
        "reasonForInterest": {
            "type": "string",
            "enum": [
                "VI",
                "VII",
                "VIII",
                "IX",
                "X",
                "K_REACH",
                "UK_REACH",
                "INDIA_REACH",
                "TURKEY_REACH",
                "COLOMBIA_REACH",
                "EU_BIO",
                "EU_PLANT",
                "UD_TSCA",
                "PROD_SAFETY",
                "INV_WORK"
            ],
            "example": "UK_REACH"
        },
        "manufacturer": {
            "$ref": "#/components/schemas/BaseEntity"
        },
        "studyRole": {
            "$ref": "#/components/schemas/EntityCostRoleData"
        },
        "active": {
            "type": "boolean",
            "example": false
        }
    },
    "required": [
        "constituent",
        "entity",
        "partitionId"
    ]
}

Response 403 Forbidden

Response 500 Internal Server Error


GET /api/constituents/addresses

Get all Constituent-Address links

Input parameters

Parameter In Type Default Nullable Description
constituent query integer No Filter links by constituent
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 200 OK

{
    "totalElements": 50,
    "totalPages": 129,
    "first": true,
    "size": 285,
    "content": [
        {
            "id": 1,
            "partitionId": 100,
            "constituent": {
                "id": 1,
                "partitionId": 100,
                "name": "Benzene",
                "type": "SUBSTANCE",
                "casNumber": "100-00-5",
                "ecName": "1-chloro-4-nitrobenzene",
                "ecNumber": "202-809-6",
                "ecDescription": "string",
                "iupac": "benzene",
                "iuclidUuid": "string",
                "tsca": "Benzene, 1-chloro-4-nitro-",
                "molecularFormula": "C6H6",
                "smiles": "C1=CC=CC=C1",
                "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
                "deleted": false
            },
            "entity": {
                "id": 1,
                "partitionId": 100,
                "name": "Penman Consulting",
                "companyNo": "string",
                "vatNo": "string",
                "dunnNo": "string",
                "utr": "string"
            },
            "addressName": "Alvanco Manufacturing Site",
            "addressType": "Business Unit"
        }
    ],
    "number": 136,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 94,
        "sort": null,
        "pageNumber": 264,
        "paged": true,
        "unpaged": true,
        "pageSize": 226
    },
    "numberOfElements": 7,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/ConstituentPartyData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

Response 403 Forbidden


GET /api/constituents/addresses/{id}

Get a Constituent-Address Link

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 404 Not Found

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "constituent": {
        "id": 1,
        "partitionId": 100,
        "name": "Benzene",
        "type": "SUBSTANCE",
        "casNumber": "100-00-5",
        "ecName": "1-chloro-4-nitrobenzene",
        "ecNumber": "202-809-6",
        "ecDescription": "string",
        "iupac": "benzene",
        "iuclidUuid": "string",
        "tsca": "Benzene, 1-chloro-4-nitro-",
        "molecularFormula": "C6H6",
        "smiles": "C1=CC=CC=C1",
        "inChl": "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H",
        "deleted": false
    },
    "entity": {
        "id": 1,
        "partitionId": 100,
        "name": "Penman Consulting",
        "companyNo": "string",
        "vatNo": "string",
        "dunnNo": "string",
        "utr": "string"
    },
    "addressName": "Alvanco Manufacturing Site",
    "addressType": "Business Unit"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "constituent": {
            "$ref": "#/components/schemas/ConstituentData"
        },
        "entity": {
            "$ref": "#/components/schemas/EntityData"
        },
        "addressName": {
            "type": "string",
            "example": "Alvanco Manufacturing Site"
        },
        "addressType": {
            "type": "string",
            "example": "Business Unit"
        }
    },
    "required": [
        "addressName",
        "addressType",
        "constituent",
        "entity",
        "partitionId"
    ]
}

Response 403 Forbidden

Response 500 Internal Server Error

Budgets


GET /api/budgets

Get all Budgets

Input parameters

Parameter In Type Default Nullable Description
page query integer 0 No Zero-based page index (0..N)
size query integer 20 No The size of the page to be returned
sort query array No Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response 403 Forbidden

Response 200 OK

{
    "totalElements": 209,
    "totalPages": 106,
    "first": true,
    "size": 269,
    "content": [
        {
            "id": 1,
            "partitionId": 100,
            "name": "Project Delta",
            "start": "2025-01-01",
            "end": "2025-31-03",
            "currency": "EUR",
            "cost": 20000,
            "externalRef": "P0088",
            "description": "Budget for our 2025 'Delta' project. Costs to be shared amongst member companies"
        }
    ],
    "number": 235,
    "sort": {
        "sorted": true,
        "empty": true,
        "unsorted": true
    },
    "last": true,
    "pageable": {
        "offset": 160,
        "sort": null,
        "pageNumber": 156,
        "paged": true,
        "unpaged": true,
        "pageSize": 205
    },
    "numberOfElements": 118,
    "empty": true
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "totalElements": {
            "type": "integer",
            "format": "int64"
        },
        "totalPages": {
            "type": "integer",
            "format": "int32"
        },
        "first": {
            "type": "boolean"
        },
        "size": {
            "type": "integer",
            "format": "int32"
        },
        "content": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/BudgetData"
            }
        },
        "number": {
            "type": "integer",
            "format": "int32"
        },
        "sort": {
            "$ref": "#/components/schemas/SortObject"
        },
        "last": {
            "type": "boolean"
        },
        "pageable": {
            "$ref": "#/components/schemas/PageableObject"
        },
        "numberOfElements": {
            "type": "integer",
            "format": "int32"
        },
        "empty": {
            "type": "boolean"
        }
    }
}

GET /api/budgets/{id}

Get a Budget

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 200 OK

{
    "id": 1,
    "partitionId": 100,
    "name": "Project Delta",
    "start": "2025-01-01",
    "end": "2025-31-03",
    "currency": "EUR",
    "cost": 20000,
    "externalRef": "P0088",
    "description": "Budget for our 2025 'Delta' project. Costs to be shared amongst member companies"
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
        },
        "partitionId": {
            "type": "integer",
            "format": "int64",
            "example": 100
        },
        "name": {
            "type": "string",
            "example": "Project Delta"
        },
        "start": {
            "type": "string",
            "format": "date",
            "example": "2025-01-01"
        },
        "end": {
            "type": "string",
            "format": "date",
            "example": "2025-31-03"
        },
        "currency": {
            "type": "string",
            "example": "EUR"
        },
        "cost": {
            "type": "number",
            "example": 20000
        },
        "externalRef": {
            "type": "string",
            "example": "P0088"
        },
        "description": {
            "type": "string",
            "example": "Budget for our 2025 'Delta' project. Costs to be shared amongst member companies"
        }
    },
    "required": [
        "cost",
        "partitionId"
    ]
}

Response 403 Forbidden

Response 404 Not Found

Response 500 Internal Server Error


DELETE /api/budgets/{id}

Delete a Budget

Input parameters

Parameter In Type Default Nullable Description
id path integer No

Response 204 No Content

Response 403 Forbidden

Response 500 Internal Server Error


Schemas

AnalyticalSample

Name Type
analysis string(date)
analyticalMethods Array<AnalyticalSampleAnalyticalMethod>
analyticalMethodsOnly Array<string>
basisOfData string
batchNumber string
constituent Constituent
contact Contact
description string
entity BaseEntity
expiry string(date)
folder Folder
folderName string
id integer(int64)
linkedDocument Document
notes string
origin Party
preparation string(date)
referenceNumber string
study Study
studyId integer(int64)
subConstituents Array<AnalyticalSampleSubConstituent>

AnalyticalSampleAnalyticalMethod

Name Type
analyticalMethod string
analyticalSample AnalyticalSample
id integer(int64)

AnalyticalSampleOrderedSubConstituentTypeReference

Name Type
id integer(int64)
ordinalPosition integer(int64)
subConstituent AnalyticalSampleSubConstituent
subConstituentType AnalyticalSampleSubConstituentType
typeText string

AnalyticalSampleSubConstituent

Name Type
analyticalSample AnalyticalSample
carbonNumber integer(int32)
casNumber string
ecNumber string
exportIndex integer(int32)
id integer(int64)
inclusionPercent number(double)
name string
type Array<AnalyticalSampleOrderedSubConstituentTypeReference>
typeText string

AnalyticalSampleSubConstituentType

Name Type
id integer(int64)
typeText string

BaseEntity

Name Type
clientPartitionId integer(int64)
comments Array<EntityComment>
companyNo string
deleted boolean
dunnNo string
entityEntityGroups Array<EntityEntityGroup>
groups Array<EntityGroup>
hasInvoicingAddress boolean
id integer(int64)
invoiceOverdueDays integer(int64)
lastUpdated string(date-time)
name string
partitionId integer(int64)
primaryInvoicingContact Contact
primaryInvoicingContactToImport string
reachID string
registrationsFor Array<ReachRegistration>
remarks string
sapBusinessReference string
secondaryInvoicingContact Contact
secondaryInvoicingContactToImport string
selected boolean
testContacts Array<Contact>
uclidID string
utr string
vatNo string
version integer(int32)
watchingUsers Array<User>

Budget

Name Type
breadcrumbParent Displayable
categoryGroups Array<CategoryGroup>
clientPartition ClientPartition
constituents Array<Constituent>
cost number
created string(date-time)
currency string
currencyInstance Properties: currencyCode, numericCodeAsString, displayName, symbol, defaultFractionDigits, numericCode
description string
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
documentBudgets Array<DocumentBudget>
end string(date)
entityBudgets Array<EntityBudget>
externalRef string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedById integer(int64)
name string
partition ClientPartition
partitionId integer(int64)
products Array<Product>
recordName string
start string(date)
url string

BudgetData

Name Type
cost number
currency string
description string
end string(date)
externalRef string
id integer(int64)
name string
partitionId integer(int64)
start string(date)

Campaign

Name Type
breadcrumbParent Displayable
campaignEvents Array<CampaignEvent>
campaignNavigationLevel integer(int32)
clientPartition ClientPartition
closed boolean
contacts Array<CampaignContact>
deleted boolean
description string
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
emailCode string
emailPrefix string
endDate string(date)
expand boolean
footerAddress string
footerLink string
footerPhone string
footerPresent boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
menuAncestors Array<CampaignMenuDisplayable>
menuIndex integer(int32)
menuName string
menuParent CampaignMenuDisplayable
name string
oneToOne boolean
onlyPublicAccessForUser boolean
pages Array<CampaignPage>
partition ClientPartition
partitionId integer(int64)
recordName string
roles Array<CampaignRole>
section CampaignSection
sections Array<CampaignSection>
securityIssueNotifications Array<NotificationCampaignSecurityIssue>
startDate string(date)
taskGroups Array<CampaignContactTaskGroup>
tasks Array<CampaignContactTask>
termsAndConditionsText string
uploadingLock boolean
url string
visible boolean
watching boolean
watchingUsers Array<User>

CampaignContact

Name Type
breadcrumbParent Displayable
campaign Campaign
clientPartition ClientPartition
contact Contact
deleted boolean
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
email string
firstName string
fullName string
fullNameFallback string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastLoggedIn string(date-time)
lastName string
name string
pages Array<CampaignPage>
partition ClientPartition
partitionId integer(int64)
recordName string
roles Array<CampaignRole>
tasks Array<CampaignContactTask>
url string
user User

CampaignContactEvent

Name Type
allDay boolean
breadcrumbParent Displayable
calendarDisplay string
calendarEnd string(date-time)
calendarExtendedProps
calendarSource string
calendarStart string(date-time)
campaign Campaign
clientPartition ClientPartition
completed boolean
contact Contact
deleted boolean
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
documentDates Array<DocumentDate>
downloadedDocumentIds Array<integer(int64)>
downloadedOldDocumentsOf Array<integer(int64)>
eventDate string(date-time)
fileId string(uuid)
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
name string
partition ClientPartition
partitionId integer(int64)
recordName string
responses Array<SurveyFieldValue>
responsesDeleted boolean
surveyValues Array<SurveyValue>
task CampaignContactTask
url string
useSurvey UseSurvey

CampaignContactTask

Name Type
access string
archived boolean
breadcrumbParent Displayable
campaign Campaign
campaignContact CampaignContact
campaignIfUnrestricted Campaign
clientPartition ClientPartition
closed boolean
closesOnDate string(date)
commentDisplayUrl string
comments Array<CampaignTaskComment>
commentsEditPermission string
commentsPermission string
commentType string
constituent Constituent
containingArchivedDocument boolean
createdDate string(date-time)
deleted boolean
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
document Document
documentLinks Array<CampaignContactTaskDocument>
documentsList Array<Document>
documentTwo Document
dueByDate string(date)
endingInstructions string
endingInstructionsIssues Array<SecurityIssue>
entityRoles Array<EntityRole>
events Array<CampaignContactEvent>
firstActiveDocument Document
firstActiveIuclid DocumentIUCLIDOutput
groups Array<CampaignContactTaskGroup>
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
instructions string
instructionsIssues Array<SecurityIssue>
iuclidReviewNotifications Array<NotificationIuclidReview>
letterOfAccessRelated boolean
name string
pages Array<CampaignPage>
partition ClientPartition
partitionId integer(int64)
public boolean
recordName string
role CampaignRole
sendCustomSurveyNotificationEmail boolean
showDocumentNameOnDownloads boolean
surveyFields Array<SurveyField>
surveyNotifications Array<NotificationCampaignSurvey>
taskGroupLinks Array<TaskGroupTask>
taskType string
template CampaignTaskTemplate
uploadNotificationEmail string
uploadNotifications Array<NotificationCampaignUpload>
url string
user User
uses Array<string(uuid)>
watchers Array<User>
watching boolean
watchingUsers Array<User>
webPortalDisplays string

CampaignContactTaskDocument

Name Type
campaign Campaign
document Document
id CampaignContactTaskDocumentId
index integer(int32)
task CampaignContactTask

CampaignContactTaskDocumentId

Name Type
document Document
documentId integer(int64)
documentPartitionId integer(int64)
taskId integer(int64)

CampaignContactTaskGroup

Name Type
breadcrumbParent Displayable
campaign Campaign
clientPartition ClientPartition
description string
descriptionContainsHtml boolean
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
name string
pages Array<CampaignPageTaskGroup>
partition ClientPartition
partitionId integer(int64)
recordName string
taskLinks Array<TaskGroupTask>
url string

CampaignEvent

Name Type
campaign Campaign
campaignContacts Array<CampaignContact>
displayName string
eventTime string(date-time)
id integer(int64)

CampaignImage

Name Type
breadcrumbParent Displayable
campaign Campaign
clientPartition ClientPartition
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
fileId string(uuid)
fileName string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedById integer(int64)
name string
partition ClientPartition
partitionId integer(int64)
recordName string
url string

CampaignMenuDisplayable

Name Type
breadcrumbParent Displayable
campaignNavigationLevel integer(int32)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
expand boolean
iconClass string
iconColour string
id
idInPartition integer(int64)
menuAncestors Array<CampaignMenuDisplayable>
menuIndex integer(int32)
menuParent CampaignMenuDisplayable
name string
partition ClientPartition
partitionId integer(int64)
recordName string
url string

CampaignPage

Name Type
access string
activeEntities Array<BaseEntity>
allFields string
allUsers boolean
ancestorsString string
archived boolean
associatedToArchivedContact boolean
campaignContacts Array<CampaignContact>
campaignNavigationLevel integer(int32)
caretPosition string
clientPartition ClientPartition
constituent Constituent
contact Contact
content string
created string(date-time)
cutOffDate string(date)
deleted boolean
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
docType string
entities Array<BaseEntity>
entity BaseEntity
entityGroup EntityGroup
expand boolean
hidden boolean
highestSection CampaignSection
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
index integer(int32)
invoicePageInfo InvoicePageInfo
issues Array<SecurityIssue>
lastUpdated string(date-time)
lastUpdatedById integer(int64)
membersUrl string
menuAncestors Array<CampaignMenuDisplayable>
menuIndex integer(int32)
menuParent CampaignMenuDisplayable
name string
nameWithSections string
notifications Array<NotificationPageChange>
partition ClientPartition
partitionId integer(int64)
public boolean
recordName string
roles Array<CampaignRole>
sections Array<CampaignSection>
source string
tags Array<Tag>
task CampaignContactTask
type string
url string
visible boolean
visibleToDeactivated boolean

CampaignPageTaskGroup

Name Type
cutOffDate string(date)
id integer(int64)
index integer(int32)
page CampaignPage
taskGroup CampaignContactTaskGroup

CampaignRole

Name Type
breadcrumbParent Displayable
campaign Campaign
campaignContacts Array<CampaignContact>
clientPartition ClientPartition
contactCount integer(int32)
description string
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
inUse boolean
name string
pages Array<CampaignPage>
partition ClientPartition
partitionId integer(int64)
recordName string
tabCount integer(int32)
taskCount integer(int32)
tasks Array<CampaignContactTask>
url string

CampaignSection

Name Type
allPages Array<CampaignPage>
ancestorsString string
breadcrumbParent Displayable
campaign Campaign
campaignNavigationLevel integer(int32)
children Array<CampaignSection>
clientPartition ClientPartition
constituent Constituent
created string(date-time)
deleted boolean
descendants Array<CampaignSection>
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
expand boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedById integer(int64)
menuAncestors Array<CampaignMenuDisplayable>
menuIndex integer(int32)
menuParent CampaignMenuDisplayable
name string
pages Array<CampaignPage>
parentSection CampaignSection
partition ClientPartition
partitionId integer(int64)
recordName string
updateOptions UpdateOptions
url string

CampaignTaskComment

Name Type
allDay boolean
breadcrumbParent Displayable
calendarEnd string(date-time)
calendarExtendedProps
calendarSource string
contact Contact
createdDate string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
greatestAncestor Comment
hidden boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedBy User
lastUpdatedById integer(int64)
name string
notifications Array<NotificationComment>
partition ClientPartition
published boolean
recordName string
replies Array<Comment>
reply boolean
replyTo Comment
replyToIsUnpublished boolean
serverCreatedReadableDate string
text string
user User

CampaignTaskTemplate

Name Type
breadcrumbParent Displayable
campaign Campaign
clientPartition ClientPartition
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
endingInstructions string
fields Array<SurveyFieldTemplate>
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
instructions string
lastUpdated string(date-time)
lastUpdatedById integer(int64)
name string
partition ClientPartition
partitionId integer(int64)
recordName string
type string
url string

CategoryGroup

Name Type
groupName string
id integer(int64)
partitionId integer(int64)

ClientPartition

Name Type
acceptInvoiceImport boolean
archivedStudyFolder Folder
breadcrumbParent Displayable
campaignImages Array<CampaignImage>
campaignNavigationLevel integer(int32)
campaignTasks Array<CampaignContactTask>
countries Array<Country>
deactivatedMessage string
defaultCostRoles Array<EntityCostRole>
deletedStudyFolder Folder
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
docExpiryNotificationDays integer(int32)
email string
emailFolder Folder
entities Array<BaseEntity>
expand boolean
hidden boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
integrations Array<Integration>
invoiceOverdueDays integer(int64)
invoiceTemplate string
logoID string(uuid)
menuAncestors Array<CampaignMenuDisplayable>
menuIndex integer(int32)
menuParent CampaignMenuDisplayable
name string
onlyPublicAccessForUser boolean
pages Array<CampaignPage>
partition ClientPartition
partitionId integer(int64)
partitionName string
recordName string
studyAdditionalSharePercent integer(int32)
studyFolder Folder
studyMultiRegistrantShare integer(int32)
studyNumberTimelineTemplate StudyTimelineTemplate
studyTimelineTemplate StudyTimelineTemplate
url string
userPartitions Array<UserPartition>

Comment

Name Type
allDay boolean
breadcrumbParent Displayable
calendarEnd string(date-time)
calendarExtendedProps
calendarSource string
contact Contact
createdDate string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
greatestAncestor Comment
hidden boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedBy User
lastUpdatedById integer(int64)
name string
notifications Array<NotificationComment>
partition ClientPartition
published boolean
recordName string
replies Array<Comment>
reply boolean
replyTo Comment
replyToIsUnpublished boolean
serverCreatedReadableDate string
text string
user User

Commentable

Name Type
breadcrumbParent Displayable
commentDisplayUrl string
comments Array<Comment>
commentsEditPermission string
commentsPermission string
commentType string
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
iconClass string
iconColour string
id
idInPartition integer(int64)
name string
partition ClientPartition
partitionId integer(int64)
recordName string
url string
watchers Array<User>
watching boolean
watchingUsers Array<User>

Constituent

Name Type
archived boolean
casNumber string
ecDescription string
ecName string
ecNumber string
id integer(int64)
inChl string
iuclidUuid string
iupac string
molecularFormula string
name string
partitionId integer(int64)
smiles string
tsca string
type string

ConstituentContact

Name Type
constituent Constituent
contact Contact
contactType string
deleted boolean
id integer(int64)

ConstituentData

Name Type
casNumber string
deleted boolean
ecDescription string
ecName string
ecNumber string
id integer(int64)
inChl string
iuclidUuid string
iupac string
molecularFormula string
name string
partitionId integer(int64)
smiles string
tsca string
type string

ConstituentEntity

Name Type
constituent Constituent
entity BaseEntity
entityRoles Array<EntityRole>
id integer(int64)
partitionId integer(int64)

ConstituentEntityContact

Name Type
constituentEntity ConstituentEntity
contact Contact
deleted boolean
id integer(int64)

ConstituentEntityData

Name Type
active boolean
constituent ConstituentData
entity EntityData
entityRoles Array<EntityRoleData>
id integer(int64)
manufacturer BaseEntity
manufacturerUuid string
partitionId integer(int64)
reasonForInterest string
registrationNumber string
studyRole EntityCostRoleData

ConstituentParty

Name Type
constituent Constituent
deleted boolean
id integer(int64)
party Party

ConstituentPartyContact

Name Type
constituentParty ConstituentParty
contact Contact
deleted boolean
id integer(int64)

ConstituentPartyData

Name Type
addressName string
addressType string
constituent ConstituentData
entity EntityData
id integer(int64)
partitionId integer(int64)

ConstituentPlant

Name Type
constituent Constituent
id integer(int64)
plant Plant

ConstituentTonnage

Name Type
constituent Constituent
deleted boolean
document Document
enteredDate string(date)
entryYear integer(int32)
forecast boolean
forEntity BaseEntity
id integer(int64)
inAnArticle number(double)
lastUpdated string(date)
mixture number(double)
monomerInAPolymer number(double)
notes string
notInAnArticle number(double)
percentage number(double)
reachLegislation string
registration ReachRegistration
site Party
substanceOrUnknown number(double)
tonnesOwnImport number(double)
tonnesOwnProduction number(double)
user User

Contact

Name Type
analyticalSamples Array<AnalyticalSample>
campaignContacts Array<CampaignContact>
constituentContacts Array<ConstituentContact>
constituentEntityContacts Array<ConstituentEntityContact>
constituentPartyContacts Array<ConstituentPartyContact>
contactGroups Array<ContactContactGroup>
contactRecipients Array<ContactRecipient>
deactivated boolean
deleted boolean
documentLinks Array<DocumentLink>
email string
events Array<CampaignContactEvent>
fax string
firstName string
fullName string
id integer(int64)
jobDescription string
lastName string
lastUpdated string(date-time)
mobile string
nameSuffix string
partition ClientPartition
partitionId integer(int64)
primaryInvoicingEntities Array<BaseEntity>
productContacts Array<ProductContact>
productEntityContacts Array<ProductEntityContact>
productPartyContacts Array<ProductPartyContact>
reachIt boolean
remarks string
secondaryInvoicingEntities Array<BaseEntity>
selectable boolean
selected boolean
skype string
telephone string
testingLaboratoryContacts Array<TestingLaboratoryContact>
title string
tonnageAndUseEnquiries Array<TonnageAndUseEnquiry>
user User

ContactContactGroup

Name Type
contact Contact
contactGroup ContactGroup
deleted boolean
id integer(int64)

ContactData

Name Type
email string
fax string
firstName string
id integer(int64)
jobDescription string
lastName string
mobile string
nameSuffix string
partitionId integer(int64)
skype string
telephone string
title string

ContactGroup

Name Type
groupName string

ContactRecipient

Name Type
contact Contact
deleted boolean
documentEmailInternal DocumentEmailInternal
domain string
emailAddress string
firstName string
fullName string
id integer(int64)
secondName string
type string

Country

Name Type
id integer(int64)
iso3166alpha2CountryCode string
iso3166alpha3CountryCode string
iso3166numeric3CountryCode string
name string
partitionId integer(int64)

CustomUse

Name Type
id integer(int64)
percentage number(double)
tauiProduct TAUIProduct
useDescription string
useName string

Displayable

Name Type
breadcrumbParent Displayable
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
iconClass string
iconColour string
id
idInPartition integer(int64)
name string
partition ClientPartition
partitionId integer(int64)
recordName string
url string

Document

Name Type
categoryGroups Array<CategoryGroup>
comments Array<DocumentComment>
constituents Array<Constituent>
constituentTonnages Array<ConstituentTonnage>
contactGroups Array<ContactGroup>
currentDocument Document
currentDocumentId integer(int64)
deleted boolean
deletedDate string(date-time)
description string
docType string
documentCategoryGroups Array<DocumentCategoryGroup>
documentConstituents Array<DocumentConstituent>
documentContactGroups Array<DocumentContactGroup>
documentCreationDate string(date)
documentEntities Array<DocumentEntity>
documentEntityGroups Array<DocumentEntityGroup>
documentLinkAttachments Array<DocumentLinkAttachment>
documentProductGroups Array<DocumentProductGroup>
documentProducts Array<DocumentProduct>
documentTagSet Array<DocumentTag>
downloadTaskLinks Array<CampaignContactTaskDocument>
entities Array<BaseEntity>
entityGroups Array<EntityGroup>
expirationNotified boolean
expiryDate string(date)
expiryNotifications Array<NotificationDocExpiry>
fileId string(uuid)
fileName string
fileSize integer(int32)
fileType string
folders Array<Folder>
id integer(int64)
index integer(int32)
internalSourceEmails Array<DocumentEmailInternal>
issues Array<IssueAndStatement>
lastUpdated string(date-time)
link boolean
linkedDocuments Array<Document>
newsItem boolean
notifyEmail string
originalFileName string
partition ClientPartition
partitionId integer(int64)
permanent boolean
productGroups Array<ProductGroup>
products Array<Product>
productTonnages Array<ProductTonnage>
relatedDocumentCategoryGroups Array<DocumentCategoryGroup>
relatedDocumentConstituents Array<DocumentConstituent>
relatedDocumentContactGroups Array<DocumentContactGroup>
relatedDocumentEntities Array<DocumentEntity>
relatedDocumentProductGroups Array<DocumentProductGroup>
relatedDocumentProducts Array<DocumentProduct>
retentionDate string(date)
retentionNotifications Array<NotificationDocRetention>
retentionNotified boolean
searchedVia Document
sourceEmail Array<DocumentEmailExternal>
submissions Array<ReachITRegistration>
taskLinks Array<CampaignContactTask>
taskTwoLinks Array<CampaignContactTask>
title string
uploadDate string(date-time)
version integer(int32)
versionIdentifier string
watchingUsers Array<User>

DocumentBudget

Name Type
budget Budget
cost number
document Document
id integer(int64)

DocumentCategoryGroup

Name Type
categoryGroup CategoryGroup
deleted boolean
document Document
id integer(int64)

DocumentComment

Name Type
allDay boolean
breadcrumbParent Displayable
calendarEnd string(date-time)
calendarExtendedProps
calendarSource string
contact Contact
createdDate string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
forTocEntry boolean
greatestAncestor Comment
hidden boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedBy User
lastUpdatedById integer(int64)
name string
node IUCLID6TocNode
notifications Array<NotificationComment>
partition ClientPartition
published boolean
recordName string
replies Array<Comment>
reply boolean
replyTo Comment
replyToIsUnpublished boolean
serverCreatedReadableDate string
text string
user User
wrapperId string

DocumentConstituent

Name Type
constituent Constituent
deleted boolean
document Document
id integer(int64)

DocumentContactGroup

Name Type
contactGroup ContactGroup
deleted boolean
document Document
id integer(int64)

DocumentData

Name Type
documentCreationDate string(date)
id integer(int64)
name string
partitionId integer(int64)
type string

DocumentDate

Name Type
dateAccessed string(date-time)
document Document
events Array<CampaignContactEvent>
id integer(int64)

DocumentEmailExternal

Name Type
attachmentsToSave Array<string(uuid)>
categoryGroups Array<CategoryGroup>
ccAddresses string
comments Array<DocumentComment>
constituents Array<Constituent>
constituentTonnages Array<ConstituentTonnage>
contactGroups Array<ContactGroup>
currentDocument Document
currentDocumentId integer(int64)
deleted boolean
deletedDate string(date-time)
description string
docType string
documentContactGroups Array<DocumentContactGroup>
documentCreationDate string(date)
documentEntityGroups Array<DocumentEntityGroup>
documentLinkAttachments Array<DocumentLinkAttachment>
documentTagSet Array<DocumentTag>
downloadTaskLinks Array<CampaignContactTaskDocument>
emailBody string
emailDate string(date)
entities Array<BaseEntity>
entityGroups Array<EntityGroup>
expirationNotified boolean
expiryDate string(date)
expiryNotifications Array<NotificationDocExpiry>
fileId string(uuid)
fileName string
fileSize integer(int32)
fileType string
folders Array<Folder>
id integer(int64)
index integer(int32)
internalSourceEmails Array<DocumentEmailInternal>
issues Array<IssueAndStatement>
lastUpdated string(date-time)
link boolean
linkedDocuments Array<Document>
missingAttachments Array<ReceivedEmailAttachment>
newsItem boolean
notifyEmail string
originalFileName string
partition ClientPartition
partitionId integer(int64)
permanent boolean
productGroups Array<ProductGroup>
products Array<Product>
productTonnages Array<ProductTonnage>
receivedDate string(date-time)
recipient string
relatedDocumentConstituents Array<DocumentConstituent>
relatedDocumentContactGroups Array<DocumentContactGroup>
relatedDocumentEntities Array<DocumentEntity>
relatedDocumentProductGroups Array<DocumentProductGroup>
relatedDocumentProducts Array<DocumentProduct>
retentionDate string(date)
retentionNotifications Array<NotificationDocRetention>
retentionNotified boolean
searchedVia Document
sender string
subject string
taskLinks Array<CampaignContactTask>
taskTwoLinks Array<CampaignContactTask>
title string
uploadDate string(date-time)
version integer(int32)
versionIdentifier string
watchingUsers Array<User>

DocumentEmailInternal

Name Type
bcc string
categoryGroups Array<CategoryGroup>
cc string
comments Array<DocumentComment>
constituents Array<Constituent>
constituentTonnages Array<ConstituentTonnage>
contactGroups Array<ContactGroup>
currentDocument Document
currentDocumentId integer(int64)
deleted boolean
deletedDate string(date-time)
description string
docType string
documentContactGroups Array<DocumentContactGroup>
documentCreationDate string(date)
documentEntityGroups Array<DocumentEntityGroup>
documentLinkAttachments Array<DocumentLinkAttachment>
documentTagSet Array<DocumentTag>
downloadTaskLinks Array<CampaignContactTaskDocument>
emailBody string
emailDate string(date-time)
entities Array<BaseEntity>
entityGroups Array<EntityGroup>
expirationNotified boolean
expiryDate string(date)
expiryNotifications Array<NotificationDocExpiry>
fileId string(uuid)
fileName string
fileSize integer(int32)
fileType string
folders Array<Folder>
fromTemplate boolean
id integer(int64)
index integer(int32)
issues Array<IssueAndStatement>
lastUpdated string(date-time)
link boolean
linkedDocuments Array<Document>
newsItem boolean
notifyEmail string
originalFileName string
partition ClientPartition
partitionId integer(int64)
permanent boolean
privatise boolean
productGroups Array<ProductGroup>
products Array<Product>
productTonnages Array<ProductTonnage>
recipients Array<ContactRecipient>
relatedDocumentConstituents Array<DocumentConstituent>
relatedDocumentContactGroups Array<DocumentContactGroup>
relatedDocumentEntities Array<DocumentEntity>
relatedDocumentProductGroups Array<DocumentProductGroup>
relatedDocumentProducts Array<DocumentProduct>
retentionDate string(date)
retentionNotifications Array<NotificationDocRetention>
retentionNotified boolean
saveAsDraft boolean
searchedVia Document
sender string
subject string
taskLinks Array<CampaignContactTask>
taskTwoLinks Array<CampaignContactTask>
title string
uploadDate string(date-time)
version integer(int32)
versionIdentifier string
watchingUsers Array<User>

DocumentEntity

Name Type
deleted boolean
document Document
entity BaseEntity
id integer(int64)

DocumentEntityGroup

Name Type
document Document
entityGroup EntityGroup
id integer(int64)

DocumentInvoice

Name Type
accountantReference string
approved boolean
approvedBy User
approvedDate string(date)
categoryGroups Array<CategoryGroup>
comments Array<DocumentComment>
constituents Array<Constituent>
constituentTonnages Array<ConstituentTonnage>
contactGroups Array<ContactGroup>
convertedSubTotal number
currentDocument Document
currentDocumentId integer(int64)
dateReceived string(date)
deleted boolean
deletedDate string(date-time)
description string
docType string
documentBudgets Array<DocumentBudget>
documentCategoryGroups Array<DocumentCategoryGroup>
documentConstituents Array<DocumentConstituent>
documentContactGroups Array<DocumentContactGroup>
documentCreationDate string(date)
documentEntities Array<DocumentEntity>
documentEntityGroups Array<DocumentEntityGroup>
documentInvoiceType string
documentLinkAttachments Array<DocumentLinkAttachment>
documentProductGroups Array<DocumentProductGroup>
documentProducts Array<DocumentProduct>
documentStudies Array<DocumentStudy>
documentTagSet Array<DocumentTag>
downloadTaskLinks Array<CampaignContactTaskDocument>
entities Array<BaseEntity>
entityGroups Array<EntityGroup>
expirationNotified boolean
expiryDate string(date)
expiryNotifications Array<NotificationDocExpiry>
fileId string(uuid)
fileName string
fileSize integer(int32)
fileType string
folders Array<Folder>
fromEntity BaseEntity
id integer(int64)
index integer(int32)
internalSourceEmails Array<DocumentEmailInternal>
invoiceAmount number
invoiceCurrencyCode string
invoiceDate string(date)
invoiceNumber string
invoiceOverdueDays integer(int64)
issues Array<IssueAndStatement>
lastUpdated string(date-time)
legislation string
lines Array<DocumentInvoiceLine>
link boolean
linkedDocuments Array<Document>
newsItem boolean
notifyEmail string
originalFileName string
overdueNotifications Array<NotificationDocOverdue>
overdueNotified boolean
paidNotifications Array<NotificationPaid>
partition ClientPartition
partitionId integer(int64)
paymentReceived boolean
permanent boolean
productGroups Array<ProductGroup>
products Array<Product>
productTonnages Array<ProductTonnage>
purchaseOrder string
relatedDocumentCategoryGroups Array<DocumentCategoryGroup>
relatedDocumentConstituents Array<DocumentConstituent>
relatedDocumentContactGroups Array<DocumentContactGroup>
relatedDocumentEntities Array<DocumentEntity>
relatedDocumentProductGroups Array<DocumentProductGroup>
relatedDocumentProducts Array<DocumentProduct>
remarks string
retentionDate string(date)
retentionNotifications Array<NotificationDocRetention>
retentionNotified boolean
searchedVia Document
sent boolean
sentBy User
sentDate string(date)
sourceEmail Array<DocumentEmailExternal>
submissions Array<ReachITRegistration>
subTotal number
taskLinks Array<CampaignContactTask>
taskTwoLinks Array<CampaignContactTask>
title string
toEntity BaseEntity
uploadDate string(date-time)
vat number
version integer(int32)
versionIdentifier string
versions Array<Document>
watchingUsers Array<User>

DocumentInvoiceLine

Name Type
account string
amount number
department string
description string
salesCode string
taxed boolean

DocumentIUCLIDOutput

Name Type
categoryGroups Array<CategoryGroup>
comments Array<DocumentComment>
constituents Array<Constituent>
constituentTonnages Array<ConstituentTonnage>
contactGroups Array<ContactGroup>
context IUCLID6WorkingContext
creationDate string(date)
currentDocument Document
currentDocumentId integer(int64)
deleted boolean
deletedDate string(date-time)
description string
docType string
documentContactGroups Array<DocumentContactGroup>
documentCreationDate string(date)
documentEntityGroups Array<DocumentEntityGroup>
documentTagSet Array<DocumentTag>
downloadTaskLinks Array<CampaignContactTaskDocument>
entities Array<BaseEntity>
entityGroups Array<EntityGroup>
expirationNotified boolean
expiryDate string(date)
expiryNotifications Array<NotificationDocExpiry>
fileId string(uuid)
fileName string
fileSize integer(int32)
fileType string
folders Array<Folder>
id integer(int64)
index integer(int32)
integration Integration
IUCLIDAuthor string
iuclidauthor string
lastUpdated string(date-time)
legalEntity string
link boolean
linkedDocuments Array<Document>
manifest IUCLID6Manifest
newsItem boolean
notifyEmail string
originalFileName string
partition ClientPartition
partitionId integer(int64)
permanent boolean
productGroups Array<ProductGroup>
products Array<Product>
productTonnages Array<ProductTonnage>
relatedDocumentConstituents Array<DocumentConstituent>
relatedDocumentContactGroups Array<DocumentContactGroup>
relatedDocumentEntities Array<DocumentEntity>
relatedDocumentProductGroups Array<DocumentProductGroup>
relatedDocumentProducts Array<DocumentProduct>
retentionDate string(date)
retentionNotifications Array<NotificationDocRetention>
retentionNotified boolean
searchedVia Document
taskLinks Array<CampaignContactTask>
taskTwoLinks Array<CampaignContactTask>
title string
uploadDate string(date-time)
uuid string
version integer(int32)
versionIdentifier string
watchingUsers Array<User>
Name Type
allDownloaded boolean
autoExpire boolean
clientPartition ClientPartition
code string
contact Contact
created string(date-time)
dateAllDownLoaded string(date-time)
documentLinkAttachments Array<DocumentLinkAttachment>
emails Array<DocumentEmailInternal>
expiryDays integer(int32)
id integer(int64)
link string
reminderDate string(date)
reminderDatePassed boolean
tonnageAndUseEnquiries Array<TonnageAndUseEnquiry>

DocumentLinkAttachment

Name Type
document Document
documentLinks Array<DocumentLink>
id integer(int64)

DocumentProduct

Name Type
deleted boolean
document Document
id integer(int64)
product Product

DocumentProductGroup

Name Type
document Document
id integer(int64)
productGroup ProductGroup

DocumentStudy

Name Type
cost number
document Document
id integer(int64)
study Study

DocumentTag

Name Type
deleted boolean
document Document
id integer(int64)
tag Tag

EntityBudget

Name Type
budget Budget
constituent Constituent
constituentEntity ConstituentEntity
entity BaseEntity
id integer(int64)
purchaseOrderNumber string

EntityComment

Name Type
allDay boolean
breadcrumbParent Displayable
calendarEnd string(date-time)
calendarExtendedProps
calendarSource string
contact Contact
createdDate string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
greatestAncestor Comment
hidden boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedBy User
lastUpdatedById integer(int64)
name string
notifications Array<NotificationComment>
partition ClientPartition
published boolean
recordName string
replies Array<Comment>
reply boolean
replyTo Comment
replyToIsUnpublished boolean
serverCreatedReadableDate string
text string
user User

EntityCostRole

Name Type
breadcrumbParent Displayable
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
journal string
name string
partition ClientPartition
partitionId integer(int64)
recordName string
url string

EntityCostRoleData

Name Type
display string
id integer(int64)

EntityData

Name Type
companyNo string
dunnNo string
id integer(int64)
name string
partitionId integer(int64)
utr string
vatNo string

EntityEntityGroup

Name Type
entity BaseEntity
entityGroup EntityGroup
id integer(int64)

EntityGroup

Name Type
name string
partitionId integer(int64)

EntityRole

Name Type
breadcrumbParent Displayable
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
iconClass string
iconColour string
id string
idInPartition integer(int64)
name string
partition ClientPartition
partitionId integer(int64)
recordName string
url string

EntityRoleData

Name Type
display string
id string

EntityStudy

Name Type
breadcrumbParent Displayable
constituent Constituent
constituentEntity ConstituentEntity
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
entity BaseEntity
entityCostRole EntityCostRole
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedBy User
lastUpdatedById integer(int64)
name string
partition ClientPartition
partitionId integer(int64)
purchaseOrderNumber string
purpose string
recordName string
sharedWithOthers boolean
study Study
url string

EntityStudyGroup

Name Type
constituent Constituent
constituentEntity ConstituentEntity
entity BaseEntity
entityCostRole EntityCostRole
group StudyGroup
id integer(int64)
purchaseOrderNumber string
purpose string

Folder

Name Type
children Array<Folder>
created string(date-time)
createdBy User
deletable boolean
documents Array<Document>
folderLinks string
folderPath string
id integer(int64)
name string
parent Folder
partitionId integer(int64)
study Study

FolderData

Name Type
id integer(int64)
name string
parent FolderData
partitionId integer(int64)

FormulationData

Name Type
constituent integer(int64)
id integer(int64)
parentConstituent integer(int64)
parentProduct integer(int64)
percentage number

I6CategoryDocumentDefinitionIdentifier

Name Type
documentSubType string
documentType string

Integration

Name Type
authType string
created string(date-time)
credential string
credentialEncrypted string
display string
entity BaseEntity
host string
id integer(int64)
iuclidDocuments Array<DocumentIUCLIDOutput>
lastUpdated string(date-time)
name string
principal string
refreshToken string
refreshTokenEncrypted string
refreshTokenExpired boolean
token string
tokenEncrypted string
tokenExpired boolean
tokenExpires string(date-time)
tokenTransient string
type string

InvoicePageInfo

Name Type
address string
invoicePageFooter string
invoicingContacts string
otherEntity BaseEntity
purchaseNumber string
showing string
vat string

IssueAndStatement

Name Type
basis string
breadcrumbParent Displayable
clientPartition ClientPartition
commentDisplayUrl string
comments Array<IssueAndStatementComment>
commentsEditPermission string
commentsPermission string
commentType string
constituentIds Array<integer(int64)>
constituents Array<Constituent>
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
emailCode string
emailPrefix string
entities Array<BaseEntity>
entityIds Array<integer(int64)>
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
inventoryId string(uuid)
issue string
lastUpdated string(date-time)
lastUpdatedById integer(int64)
name string
notes string
oneToOne boolean
partition ClientPartition
partitionId integer(int64)
productIds Array<integer(int64)>
products Array<Product>
recordName string
relevantEntities Array<BaseEntity>
reviewDate string(date)
reviewNotified boolean
statement string
studies Array<Study>
studyIds Array<integer(int64)>
supportingDocuments Array<Document>
tasks Array<CampaignContactTask>
url string
version integer(int64)
watchers Array<User>
watching boolean
watchingUsers Array<User>

IssueAndStatementComment

Name Type
allDay boolean
breadcrumbParent Displayable
calendarEnd string(date-time)
calendarExtendedProps
calendarSource string
contact Contact
createdDate string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
greatestAncestor Comment
hidden boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedBy User
lastUpdatedById integer(int64)
name string
notifications Array<NotificationComment>
partition ClientPartition
published boolean
recordName string
replies Array<Comment>
reply boolean
replyTo Comment
replyToIsUnpublished boolean
serverCreatedReadableDate string
text string
user User

IUCLID6Manifest

Name Type
application string
archiveType string
author string
baseDocument IUCLIDDocumentWrapper
baseDocumentUuid string
comment string
context IUCLID6WorkingContext
created string(date-time)
legislation
relevantDocumentType string
submissionTypeString string
title string
treeName string

IUCLID6TocNode

Name Type
changeType string
children Array<IUCLID6TocNode>
code string
commentCount integer(int64)
descendantComments boolean
display string
forType string
id integer(int64)
idString string
matrix boolean
records Array<IUCLIDDocumentWrapper>
title string

IUCLID6WorkingContext

Name Type
applicableFor string
id integer(int64)
identifier string
key string
provider string
title string
tree string

IUCLIDDocumentWrapper

Name Type
attachments Array<IUCLIDDocumentWrapper>
categories Array<IUCLIDDocumentWrapper>
category boolean
changeType string
commentCount integer(int64)
containerId string
content string(byte)
creationDate string(date-time)
creationDateFromString string
creationTool string
definition string
definitionVersion string
descendantComments boolean
display string
documentType string
dossier IUCLIDDocumentWrapper
dossierSubject IUCLIDDocumentWrapper
dossierSubjectKey string
endpointSummary boolean
href string
i5Origin boolean
i6CategoryDocumentDefinitionIdentifiers Array<I6CategoryDocumentDefinitionIdentifier>
idString string
iuclidVersion string
key string
lastModificationDate string(date-time)
lastModificationDateFromString string
literatureDocuments Array<IUCLIDDocumentWrapper>
name string
orderInSectionNo string
otherReferences Array<IUCLIDDocumentWrapper>
ownerLegalEntity IUCLIDDocumentWrapper
records
refSubstance IUCLIDDocumentWrapper
snapshotCreationTool string
subject IUCLIDDocumentWrapper
submissionType string
submissionTypeVersion string
submittingLegalEntity string
substance boolean
substances Array<IUCLIDDocumentWrapper>
subType string
template boolean
templates Array<IUCLIDDocumentWrapper>
tree Array<IUCLID6TocNode>
type string
uuid string

MailjetTemplatedEmail

Name Type
attachments Array<MailjetTemplatedEmailAttachment>
globalTemplateVars
priority string
recipients Array<MailjetTemplatedEmailRecipient>
subject string
templateName string

MailjetTemplatedEmailAttachment

Name Type
data string(byte)
filename string
type string

MailjetTemplatedEmailRecipient

Name Type
email string
templateVars

NotificationActivityOverdue

Name Type
activity StudyActivity
breadcrumbParent Displayable
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
partition ClientPartition
partitionId integer(int64)
planned string(date)
read boolean
recordName string
serverCreatedDate string(date-time)
url string
user User

NotificationCampaignSecurityIssue

Name Type
breadcrumbParent Displayable
campaign Campaign
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
displayIssueType string
hasPageSecurityIssues boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
partition ClientPartition
partitionId integer(int64)
read boolean
recordName string
serverCreatedDate string(date-time)
url string
user User

NotificationCampaignSurvey

Name Type
baseUrl string
breadcrumbParent Displayable
campaignContactTask CampaignContactTask
contact Contact
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
partition ClientPartition
partitionId integer(int64)
read boolean
recordName string
serverCreatedDate string(date-time)
taskUrl string
url string
user User

NotificationCampaignUpload

Name Type
baseUrl string
breadcrumbParent Displayable
campaignContactTask CampaignContactTask
contact Contact
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
fileName string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
partition ClientPartition
partitionId integer(int64)
read boolean
recordName string
serverCreatedDate string(date-time)
url string
user User

NotificationComment

Name Type
baseUrl string
breadcrumbParent Displayable
comment Comment
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
parent Commentable
partition ClientPartition
partitionId integer(int64)
read boolean
recordName string
serverCreatedDate string(date-time)
type string
url string
user User

NotificationDocExpiry

Name Type
breadcrumbParent Displayable
created string(date-time)
daysUntilExpiry integer(int64)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
document Document
drc boolean
expiryDate string(date)
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
partition ClientPartition
partitionId integer(int64)
read boolean
recordName string
serverCreatedDate string(date-time)
url string
user User

NotificationDocOverdue

Name Type
breadcrumbParent Displayable
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
invoice DocumentInvoice
invoiceDate string(date)
invoiceOverdueDays integer(int64)
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
partition ClientPartition
partitionId integer(int64)
read boolean
recordName string
serverCreatedDate string(date-time)
url string
user User

NotificationDocRetention

Name Type
breadcrumbParent Displayable
created string(date-time)
daysUntilExpiry integer(int64)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
document Document
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
partition ClientPartition
partitionId integer(int64)
read boolean
recordName string
retentionDate string(date)
serverCreatedDate string(date-time)
url string
user User

NotificationIuclidReview

Name Type
approval boolean
baseUrl string
breadcrumbParent Displayable
campaignContactTask CampaignContactTask
contact Contact
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
partition ClientPartition
partitionId integer(int64)
read boolean
recordName string
serverCreatedDate string(date-time)
url string
user User

NotificationPageChange

Name Type
baseUrl string
breadcrumbParent Displayable
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
page CampaignPage
partition ClientPartition
partitionId integer(int64)
read boolean
recordName string
serverCreatedDate string(date-time)
type string
url string
user User

NotificationPaid

Name Type
breadcrumbParent Displayable
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCode string
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
invoice DocumentInvoice
mailjetTemplateEmail MailjetTemplatedEmail
mailjetTemplateName string
mailjetTemplateVars
name string
paidDate string(date)
partition ClientPartition
partitionId integer(int64)
read boolean
recordName string
serverCreatedDate string(date-time)
url string
user User

PageableObject

Name Type
offset integer(int64)
paged boolean
pageNumber integer(int32)
pageSize integer(int32)
sort SortObject
unpaged boolean

PageBudgetData

Name Type
content Array<BudgetData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageConstituentData

Name Type
content Array<ConstituentData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageConstituentEntityData

Name Type
content Array<ConstituentEntityData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageConstituentPartyData

Name Type
content Array<ConstituentPartyData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageContactData

Name Type
content Array<ContactData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageDocumentData

Name Type
content Array<DocumentData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageEntityData

Name Type
content Array<EntityData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageFolderData

Name Type
content Array<FolderData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageProductData

Name Type
content Array<ProductData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageRegistrationData

Name Type
content Array<RegistrationData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageStudyData

Name Type
content Array<StudyData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PageSubmissionData

Name Type
content Array<SubmissionData>
empty boolean
first boolean
last boolean
number integer(int32)
numberOfElements integer(int32)
pageable PageableObject
size integer(int32)
sort SortObject
totalElements integer(int64)
totalPages integer(int32)

PairIntegerInteger

Name Type
key integer(int32)
left integer(int32)
right integer(int32)
value integer(int32)

PartitionData

Name Type
email string
id integer(int64)
name string

Party

Name Type
addressLine1 string
addressLine2 string
addressLine3 string
addressType string
contacts Array<Contact>
country Country
countyStateRegion string
deleted boolean
description string
entity BaseEntity
fax string
id integer(int64)
lastUpdated string(date-time)
lastUpdatedBy User
lastUpdatedByEmail string
lastUpdatedById integer(int64)
partitionId integer(int64)
plants Array<Plant>
postcode string
remarks string
sapBusinessReference string
telephone string
townCity string
website string

Plant

Name Type
constituentPlants Array<ConstituentPlant>
id integer(int64)
name string
party Party
plantCode string
productPlants Array<ProductPlant>

Product

Name Type
archived boolean
id integer(int64)
name string
ownerManufacturer string
partitionId integer(int64)

ProductContact

Name Type
contact Contact
contactType string
deleted boolean
id integer(int64)
product Product

ProductData

Name Type
deleted boolean
id integer(int64)
name string
ownerManufacturer string
partitionId integer(int64)

ProductEntity

Name Type
baseEntity BaseEntity
deleted boolean
entityRoles Array<EntityRole>
id integer(int64)
partitionId integer(int64)
product Product

ProductEntityContact

Name Type
contact Contact
deleted boolean
id integer(int64)
productEntity ProductEntity

ProductGroup

Name Type
groupName string
partitionId integer(int64)

ProductParty

Name Type
deleted boolean
id integer(int64)
party Party
product Product

ProductPartyContact

Name Type
contact Contact
deleted boolean
id integer(int64)
productParty ProductParty

ProductPlant

Name Type
id integer(int64)
plant Plant
product Product

ProductTonnage

Name Type
deleted boolean
document Document
enteredDate string(date)
entryYear integer(int32)
forecast boolean
forEntity BaseEntity
id integer(int64)
inAnArticle number(double)
lastUpdated string(date)
mixture number(double)
monomerInAPolymer number(double)
notes string
notInAnArticle number(double)
party Party
product Product
reachLegislation string
substanceOrUnknown number(double)
tonnesImported number(double)
tonnesManufactured number(double)
user User

ReachITRegistration

Name Type
constituent Constituent
dateAccepted string(date)
dateIssued string(date)
dateSubmitted string(date)
forEntity BaseEntity
id integer(int64)
iuclidDossierReference string
leadRegistrant BaseEntity
notes string
partitionId integer(int64)
passedPipeline boolean
reachDossierType string
reachRegistration ReachRegistration
reason string
submissionNumber string
supportingDocument Document
tonnageBand string

ReachRegistration

Name Type
constituent Constituent
constituentTonnages Array<ConstituentTonnage>
currentTonnageBandToImport string
ecName string
ecNumber string
enquiryNumber string
exemption string
exemptionClaimed string
exemptionComment string
exemptionType string
forEntity BaseEntity
id integer(int64)
lastUpdated string(date-time)
lastUpdatedBy User
legalEntity BaseEntity
notPreregistered string
onlyRepresentative BaseEntity
originEntity BaseEntity
partitionId integer(int64)
ppordNumber string
preregistered boolean
preregisteredTonnageBand string
preregistrationDate string(date)
preregistrationName string
preregistrationNumber string
publicName string
reachDossierType string
reachITRegistrations Array<ReachITRegistration>
reachLegislation string
reachRole string
reachSubstanceTypeComposition string
reachSubstanceTypeOrigin string
registeredTonnageBands Array<RegisteredTonnageBandWithDate>
registrationDate string(date)
registrationName string
registrationNotes string
registrationNumber string
submissionDate string(date)
submissionNumber string
submissionType string
substanceTypeCompositionOther string
substanceTypeOriginOther string
uclidID string

ReceivedEmail

Name Type
ccAddresses string
clientPartition ClientPartition
content string
contentType string
dateAttachmentsSaved string(date-time)
dateMessageSaved string(date-time)
dateReceived string(date-time)
deleted boolean
emailAttachments Array<ReceivedEmailAttachment>
fromAddress string
id integer(int64)
messageRead boolean
recipients string
subject string

ReceivedEmailAttachment

Name Type
fileId string(uuid)
filename string
id integer(int64)
receivedEmail ReceivedEmail

RegisteredTonnageBandWithDate

Name Type
allDay boolean
breadcrumbParent Displayable
calendarDisplay string
calendarEnd string(date-time)
calendarExtendedProps
calendarSource string
calendarStart string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
name string
partition ClientPartition
partitionId integer(int64)
reachRegistration ReachRegistration
recordName string
registeredTonnageBand string
start string(date)
url string

RegistrationData

Name Type
constituent ConstituentData
forLegalEntity EntityData
id integer(int64)
reachLegislation string
registrationDate string(date)
registrationName string
registrationNumber string
submittingLegalEntity EntityData

Role

Name Type
admin boolean
deletable boolean
externalGroups Array<string>
forCampaign boolean
forInternal boolean
id integer(int64)
name string
penmanAdmin boolean
permissions Array<string>

SecurityIssue

Name Type
error string
html string
uuid string(uuid)

SortObject

Name Type
empty boolean
sorted boolean
unsorted boolean

Species

Name Type
description string
id integer(int64)

Study

Name Type
code string
end string(date)
folder Folder
id integer(int64)
partitionId integer(int64)
purpose string
species Array<Species>
start string(date)
status string

StudyActivity

Name Type
allDay boolean
autoPlannedAfter integer(int64)
autoPlannedAfterPrevious integer(int64)
autoPlannedAfterPreviousFallback integer(int64)
breadcrumbParent Displayable
calendarEnd string(date-time)
calendarExtendedProps
calendarSource string
calendarStart string(date-time)
commentCount integer(int64)
commentDisplayUrl string
comments Array<StudyActivityComment>
commentsEditPermission string
commentsPermission string
commentType string
completed string(date)
daysOverdue integer(int64)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
editable boolean
fromTemplate boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
inheritingGroupActivities Array<StudyGroupActivity>
inheritingGroupNames Array<string>
multipleInheritanceDates boolean
name string
overdue boolean
overdueNotifications Array<NotificationActivityOverdue>
overdueNotified boolean
partition ClientPartition
partitionId integer(int64)
planned string(date)
recordName string
signedBy User
studyNumber StudyNumber
template StudyActivityTemplate
url string
watching boolean
watchingUsers Array<User>

StudyActivityComment

Name Type
allDay boolean
breadcrumbParent Displayable
calendarEnd string(date-time)
calendarExtendedProps
calendarSource string
contact Contact
createdDate string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
greatestAncestor Comment
hidden boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedBy User
lastUpdatedById integer(int64)
name string
notifications Array<NotificationComment>
partition ClientPartition
published boolean
recordName string
replies Array<Comment>
reply boolean
replyTo Comment
replyToIsUnpublished boolean
serverCreatedReadableDate string
text string
user User

StudyActivityTemplate

Name Type
activities Array<StudyActivity>
autoPlannedAfter integer(int64)
autoPlannedAfterPrevious integer(int64)
id integer(int64)
name string
responsible string
timelineTemplate StudyTimelineTemplate

StudyCostOverviewRow

Name Type
balance number
balanceIn number
categoryGroups Array<CategoryGroup>
constituent Constituent
constituentsEntities Array<ConstituentEntity>
constituentsOfInterest Array<Constituent>
cost number
costOut number
costRoleDisplays Array<string>
costRoles Array<EntityCostRole>
currency Properties: currencyCode, numericCodeAsString, displayName, symbol, defaultFractionDigits, numericCode
entity BaseEntity
entityStudies Array<EntityStudy>
entityStudy EntityStudy
month string
monthDisplay string
outgoingInvoices Array<DocumentInvoice>
paid number
paidIn number
purchaseOrderNumbers Array<string>
quarter integer(int32)
reasonsForInterest Array<string>
registrationNumbers Array<string>
studies Array<Study>
study Study
year integer(int32)

StudyData

Name Type
archived boolean
end string(date)
id integer(int64)
name string
partitionId integer(int64)
purpose string
start string(date)
status string

StudyGroup

Name Type
activities Array<StudyGroupActivity>
breadcrumbParent Displayable
clientPartition ClientPartition
commentDisplayUrl string
comments Array<StudyGroupComment>
commentsEditPermission string
commentsPermission string
commentType string
created string(date-time)
description string
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
entityStudyGroups Array<EntityStudyGroup>
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedById integer(int64)
name string
overriddenStudies Array<Study>
partition ClientPartition
partitionId integer(int64)
recordName string
studies Array<Study>
studiesCount integer(int64)
url string
watchers Array<User>
watching boolean
watchingUsers Array<User>

StudyGroupActivity

Name Type
group StudyGroup
id integer(int64)
name string
planned string(date)

StudyGroupComment

Name Type
allDay boolean
breadcrumbParent Displayable
calendarEnd string(date-time)
calendarExtendedProps
calendarSource string
contact Contact
createdDate string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
greatestAncestor Comment
hidden boolean
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedBy User
lastUpdatedById integer(int64)
name string
notifications Array<NotificationComment>
partition ClientPartition
published boolean
recordName string
replies Array<Comment>
reply boolean
replyTo Comment
replyToIsUnpublished boolean
serverCreatedReadableDate string
text string
user User

StudyNumber

Name Type
activities Array<StudyActivity>
activity string
activityStudyNumber string
contractRef string
cost number
emptyCosts boolean
id integer(int64)
payments Array<StudyPaymentActual>
publishedCost number
publishedPayments Array<StudyPaymentPublished>
studyNumber string
testingLaboratory TestingLaboratory

StudyPaymentActual

Name Type
budget Budget
cost number
estimatedDate string(date)
id integer(int64)
name string
percentage number
quarter integer(int32)
studyNumber StudyNumber
type string
year integer(int32)
yearMonth Properties: year, month, monthValue, leapYear
yearQuarter PairIntegerInteger

StudyPaymentPublished

Name Type
budget Budget
cost number
estimatedDate string(date)
id integer(int64)
name string
percentage number
quarter integer(int32)
studyNumber StudyNumber
type string
year integer(int32)
yearMonth Properties: year, month, monthValue, leapYear
yearQuarter PairIntegerInteger

StudyTimelineTemplate

Name Type
activityTemplates Array<StudyActivityTemplate>
id integer(int64)
name string

SubmissionData

Name Type
dateAccepted string(date)
dateIssued string(date)
dateSubmitted string(date)
id integer(int64)
iuclidDossierReference string
notes string
reachDossierType string
reason string
registration RegistrationData
submissionNumber string
tonnageBand string

SurveyField

Name Type
campaignContactTask CampaignContactTask
defaultValue string
fieldType string
id integer(int64)
index integer(int32)
name string
nameAsText string
nameContainsHtml boolean
nameIssues Array<SecurityIssue>
range boolean
rangeMaximum number
rangeMinimum number
required boolean
selectOptionValues Array<SurveyFieldSelectValue>
selectValuesArray Array<string>
surveyValues Array<SurveyValue>

SurveyFieldSelectValue

Name Type
id integer(int64)
index integer(int32)
surveyField SurveyField
value string

SurveyFieldTemplate

Name Type
defaultValue string
id integer(int64)
index integer(int32)
options Array<SurveyFieldTemplateOption>
question string
range boolean
rangeMaximum number
rangeMinimum number
required boolean
template CampaignTaskTemplate
type string

SurveyFieldTemplateOption

Name Type
id integer(int64)
option string
template SurveyFieldTemplate

SurveyFieldValue

Name Type
deleted boolean
fieldType string
file string(binary)
fileName string
id integer(int64)
surveyField SurveyField
value string
valueAsDate string(date)
valueAsUUID string(uuid)
valueSanitized string

SurveyValue

Name Type
campaignContactEvent CampaignContactEvent
deleted boolean
fieldType string
file string(binary)
fileName string
id integer(int64)
surveyField SurveyField
value string
valueAsDate string(date)
valueAsUUID string(uuid)
valueSanitized string

Tag

Name Type
id TagPartitionPk
tagText string

TagPartitionPk

Name Type
id integer(int64)
partitionId integer(int64)

TaskGroupTask

Name Type
id TaskGroupTaskId
index integer(int64)
task CampaignContactTask
taskGroup CampaignContactTaskGroup

TaskGroupTaskId

Name Type
taskGroupId integer(int64)
taskId integer(int64)

TAUIProduct

Name Type
customUses Array<CustomUse>
id integer(int64)
inAnArticle number(double)
mixture number(double)
monomerInAPolymer number(double)
notInAnArticle number(double)
product Product
quantityTonnes number(double)
remarks string
selected boolean
substanceOrUnknown number(double)
tonnageAndUseEnquiryProductUses Array<TonnageAndUseEnquiryProductUse>

TestingLaboratory

Name Type
breadcrumbParent Displayable
clientPartition ClientPartition
contacts Array<TestingLaboratoryContact>
created string(date-time)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
evaluationNotes string
evaluations Array<TestingLaboratoryEvaluation>
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
lastUpdated string(date-time)
lastUpdatedById integer(int64)
name string
partition ClientPartition
partitionId integer(int64)
recordName string
study Study
studyDirectors Array<Contact>
studyNumbers Array<StudyNumber>
testingLaboratoryEntity BaseEntity
url string

TestingLaboratoryContact

Name Type
contact Contact
id integer(int64)
role TestingLaboratoryRole
testingLaboratory TestingLaboratory

TestingLaboratoryEvaluation

Name Type
id integer(int64)
metric TestingLaboratoryEvaluationMetric
score string

TestingLaboratoryEvaluationMetric

Name Type
id integer(int64)
name string

TestingLaboratoryRole

Name Type
id integer(int64)
name string

TonnageAndUseEnquiry

Name Type
accepted boolean
acceptedBy User
baseEntity BaseEntity
clientPartition ClientPartition
code string
completeWithinDays integer(int32)
contact Contact
createdAsTonnageEnquiry boolean
dateAccepted string(date-time)
dateCreated string(date-time)
dateSubmited string(date-time)
documentEmailInternals Array<DocumentEmailInternal>
documentLink DocumentLink
enquiryYear integer(int32)
entityRole EntityRole
hidden boolean
id integer(int64)
includeForms boolean
products Array<Product>
reachLegislation string
removeBracketedTextFromProductName boolean
sentBy User
submitted boolean
submittedBy User
tonnageAndUseEnquiryUploadDocuments Array<TonnageAndUseEnquiryUploadDocument>
tonnageAndUseImporters Array<TonnageAndUseImporter>

TonnageAndUseEnquiryProductUse

Name Type
id integer(int64)
puStatus string
remarks string
selected boolean
tonnageAndUseImporter TonnageAndUseImporter
usePercentage number(double)
useUuid string(uuid)

TonnageAndUseEnquiryUploadDocument

Name Type
fileId string(uuid)
fileName string
id integer(int64)

TonnageAndUseImporter

Name Type
address string
clientPartition ClientPartition
contactPerson string
country string
email string
id integer(int64)
name string
tauiProducts Array<TAUIProduct>
taxID string
telephone string

UpdateOptions

Name Type
campaignId integer(int64)
createCampaigns boolean
createContacts boolean
defaultRoleId integer(int64)
forCampaign boolean
updateRole boolean

User

Name Type
active boolean
breadcrumbParent Displayable
calendarDashboard boolean
clientPortal boolean
created string(date-time)
credentialsType string
deleted boolean
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
emailAddress string
enabled boolean
entityGroups Array<EntityGroup>
failedLoginCount integer(int32)
firstName string
forcePasswordChange boolean
fullName string
fullNameSanitized string
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
initials string
lastLoggedIn string(date-time)
lastName string
lastUpdated string(date-time)
lastUpdatedById integer(int64)
locked boolean
name string
nameReversed string
notActiveAfter string(date)
owner BaseEntity
partition ClientPartition
partitionId integer(int64)
passwordExpires string(date)
principal string
recordName string
role Role
secret string
securityVersion integer(int32)
temporaryPasswordActive boolean
termsAccepted boolean
url string
version integer(int32)

UserNotificationPreferences

Name Type
allCampaignNotifications boolean
allDocumentNotifications boolean
allStudyNotifications boolean
campaignSecurityWarnings boolean
constituentsInUpdatedInventories boolean
constituentTonnage boolean
emails boolean
invoicePayments boolean
overdueInvoices boolean

UserPartition

Name Type
currentSelection boolean
enabled boolean
id integer(int64)
lastUpdated string(date-time)
notificationPreferences UserNotificationPreferences
partition ClientPartition
relevantRole Role
role Role
user User

UseSurvey

Name Type
breadcrumbParent Displayable
campaign Campaign
ceasedManufacture boolean
clientPartition ClientPartition
company string
constituent Constituent
contact Contact
created string(date-time)
date string(date)
display string
displayArgs Array<string>
displayAttributes Array<>
displayCodePartial string
empty boolean
entities Array<BaseEntity>
entity BaseEntity
event CampaignContactEvent
exportedTonnage number
iconClass string
iconColour string
id integer(int64)
idInPartition integer(int64)
importedTonnage number
lastUpdated string(date-time)
lastUpdatedById integer(int64)
name string
notes string
onlyRepresentative boolean
orTonnage number
partition ClientPartition
partitionId integer(int64)
recordName string
referralCode string
referrer BaseEntity
role EntityRole
status string
url string
useTonnages Array<UseSurveyTonnage>

UseSurveyTonnage

Name Type
exposureMonitored boolean
functions Array<UseSurveyTonnageFunction>
id integer(int64)
legalEmissions boolean
maxSiteTonnage number
notes string
proceduresDocumented boolean
sdsFileIds Array<string(uuid)>
sdsFileNames Array<string>
tonnage number
tonnageDetails Array<UseSurveyTonnageDetail>
use string(uuid)
useLifeCycleFallback string
useNameFallback string
useSurvey UseSurvey

UseSurveyTonnageDetail

Name Type
additionalMeasures Array<string>
concentration number
concentrationRange string
duration string
gloves string
goggles boolean
id integer(int64)
localVentilation boolean
location string
masks string
processCategory integer(int64)
productCategory string
roomVentilation string
temperature number
useSurveyTonnage UseSurveyTonnage

UseSurveyTonnageFunction

Name Type
functionId integer(int64)
functionNameFallback string
id integer(int64)
useSurveyTonnage UseSurveyTonnage