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 path | Schema | Producer |
|---|---|---|
| .workspai/reports/transparency-evidence.latest.json | transparency-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 path | Type | Required | Meaning | Constraints |
|---|---|---|---|---|
| environment | string | null | No | Defines the environment value at this contract boundary. | — |
| generatedAt | string | Yes | Defines the generatedat value at this contract boundary. | format: date-time |
| records | array | Yes | Defines the records value at this contract boundary. | — |
| schemaVersion | string | Yes | Defines 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
}