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
identifier mandatory UUID A globally unique identifier. See identifiers section for information on how to construct this identifier
source mandatory String What source provided the certificate? The entry should be the Certification Sources Controlled List identifier.
issueDate 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
  PRODUCTS }o..o{ CERTIFICATION_CLAIMS : within
  CERTIFICATION_CLAIMS {
    identifier UUID "*"
    source String "*"
    issueDate Date
  }
  CERTIFICATION_CLAIMS }o--o{ CONTROLLED_LISTS : attributes
  CONTROLLED_LISTS {
    certificationSources mandatory 
  }