Skip to main content
GET
/
v4
/
schemas
/
{schemaId}
Get schema by ID
curl --request GET \
  --url https://api.kadoa.com/v4/schemas/{schemaId} \
  --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

Path Parameters

schemaId
string
required

Schema ID

Response

200

Response wrapper for a single schema

error
boolean
required

Error flag (always false on success)

data
object
required

Schema data

I