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
Name
Type
Description
username*
String
Username
Query Parameters
Name
Type
Description
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'
}{
    // Response
}{
    content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
}Last updated