Models
Ontology
The Ontology model represents an ontology object returned by the API.
class Ontology(BaseModel):
id: str
name: str
status: OntologyStatus
created_at: datetime| Attribute | Type | Description |
|---|---|---|
id | str | The unique identifier of the ontology. |
name | str | The name of the ontology. |
status | OntologyStatus | The current status of the ontology, using the OntologyStatus enum. |
created_at | datetime | The timestamp when the ontology record was created. |