Skip to main content
GET
/
v4
/
schemas
/
List all schemas
curl --request GET \
  --url https://api.kadoa.com/v4/schemas/ \
  --header 'x-api-key: <api-key>'
{
  "error": true,
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "NEO",
      "isPublic": true,
      "schema": [
        {
          "name": "<string>",
          "description": "<string>",
          "fieldType": "SCHEMA",
          "example": "<string>",
          "dataType": "STRING",
          "isKey": true
        }
      ],
      "entity": "<string>",
      "description": {
        "hintText": "<string>"
      }
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication

Response

200

Response wrapper for list of schemas

error
boolean
required

Error flag (always false on success)

data
SchemaResponse · object[]
required

Array of schemas

I