Skip to content

Certification Claims

The Certification Claims relationship list identifies the certificates that can be assigned to various tables. This is used in the following schemas:

Data

Column
Status
Format Notes
certificationIdentifier mandatory UUID A globally unique identifier. See identifiers section for information on how to construct this identifier
certificationSource mandatory String What source provided the certificate? The entry should be the Certification Source Controlled List identifier.
certificationIssueDate optional Date The date that the certificate was provided/last updated. Use the format yyyy-mm-dd adhering to the ISO 8601 dateTime standard.

Diagram

erDiagram
  BASE_MATERIALS }o..o{ CERTIFICATION_CLAIMS : within
  MATERIALS }o..o{ CERTIFICATION_CLAIMS : within
  COMPONENTS}o..o{ CERTIFICATION_CLAIMS : within
  COMPLETE_PACKAGING }o..o{ CERTIFICATION_CLAIMS : within
  CERTIFICATION_CLAIMS {
    certificationIdentifier UUID "*"
    certificationSource String "*"
    certificationIssueDate Date
  }
  CERTIFICATION_CLAIMS }o--o{ CONTROLLED_LISTS : attributes
  CONTROLLED_LISTS {
    certificationSource mandatory 
  }

Template

Certification claims should be provided as a separate csv file. The specification of this csv file is as follows:

Certification Claims Template

Example

1
2
3
4
5
6
--A certificate provided by the FSA.
{
  "certificationIdentifier": "eed87ac3-6e3e-45fb-af2c-dd0f64fdb597",
  "certificationSource": "certification-source-0002",
  "certificationIssueDate": "2022-08-01"
}