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
AttributeTypeDescription
idstrThe unique identifier of the ontology.
namestrThe name of the ontology.
statusOntologyStatusThe current status of the ontology, using the OntologyStatus enum.
created_atdatetimeThe timestamp when the ontology record was created.