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

Class OSIDataset

python/src/ossie/models.py:110–122  ·  view source on GitHub ↗

Logical dataset representing a business entity (fact or dimension table).

Source from the content-addressed store, hash-verified

108
109
110class OSIDataset(BaseModel):
111 """Logical dataset representing a business entity (fact or dimension table)."""
112
113 model_config = ConfigDict(frozen=True)
114
115 name: str
116 source: str
117 primary_key: Optional[list[str]] = None
118 unique_keys: Optional[list[list[str]]] = None
119 description: Optional[str] = None
120 ai_context: Optional[OSIAIContext] = None
121 fields: Optional[list[OSIField]] = None
122 custom_extensions: Optional[list[OSICustomExtension]] = None
123
124
125class OSIRelationship(BaseModel):

Callers 2

_osi_datasetFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected