All contracts

Platform contracts / JSON Schema

Transparency Evidence V1

Defines the versioned transparency evidence v1 boundary used by Workspai and its consumers.

Schema version
transparency-evidence.v1
Contract path
contracts/transparency-evidence.v1.json
Publication
synced-supporting-contract
Defined fields
4
Artifact bindings
1

Why this contract exists

Architecture role

Defines a versioned interoperability boundary used by Workspai and contract-aware consumers.

Consumption boundary

  • Workspai CLI
  • Contract-aware integrations

Related commands

Commands are linked only when the runtime contract identifies a direct production relationship. Supporting contracts may be consumed without having a single producer command.

Produced artifacts

These durable files are emitted by registered commands and validated against this contract.

Artifact pathSchemaProducer
.workspai/reports/transparency-evidence.latest.jsontransparency-evidence.v1
workspai mirror sync

Field reference

Every declared schema property or published capability path is listed here. Required means the contract declares or publishes that field at the shown boundary.

Field pathTypeRequiredMeaningConstraints
environmentstring | nullNoDefines the environment value at this contract boundary.
generatedAtstringYesDefines the generatedat value at this contract boundary.format: date-time
recordsarrayYesDefines the records value at this contract boundary.
schemaVersionstringYesDefines the schemaversion value at this contract boundary.const: "transparency-evidence.v1"

Canonical machine-readable definition

The raw synchronized contract remains authoritative. The educational sections above are projections of this definition.

Show raw JSON
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://getrapidkit.com/schemas/transparency-evidence.v1.json",
  "type": "object",
  "required": [
    "schemaVersion",
    "generatedAt",
    "records"
  ],
  "properties": {
    "schemaVersion": {
      "const": "transparency-evidence.v1"
    },
    "generatedAt": {
      "type": "string",
      "format": "date-time"
    },
    "environment": {
      "type": [
        "string",
        "null"
      ]
    },
    "records": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  },
  "additionalProperties": true
}