For the complete documentation index, see llms.txt. This page is also available as Markdown.

Listing of Schema

GET /api/v1/schemas

Returns a paginated list of all schemas owned by the authenticated Standard Registry user.

Authentication: Bearer token required (Authorization: Bearer <token>)

Permission: Permissions.SCHEMAS_SCHEMA_READ


Request

Query Parameters

Parameter
Type
Required
Default
Description

pageIndex

number

No

0

Zero-based page index (number of pages to skip)

pageSize

number

No

20

Number of items to return per page

category

string

No

β€”

Schema category filter (e.g. POLICY)

policyId

string

No

β€”

Filter schemas by policy ID

moduleId

string

No

β€”

Filter schemas by module ID

toolId

string

No

β€”

Filter schemas by tool ID

topicId

string

No

β€”

Filter schemas by topic ID


Response

Success Response

Status: 200 OK

The response includes an X-Total-Count header containing the total number of matching schemas.

Error Responses

Status
Description

401 Unauthorized

Missing or invalid token

403 Forbidden

Insufficient permissions

500 Internal Server Error

Unexpected server failure

Last updated