Skip to main content

Attestations

Introduction

The Attestation Schema is a JSON schema designed to define and standardise attestations made about components within an AI system. These attestations provide essential information about various claims, ranging from performance metrics to ethical reviews, supporting traceability and accountability within the Trusted AI BOM (TAIBOM) framework.

Description

This schema captures attestations with the following details:

  • Component: The component being attested to, identified by a unique ID and its associated hash.
  • Attestation: The claim made about the component, including its type, claimant, and supporting evidence.
  • Hash: A cryptographic hash to verify the integrity of the attestation.

Types of Attestations

Attestations can take any form, such as:

  • Bias Claims: Ethical audits identifying biases in AI components.
  • Performance Claims: Testers documenting performance metrics.
  • Best Practice Claims: Statements affirming adherence to industry best practices.

Use Case

The Attestation Schema is used to:

  1. Document Claims: Provide a formal structure for recording attestations related to AI system components.
  2. Support Accountability: Ensure claims about AI components are transparent and traceable.
  3. Enable Audits and Compliance: Facilitate ethical and performance audits by linking components with attestations and evidence.

By employing this schema, organisations can ensure robust tracking and verification of claims made about AI system components, enhancing trust and accountability within AI ecosystems.

Schemas

$id: https://github.com/nqminds/Trusted-AI-BOM/blob/main/packages/schemas/src/taibom-schemas/60-attestation.v1.0.0.schema.yaml
$schema: https://json-schema.org/draft/2020-12/schema
title: Attestations
description: |
This schema defines a generic attestation to any component of an AI system.
type: object
properties:
component:
type: object
description: Component reference, including an ID and hash for the VC claim.
properties:
id:
type: string
description: The component ID (unique identifier) of the VC claim.
hash:
type: string
description: Cryptographic hash (e.g., SHA-256) for verifying the integrity of the VC claim.
required:
- id
- hash
attestation:
type: object
description: Attestation made about the component.
required:
- type
required:
- component
- attestation

Examples

componentattestation
[object Object][object Object]
[object Object][object Object]
Edit this schema here