mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-06-15 01:35:13 +02:00
changes. Support for separate workspaces Addition of workspace CLI support for test purposes
14 lines
441 B
Python
14 lines
441 B
Python
from dataclasses import dataclass
|
|
|
|
@dataclass
|
|
class Metadata:
|
|
# Source identifier
|
|
id: str = ""
|
|
|
|
# Root document identifier (set by librarian, preserved through pipeline)
|
|
root: str = ""
|
|
|
|
# Collection the message belongs to. Workspace is NOT carried on the
|
|
# message — consumers derive it from flow.workspace (the flow the
|
|
# message arrived on), which is the trusted isolation boundary.
|
|
collection: str = ""
|