{"id":18811383,"url":"https://github.com/chop-dbhi/schema-registry","last_synced_at":"2026-05-01T00:31:47.710Z","repository":{"id":141917862,"uuid":"73486955","full_name":"chop-dbhi/schema-registry","owner":"chop-dbhi","description":"General purpose schema registry.","archived":false,"fork":false,"pushed_at":"2016-11-18T15:19:20.000Z","size":12,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-05-22T03:37:35.631Z","etag":null,"topics":["avro-schema","jsonschema","microservice","schema-registry","versioning"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chop-dbhi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-11-11T15:03:36.000Z","updated_at":"2019-12-02T06:45:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"5585c25f-6e72-4e29-8201-f0b973869972","html_url":"https://github.com/chop-dbhi/schema-registry","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/chop-dbhi/schema-registry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chop-dbhi%2Fschema-registry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chop-dbhi%2Fschema-registry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chop-dbhi%2Fschema-registry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chop-dbhi%2Fschema-registry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chop-dbhi","download_url":"https://codeload.github.com/chop-dbhi/schema-registry/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chop-dbhi%2Fschema-registry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32481553,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["avro-schema","jsonschema","microservice","schema-registry","versioning"],"created_at":"2024-11-07T23:26:05.730Z","updated_at":"2026-05-01T00:31:47.678Z","avatar_url":"https://github.com/chop-dbhi.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Schema Registry\n\nSchema registry is a service for managing schema for shared data types. The driving use case are validating data records in ETL-related workflows.\n\n## Install\n\nDownload from the [releases page](https://github.com/chop-dbhi/schema-registry/releases)\n\n## Run\n\n```\nschema-registry [-db registry.db]\n                [-http 127.0.0.1:8080]\n                [-tlscert tls.cert] [-tlskey tls.key]\n```\n\n## Usage\n\nAt a minimum a schema must include a unique id, type, and the schema definition. Currently the registry supports [JSON Schema](http://json-schema.org) schema and [Apache Avro](http://avro.apache.org/docs/current/).\n\n### HTTP API\n\nRegister a new schema.\n\n```\ncurl -XPOST localhost:8080/schema -d '\n{\n  \"id\": \"test\",\n  \"type\": \"json-schema\",\n  \"def\": {\n    \"type\": \"object\",\n    \"properties\": {\n      \"first_name\": {\n        \"type\": \"string\"\n      },\n      \"last_name\": {\n        \"type\": \"string\"\n      }\n    }\n  }\n}\n'\n```\n\nGet the current version of a schema.\n\n```\ncurl localhost:8080/schema/test\n```\n\nUpdate a schema definition.\n\n```\ncurl -XPUT localhost:8080/schema/test -d '\n{\n  \"type\": \"object\",\n  \"properties\": {\n    \"first_name\": {\n      \"type\": \"string\"\n    },\n    \"last_name\": {\n      \"type\": \"string\"\n    },\n    \"dob\": {\n      \"type\": \"string\",\n      \"format\": \"date-time\"\n    }\n  }\n}\n'\n```\n\nValidate a value against the schema. The response contains an array of errors if any are present.\n\n```\ncurl -XPOST localhost:8080/schema/test -d '\n{\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\"\n}\n'\n```\n\nGet a list of schema IDs.\n\n```\ncurl localhost:8080/schema\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchop-dbhi%2Fschema-registry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchop-dbhi%2Fschema-registry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchop-dbhi%2Fschema-registry/lists"}