POST
/
ontology
Create a new ontology
curl --request POST \
  --url https://api.praxos.ai/ontology \
  --header 'API-key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "schemas": {}
}'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>"
}

Authorizations

API-key
string
header
required

API key for authentication

Body

application/json
name
string
required

Name of the ontology

schemas
object
required

JSON Schema for the ontology

description
string

Description of the ontology

Response

Ontology created successfully

id
string
required

Unique identifier of the ontology

name
string
required

Name of the ontology

description
string

Description of the ontology