Some checks failed
CI / test (ubuntu-latest, 3.10) (push) Failing after 5m1s
CI / test (ubuntu-latest, 3.11) (push) Failing after 4m55s
CI / test (ubuntu-latest, 3.12) (push) Failing after 4m52s
CI / test (ubuntu-latest, 3.8) (push) Failing after 4m54s
CI / test (ubuntu-latest, 3.9) (push) Failing after 4m57s
CI / test-minimal (push) Failing after 4m54s
CI / lint (push) Failing after 4m43s
CI / build (push) Successful in 9m40s
CI / release (push) Has been skipped
47 lines
797 B
JSON
47 lines
797 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"]
|
|
}
|