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

Updating Schema

UPDATING SCHEMA BASED ON SCHEMA ID

Updates the schema

PUT /schemas/{schemaId}

Updates the schema matching the id in the request body. Only users with the Standard Registry role are allowed to make the request.

Path Parameters

Name
Type
Description

schemaID*

String

Schema ID

Request Body

Name
Type
Description

*

schema

Object that contains a valid schema including the id of the schema that is to be update

{
    content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Schema'
}
{
    // Response
}
{
    // Response
}
{
    content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
}

Last updated