MCPcopy Create free account
hub / github.com/apache/ossie / OSIRelationship

Class OSIRelationship

python/src/ossie/models.py:125–136  ·  view source on GitHub ↗

Foreign key relationship between datasets.

Source from the content-addressed store, hash-verified

123
124
125class OSIRelationship(BaseModel):
126 """Foreign key relationship between datasets."""
127
128 model_config = ConfigDict(frozen=True, populate_by_name=True)
129
130 name: str
131 from_dataset: str = Field(..., alias="from")
132 to: str
133 from_columns: list[str]
134 to_columns: list[str]
135 ai_context: Optional[OSIAIContext] = None
136 custom_extensions: Optional[list[OSICustomExtension]] = None
137
138
139class OSIMetric(BaseModel):

Callers 2

_build_relationshipsMethod · 0.90
_osi_relationshipFunction · 0.90

Calls 1

FieldClass · 0.85

Tested by

no test coverage detected