openapi: 3.1.0 info: title: Confluent Schema Registry Compatibility Schemas API description: Minimal OpenAPI description of the Confluent Schema Registry REST API used for schema evolution. version: 1.0.0 x-generated-from: https://docs.confluent.io/platform/current/schema-registry/develop/api.html x-generated-by: claude-crawl-2026-05-08 servers: - url: https://your-schema-registry-host description: Schema Registry host (replace with your deployment) tags: - name: Schemas paths: /schemas/ids/{id}: parameters: - name: id in: path required: true schema: type: integer get: tags: - Schemas summary: Get a schema by id responses: '200': description: Schema string content: application/vnd.schemaregistry.v1+json: schema: $ref: '#/components/schemas/SchemaString' /schemas/types: get: tags: - Schemas summary: List supported schema types responses: '200': description: Supported schema types content: application/vnd.schemaregistry.v1+json: schema: type: array items: type: string components: schemas: SchemaString: type: object description: A schema definition. properties: schema: type: string schemaType: type: string references: type: array items: type: object additionalProperties: true additionalProperties: true