Execution Trace.Schema

Path: loom-sprint-scaffold/loom/src/contracts/execution-trace.schema.jsonRelative: loom/src/contracts/execution-trace.schema.jsonSubproject: loom-sprint-scaffoldCategory: configuration
Lines: 48Bytes: 2,004Imports: 0Exports: 0

Content Preview

  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "$id": "https://leverageai.network/schemas/loom/execution-trace.json",
  4. "title": "ExecutionTraceEvent",
  5. "type": "object",
  6. "required": ["event_id", "dispatch_id", "seq", "ts", "kind"],
  7. "additionalProperties": false,
  8. "properties": {
  9. "event_id": { "type": "string", "pattern": "^evt_[a-z0-9]{12}$" },
  10. "dispatch_id": { "type": "string", "pattern": "^[a-f0-9]{64}$" },
  11. "seq": { "type": "integer", "minimum": 0 },
  12. "ts": {