Update an existing annotation schema by its identifier

PUT /annotation-schemas/v1/{schemaUUID}

  • Headers:

    • X-ANNOTATIONSCHEMAS-APPKEY (string): Required. The API key to authenticate the request.
  • Path Parameters:

    • schemaUUID (UUID): Required. The unique identifier of the annotation schema.
  • Request Body:

    {
      "name": "string (nullable)",
      "description": "string (nullable)",
      "specification": "string (nullable)"
    }
  • Responses:

    • 200 OK: Returns the updated schema.
    • 400 Bad Request: If the input is invalid.