{"id":15359996,"url":"https://github.com/henryiii/validate-pyproject-schema-store","last_synced_at":"2026-04-10T11:02:46.648Z","repository":{"id":215197554,"uuid":"738305395","full_name":"henryiii/validate-pyproject-schema-store","owner":"henryiii","description":"Daily automatic mirror of SchemaStore for validate-pyproject","archived":false,"fork":false,"pushed_at":"2026-04-03T09:08:25.000Z","size":655,"stargazers_count":6,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-03T15:09:35.263Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","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/henryiii.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","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":"2024-01-02T23:26:35.000Z","updated_at":"2026-04-03T09:08:21.000Z","dependencies_parsed_at":"2026-02-20T11:04:22.780Z","dependency_job_id":null,"html_url":"https://github.com/henryiii/validate-pyproject-schema-store","commit_stats":null,"previous_names":["henryiii/validate-pyproject-schema-store"],"tags_count":97,"template":false,"template_full_name":null,"purl":"pkg:github/henryiii/validate-pyproject-schema-store","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/henryiii%2Fvalidate-pyproject-schema-store","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/henryiii%2Fvalidate-pyproject-schema-store/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/henryiii%2Fvalidate-pyproject-schema-store/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/henryiii%2Fvalidate-pyproject-schema-store/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/henryiii","download_url":"https://codeload.github.com/henryiii/validate-pyproject-schema-store/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/henryiii%2Fvalidate-pyproject-schema-store/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31639524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"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":[],"created_at":"2024-10-01T12:47:09.908Z","updated_at":"2026-04-10T11:02:46.621Z","avatar_url":"https://github.com/henryiii.png","language":"Python","readme":"# validate-pyproject-schema-store\n\n[![Actions Status][actions-badge]][actions-link]\n\n[![PyPI version][pypi-version]][pypi-link]\n[![PyPI platforms][pypi-platforms]][pypi-link]\n\n\u003c!-- SPHINX-START --\u003e\n\nThis provides a versioned copy of [SchemaStore][] for [validate-pyproject][].\nYou can pin this to get a stable set of schema files.\n\nNested schemas are not supported yet. Support will require updates to\nvalidate-pyproject. For now, they are replaced with `\"type\": \"object\"`.\n\n## Usage\n\nThe following should be supported:\n\n### Installing alongside validate-pyproject\n\nJust use `pip install validate-pyproject-schema-store` wherever you have\n`validate-pyproject[all]` installed. You can \"inject\" it if using pipx, or use\n`--pip-args` if using `pipx run`.\n\nIn pre-commit, this would be:\n\n```yaml\nrepos:\n  - repo: https://github.com/abravalheri/validate-pyproject\n    rev: \u003cinsert here\u003e\n    hooks:\n      - id: validate-pyproject\n        additional_dependencies: [validate-pyproject[all], validate-pyproject-schema-store]\n```\n\n### Direct usage\n\nFor pre-commit or pipx, you can simplify this a bit by using this package\ndirectly. That looks like this:\n\n```bash\npipx run validate-pyproject-schema-store[all]\n```\n\nOr for pre-commit:\n\n```yaml\nrepos:\n  - repo: https://github.com/henryiii/validate-pyproject-schema-store\n    rev: \u003cinsert here\u003e\n    hooks:\n      - id: validate-pyproject\n```\n\nThis also has the benefit that the version will be pinned and updated by\npre-commit automatically.\n\n## Developing\n\nThis project uses `hatch\u003e=1.10`. You can run the sync script by running:\n\n```bash\nhatch run tools/sync.py\n```\n\n\u003c!-- prettier-ignore-start --\u003e\n[actions-badge]:            https://github.com/henryiii/validate-pyproject-schema-store/workflows/CI/badge.svg\n[actions-link]:             https://github.com/henryiii/validate-pyproject-schema-store/actions\n[pypi-link]:                https://pypi.org/project/validate-pyproject-schema-store/\n[pypi-platforms]:           https://img.shields.io/pypi/pyversions/validate-pyproject-schema-store\n[pypi-version]:             https://img.shields.io/pypi/v/validate-pyproject-schema-store\n[validate-pyproject]:       https://github.com/abravalheri/validate-pyproject\n[schemastore]:              https://www.schemastore.org\n\u003c!-- prettier-ignore-end --\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhenryiii%2Fvalidate-pyproject-schema-store","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhenryiii%2Fvalidate-pyproject-schema-store","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhenryiii%2Fvalidate-pyproject-schema-store/lists"}