SchemaStore / schemastore

A collection of JSON schema files including full API
http://schemastore.org
Apache License 2.0
3.12k stars 1.72k forks source link

Add SemVer schema #4232

Closed danielbayley closed 3 days ago

danielbayley commented 1 week ago

For use as $reference, for example:

"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "/schemas/semver",
"properties": {
  "dependencies": {
    "type": "object",
    "additionalProperties": {
      "$ref": "https://json.schemastore.org/semver.json"
    }
  }
}
"$schema": "/schemas/semver",
"dependencies": {
  "semver": "1.0.0",
  "minor": "0.10.0"
},

[!NOTE] For reference, better linting, and composability, I have built my own collection of schemas here: https://github.com/danielbayley/schemas

github-actions[bot] commented 1 week ago

Thanks for the PR!

This section of the codebase is owned by @madskristensen and @hyperupcall - if they write a comment saying "LGTM" then it will be merged.

hyperupcall commented 3 days ago

Thanks for the contribution, but I'll be closing this for the same reasons as stated in https://github.com/SchemaStore/schemastore/pull/4233#issuecomment-2495516210