{"id":25176690,"url":"https://github.com/conduitio/conduit-schema-registry","last_synced_at":"2025-05-06T23:18:56.888Z","repository":{"id":246953348,"uuid":"824277743","full_name":"ConduitIO/conduit-schema-registry","owner":"ConduitIO","description":"Conduit Schema Registry","archived":false,"fork":false,"pushed_at":"2025-05-06T15:16:11.000Z","size":397,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-05-06T16:45:42.325Z","etag":null,"topics":["go","golang","schema-registry"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ConduitIO.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-07-04T18:45:50.000Z","updated_at":"2025-05-06T15:16:13.000Z","dependencies_parsed_at":"2024-08-14T03:57:42.958Z","dependency_job_id":"83de1690-7e49-46e5-8bb2-5039940f5a0a","html_url":"https://github.com/ConduitIO/conduit-schema-registry","commit_stats":null,"previous_names":["conduitio/conduit-schema-registry"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ConduitIO%2Fconduit-schema-registry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ConduitIO%2Fconduit-schema-registry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ConduitIO%2Fconduit-schema-registry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ConduitIO%2Fconduit-schema-registry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ConduitIO","download_url":"https://codeload.github.com/ConduitIO/conduit-schema-registry/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252782931,"owners_count":21803423,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","golang","schema-registry"],"created_at":"2025-02-09T13:17:54.086Z","updated_at":"2025-05-06T23:18:56.869Z","avatar_url":"https://github.com/ConduitIO.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Conduit Schema Registry\n\n[![License](https://img.shields.io/github/license/ConduitIO/conduit-schema-registry)](https://github.com/ConduitIO/conduit-schema-registry/blob/main/LICENSE.md)\n[![Test](https://github.com/ConduitIO/conduit-schema-registry/actions/workflows/test.yml/badge.svg)](https://github.com/ConduitIO/conduit-schema-registry/actions/workflows/test.yml)\n[![Go Report Card](https://goreportcard.com/badge/github.com/ConduitIO/conduit-schema-registry)](https://goreportcard.com/report/github.com/ConduitIO/conduit-schema-registry)\n\nConduit Schema Registry is a service that stores and manages schemas. It is used\ninternally in [Conduit](https://github.com/ConduitIO/conduit) to store the schemas\nof records that are produced and consumed by connectors.\n\nThe schema registry can either be embedded in a Go application or run as a\nstandalone service exposing a REST API.\n\n\u003e [!NOTE]\n\u003e This is a work in progress and is not ready to be used as a standalone service\n\u003e in production.\n\n## REST API\n\nThe schema registry exposes a REST API compatible with the Confluent Schema\nRegistry API. The API is documented in the [Confluent Schema Registry\ndocumentation](https://docs.confluent.io/current/schema-registry/develop/api.html).\n\nList of supported endpoints:\n\n- Schemas\n  - [x] `GET /schemas/ids/{id}`\n  - [x] `GET /schemas/ids/{id}/schema`\n  - [ ] `GET /schemas/types`\n  - [x] `GET /schemas/ids/{id}/versions`\n\n- Subjects\n  - [ ] `GET /subjects`\n  - [x] `GET /subjects/{subject}/versions`\n  - [ ] `DELETE /subjects/{subject}`\n  - [x] `GET /subjects/{subject}/versions/{version}`\n  - [x] `GET /subjects/{subject}/versions/{version}/schema`\n  - [x] `POST /subjects/{subject}/versions`\n  - [ ] `POST /subjects/{subject}`\n  - [ ] `DELETE /subjects/{subject}/versions/{version}`\n  - [ ] `GET /subjects/{subject}/versions/{version}/referencedby`\n\n- Mode\n  - [ ] `GET /mode`\n  - [ ] `PUT /mode`\n  - [ ] `GET /mode/{subject}`\n  - [ ] `PUT /mode/{subject}`\n  - [ ] `DELETE /mode/{subject}`\n\n- Compatibility\n  - [ ] `POST /compatibility/subjects/{subject}/versions/{version}`\n  - [ ] `POST /compatibility/subjects/{subject}/versions`\n\n- Config\n  - [ ] `PUT /config`\n  - [ ] `GET /config`\n  - [ ] `PUT /config/{subject}`\n  - [ ] `GET /config/{subject}`\n  - [ ] `DELETE /config/{subject}`\n\n- Exporters\n  - [ ] `GET /exporters`\n  - [ ] `GET /contexts`\n  - [ ] `POST /exporters`\n  - [ ] `PUT /exporters/{name}`\n  - [ ] `PUT /exporters/{name}/config`\n  - [ ] `GET /exporters/{name}`\n  - [ ] `GET /exporters/{name}/status`\n  - [ ] `GET /exporters/{name}/config`\n  - [ ] `PUT /exporters/{name}/pause`\n  - [ ] `PUT /exporters/{name}/reset`\n  - [ ] `PUT /exporters/{name}/resume`\n  - [ ] `DELETE /exporters/{name}`","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconduitio%2Fconduit-schema-registry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconduitio%2Fconduit-schema-registry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconduitio%2Fconduit-schema-registry/lists"}