Returns Result of Schema comparison
Returns the result of comparing two schemas.
POST /analytics/compare/schemas
Returns the result of comparing two schemas. Only users with the Standard Registry role are allowed to make the request.
Request Body
Name
Type
Description
schemaId1
String
Schema Identifier 1
schemaId2
String
Schema Identifier 2
idLvl
String
UUID comparison setting (0/1)
{
    content:
            application/json:
              schema:
                type: object
                properties:
                  left:
                    type: object
                  right:
                    type: object
                  fields:
                    $ref: '#/components/schemas/Table'
                  total:
                    type: number
}{
    // Response
}{
    content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
}Last updated