Returns Schema by Username

RETURNS ALL SYSTEM SCHEMAS BY USERNAME

Returns all System Schemas by Username

GET /schemas/system/{username}

Return all system schemas by username. Only user with the Standard Registry are allowed to make the request.

Path Parameters

NameTypeDescription

username*

String

Username

Query Parameters

NameTypeDescription

pageIndex

Integer

The number of pages to skip before starting to collect the result set.

pageSize

Integer

The number of items to return.

{
    headers:
            x-total-count:
              schema:
                type: integer
              description: Total number of items in the collection.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Schema'
}

Last updated