List entity types
GET/api/v1/catalog/definitions
List entity types
Response excludes Cortex default types of service, domain, and team.
Request
Query Parameters
When true, returns the built-in entity types that Cortex provides, such as rds
and s3
. Defaults to false.
Default value: 250
Number of results to return per page, between 1 and 1000. Default 250.
Default value: 0
Page number to return, 0-indexed. Default 0.
Responses
- 200
- 429
Successfully found entity types
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
definitions
object[]
required
Possible values: [CORTEX
, CUSTOM
]
Current page number, 0-indexed
Total number of results
Total number of pages
{
"definitions": [
{
"description": "string",
"name": "string",
"schema": {},
"source": "CORTEX",
"type": "string"
}
],
"page": 0,
"total": 0,
"totalPages": 0
}
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
Response Headers
Retry-After
integer
The number of seconds until the rate limiting resets.
- application/problem+json
- Schema
- Example (from schema)
Schema
The number of seconds until the rate limiting resets.
Possible values: >= 100
and <= 599
, [429
]
{
"detail": "string",
"instance": "string",
"retryAfter": 0,
"status": 429,
"title": "string",
"type": "string"
}