Files
dataforge-cli/tests/dataforge_fixtures/valid_schema.json
7000pctAUTO a0e131dff4
Some checks failed
CI / test (3.10) (push) Failing after 4m49s
CI / test (3.11) (push) Failing after 4m54s
CI / test (3.12) (push) Failing after 4m52s
CI / test (3.9) (push) Failing after 4m51s
CI / build (push) Has been skipped
fix: resolve CI/CD test and lint failures
2026-02-03 05:31:54 +00:00

46 lines
849 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string",
"pattern": "^\\d+\\.\\d+\\.\\d+$"
},
"description": {
"type": "string"
},
"author": {
"type": "string"
},
"settings": {
"type": "object",
"properties": {
"debug": {
"type": "boolean"
},
"timeout": {
"type": "integer",
"minimum": 0
},
"retries": {
"type": "integer",
"minimum": 0,
"maximum": 10
}
},
"required": ["debug", "timeout"]
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1
}
},
"required": ["name", "version"]
}