Retrieve a list of all annotation schemas
GET /annotation-schemas/v1
-
Headers:
X-ANNOTATIONSCHEMAS-APPKEY
(string): Required. The API key to authenticate the request.
-
Query Parameters:
includePublic
(boolean): Optional. Iftrue
includes all public annotation schemas. Default isfalse
, so only list your own.
-
Responses:
200 OK
: Returns an array of annotation schemas.404 Not Found
: If no schemas are found.
-
Example Schema:
[ { "identifier": "string (UUID)", "createdAt": "string (ISO 8601 date-time)", "updatedAt": "string (ISO 8601 date-time or null)", "name": "string (nullable)", "description": "string (nullable)", "specification": "string (nullable)" } ]