{"id":13638873,"url":"https://github.com/jpluscplusm/scuemastore","last_synced_at":"2026-02-06T18:32:48.978Z","repository":{"id":93632817,"uuid":"582342732","full_name":"jpluscplusm/scuemastore","owner":"jpluscplusm","description":"A CUE module expressing (some of) schemastore.org's JSONSchemas in CUE form","archived":false,"fork":false,"pushed_at":"2023-01-07T16:58:59.000Z","size":87,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-19T00:40:37.376Z","etag":null,"topics":["cue","cuelang","schemastore","validation"],"latest_commit_sha":null,"homepage":"https://jonathanmatthews.com/x/schemastore.org","language":"CUE","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jpluscplusm.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}},"created_at":"2022-12-26T14:19:30.000Z","updated_at":"2023-11-20T17:41:35.000Z","dependencies_parsed_at":"2023-03-16T02:46:06.597Z","dependency_job_id":null,"html_url":"https://github.com/jpluscplusm/scuemastore","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jpluscplusm/scuemastore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpluscplusm%2Fscuemastore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpluscplusm%2Fscuemastore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpluscplusm%2Fscuemastore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpluscplusm%2Fscuemastore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jpluscplusm","download_url":"https://codeload.github.com/jpluscplusm/scuemastore/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpluscplusm%2Fscuemastore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29172616,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T16:33:35.550Z","status":"ssl_error","status_checked_at":"2026-02-06T16:33:30.716Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["cue","cuelang","schemastore","validation"],"created_at":"2024-08-02T01:00:54.847Z","updated_at":"2026-02-06T18:32:48.961Z","avatar_url":"https://github.com/jpluscplusm.png","language":"CUE","funding_links":[],"categories":["Projects"],"sub_categories":[],"readme":"# CUE module `jonathanmatthews.com/x/schemastore.org`\n\nThis repo takes the JSONSchema documents that are maintained by the excellent [schemastore](https://www.schemastore.org/json/) project, and curates a CUE import of a select subset of their schemas. Please open Issues and/or PRs to expand this set.\n\n## Usage\n\n**This repository MUST be `git clone`d as `https://jonathanmatthews.com/x/schemastore.org`**, despite (currently) being hosted on GitHub. If cloned directly (e.g. via GitHub URI), tests *will not pass*. It should be referenced, in CUE, as `jonathanmatthews.com/x/schemastore.org`.\n\n(This repository uses a git submodule, but you should NOT initialise it. **You do *NOT* need to initialise this submodule when using this repository as a CUE module, or for validating your existing files.** The submodule is only used by the process which imports the upstream JSONSchema documents *into* this module. Unless you are working on importing new upstream documents, you do not need the submodule's contents. Initialising the submodule will only take up disk space, uselessly.)\n\nAdd the repo to your `cue.mod` directory, as so:\n\n```\ncd cue.mod/pkg\ngit clone https://jonathanmatthews.com/x/schemastore.org\n```\n\nThen use the schemas in your .cue files like this:\n\n```\npackage p\n\nimport \"jonathanmatthews.com/x/schemastore.org/github/actions/workflow\"\n\nmy_gha_workflow: workflow \u0026 {\n\t... // your workflow details here\n}\n```\n\n### Validation of existing non-CUE files\n\nYou can use `cue vet` to check non-CUE files against these CUE-based schema definitions.\n\nRun `cue vet -c` aginst the glob `path/to/definitions/schemastore*.cue`:\n\n```\ngit clone https://jonathanmatthews.com/x/schemastore.org\ncue vet -c schemastore.org/github/actions/workflow/schemastore*.cue path/to/my/github/actions/workflows/*.yml\n```\n\n## The `/x/` is for \"experimental\"\n\nThis module is not yet stable. So long as there is a `/x/` in the path, structural and other backwards-incompatible changes might happen to the module's contents.\n\nYou should only use it if you are either able to (a) embed a static version of this module or (b) fix things that break in your code because of changes.\n\nThis module is aiming for stablity, over time, but can't yet deliver it.\n\nThe `/x/` is your reminder of this.\n\n## Expanding and improving the imported schemas\n\nPlease open Issues with \"please import this schema next\" suggestions.\n\nThis README will include development docs, sometime soon. Until then, working on the build system will be a little painful!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpluscplusm%2Fscuemastore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjpluscplusm%2Fscuemastore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpluscplusm%2Fscuemastore/lists"}