Schemas used to validate files.
renovate[bot] 8471316c19 chore(deps): update dependency vitest to v1 | před 9 měsíci | |
---|---|---|
.github | před 1 rokem | |
schemas | před 9 měsíci | |
server | před 9 měsíci | |
.dockerignore | před 1 rokem | |
.editorconfig | před 1 rokem | |
.eslintrc.cjs | před 1 rokem | |
.gitattributes | před 1 rokem | |
.gitignore | před 2 roky | |
.prettierignore | před 1 rokem | |
.prettierrc.cjs | před 1 rokem | |
Dockerfile | před 1 rokem | |
LICENSE | před 2 roky | |
README.md | před 1 rokem | |
package.json | před 1 rokem | |
pnpm-lock.yaml | před 9 měsíci | |
pnpm-workspace.yaml | před 1 rokem | |
renovate.json | před 1 rokem |
This repository contains the schemas used to validate various files over the PreMiD source code repositories. If you have found a problem with a schema, please feel free to open a pull request.
Schemas are versioned using MAJOR.MINOR
. Patches are applied directly to the applicable version of the schema.
Minor is bumped when a new property is added and it can be extended from a previous version of the schema.
Major is bumped when properties are removed or the new iteration of the schema cannot be extended from the previous version.
All schemas are hosted under schemas.premid.app. To use a schema, use https://schemas.premid.app/:schemaName/:version
as the URL.
:schemaName
is the name of the thing you need the schema for (e.g. metadata
) and :version
is the version of the schema (e.g. 1.0
).
schemas # where the schemas are stored
├── schemaName # the name of the schema
│ ├── version.json # the schema file itself, where the name is the version
│ └── README.md # simple README to document version changelogs and what the schema is for
server # schema server files