ocel 0.1.5

OCEL 2.0 data model, I/O (JSON/SQLite/XML), and validation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "eventTypes": [{ "name": "noop", "attributes": [] }],
  "objectTypes": [{ "name": "thing", "attributes": [] }],
  "events": [
    {
      "id": "e1",
      "type": "noop",
      "time": "2023-01-01T00:00:00Z",
      "attributes": [],
      "relationships": [
        { "objectId": "t1", "qualifier": "rel" },
        { "objectId": "t1", "qualifier": "rel" }
      ]
    }
  ],
  "objects": [{ "id": "t1", "type": "thing", "attributes": [], "relationships": [] }]
}