{"id":36424211,"url":"https://github.com/reactivecore/rc-circe-json-schema","last_synced_at":"2026-01-14T02:36:28.019Z","repository":{"id":37991497,"uuid":"450464156","full_name":"reactivecore/rc-circe-json-schema","owner":"reactivecore","description":null,"archived":false,"fork":false,"pushed_at":"2023-04-06T12:34:36.000Z","size":99,"stargazers_count":12,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-01-11T19:33:55.728Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/reactivecore.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-21T11:24:16.000Z","updated_at":"2024-01-06T16:50:42.000Z","dependencies_parsed_at":"2023-02-04T06:00:14.892Z","dependency_job_id":null,"html_url":"https://github.com/reactivecore/rc-circe-json-schema","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/reactivecore/rc-circe-json-schema","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reactivecore%2Frc-circe-json-schema","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reactivecore%2Frc-circe-json-schema/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reactivecore%2Frc-circe-json-schema/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reactivecore%2Frc-circe-json-schema/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reactivecore","download_url":"https://codeload.github.com/reactivecore/rc-circe-json-schema/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reactivecore%2Frc-circe-json-schema/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-01-11T17:58:21.141Z","updated_at":"2026-01-14T02:36:28.012Z","avatar_url":"https://github.com/reactivecore.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"Reactive Core Circe JSON Validator\n==================================\n\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/net.reactivecore/circe-json-schema_2.13/badge.svg)](https://maven-badges.herokuapp.com/maven-central/net.reactivecore/circe-json-schema_2.13)\n\nThis is a Scala implementation of a [JSON Schema](https://json-schema.org/) validator based upon the \ngreat [io.circe](https://circe.github.io/circe/) Library.\n\nNote: the validator is in early state and API may not be stable.\n\n## Features\n\n- Implementing JSON Schema 2020-12, 2019-09\n- All tests of the [JSON Schema Test Suite](https://github.com/json-schema-org/JSON-Schema-Test-Suite) passing\n- You can bring your own Downloader (using Tagless Final Pattern)\n- Support for Scala 2.12, 2.13 and **3**\n\n\n## Known Limitations\n\n- `dynamicRef` and `dynamicAnchor` are very rough implemented\n- Unknown Keywords are ignored and won't be serialized again.\n- Only JSON Schema 2020-12, 2019-09 and one Circe-Version supported so far.\n- The API will only be stable in patch versions\n\n## Security Considerations\n\nRegex Patterns are directly given to `java.util.regex.Pattern.compile`. This could be not secure and could lead to [ReDoS](https://owasp.org/www-community/attacks/Regular_expression_Denial_of_Service_-_ReDoS) Attacks. Do not trust JSON schemas from an untrusted source.\n\n**Only use this library for trusted JSON-Schemas**\n\nThis is BETA-Software. Use at your own risk.\n\n## How to use it\n\nPlease have a look in the `examples` folder for some Examples.\n\nThere are some main Types\n\n- `Json` the JSON Representation of the Circe-Library.\n- `Schema` represents a single JSON-Schema and can be parsed from `Json`.\n- `Validator` a single validator validating some JSON\n- `ValidationResult` the result of a validation, contains possible violations.\n- `DocumentValidator` a validator for a full set of JSON-Schema-Documents. This is what you want to use for Validating\n- `SingleDocumentValidator` representing a single document within `DocumentValidator`\n- `Loader` the main entry point to load and parse JSON-Schemas, which provide a DocumentValidator for you.\n- `Downloader` during resolving, it is possible, that additional URLs need to be downloaded.\n  The downloader is responsible for that and you can bring your own. There exists a dummy implementation\n  which doesn't download anything `Downloader.emptySimple` and an implementation which is using Java-URL-Facilities `Downloader.JavaUrlDownloader`\n\n## License\n\nThe library is released under terms of Apache License 2.0\n\n`3rdparty` contans 3rd-Party references\n\n- `JSON-Schema-Test-Suite`, licensed under terms of MIT-License\n- `schema` contains the JSON Schemas of JSON Schema, released unter terms of BSD-License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freactivecore%2Frc-circe-json-schema","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freactivecore%2Frc-circe-json-schema","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freactivecore%2Frc-circe-json-schema/lists"}