Metadata-Version: 2.4
Name: knot0_event_schemas
Version: 2.0.34
Summary: Knot0 event JSON Schemas (Python package) with convenience loader
License-Expression: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: jsonschema>=4.17.0

knot0-event-schemas (Python)

JSON Schemas for Knot0 platform events, packaged for Python with a convenience loader.

Install
```
pip install knot0_event_schemas
```

Usage
```
from knot0_event_schemas import load_schema_for_envelope
ok, schema = load_schema_for_envelope({
  'specversion': '1.0',
  'type': 'v1.orchestration.workflow.started',
  'source': 'orchestration-service',
  'id': '...',
  'data': {}
})
```

