summaryrefslogtreecommitdiff
path: root/schemas/readme.md
blob: 43dff9206161337d94b7feb729c6844413f0f725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Schemas

This directory contains public schemas for the most important parts of application.

**Do not rename or remove this directory or any file or directory inside.**

- You can validate existing config file using the following command:

 ```bash
docker run --rm -v "$(pwd):/src" -w "/src" node:20-alpine sh -c \
     "npm install -g ajv-cli && \
     ajv validate --all-errors --verbose \
       -s ./schemas/config/3.0.schema.json \
       --spec=draft2019 \
       -d ./.rr*.y*ml"
 ```