JSON Schemas Directory
Это содержимое пока не доступно на вашем языке.
These schemas are hosted on the root domain at https://uape.dev/schemas/<name>-1.0.json and are used by DAIMON OS, operator CLI, and compilers to validate contract manifests and events.
Core Runtime Schemas
Section titled “Core Runtime Schemas”| Schema Target | Live URL | Description | Source File |
|---|---|---|---|
| Contract Manifest | contract-manifest-1.0.json | Governs WASM module capabilities, databases, and gateways. | docs/schemas/contract-manifest.schema.json |
| Autopoietic Trigger | autopoietic-trigger-1.0.json | Dictates self-evolution rules for the business state. | docs/schemas/autopoietic-trigger.schema.json |
| Sub-Entity | sub-entity-1.0.json | Describes sub-relational MVCC storage entities. | docs/schemas/sub-entity.schema.json |
| Audit Event | audit-event-1.0.json | The format for signed transaction rows in the logs. | docs/schemas/audit-event.schema.json |
| Gateway Configuration | gateway-1.0.json | Declares Telegram TMA and gRPC connectivity. | docs/schemas/gateway.schema.json |
| Storage Topology | storage-topology-1.0.json | Configures redb indexes, tables, and partitions. | docs/schemas/storage-topology.schema.json |
Direct Integration and Usage
Section titled “Direct Integration and Usage”To reference these schemas in your IDE or manifests, add the $schema field pointing to the live URL:
{ "$schema": "https://uape.dev/schemas/contract-manifest-1.0.json", "name": "enterprise-module", "version": "1.0.0"}