Pular para o conteúdo

JSON Schemas Directory

Este conteúdo não está disponível em sua língua ainda.

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.

Schema TargetLive URLDescriptionSource File
Contract Manifestcontract-manifest-1.0.jsonGoverns WASM module capabilities, databases, and gateways.docs/schemas/contract-manifest.schema.json
Autopoietic Triggerautopoietic-trigger-1.0.jsonDictates self-evolution rules for the business state.docs/schemas/autopoietic-trigger.schema.json
Sub-Entitysub-entity-1.0.jsonDescribes sub-relational MVCC storage entities.docs/schemas/sub-entity.schema.json
Audit Eventaudit-event-1.0.jsonThe format for signed transaction rows in the logs.docs/schemas/audit-event.schema.json
Gateway Configurationgateway-1.0.jsonDeclares Telegram TMA and gRPC connectivity.docs/schemas/gateway.schema.json
Storage Topologystorage-topology-1.0.jsonConfigures redb indexes, tables, and partitions.docs/schemas/storage-topology.schema.json

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"
}