jx/internal/resource/schemas/package.jsonschema
Matthew Rich 08e8ca1aa7
Some checks failed
Lint / golangci-lint (push) Failing after 10m15s
Declarative Tests / test (push) Successful in 1m12s
fix linting errors
2024-04-03 12:27:16 -07:00

20 lines
395 B
Plaintext

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "package",
"type": "object",
"required": [ "name", "type" ],
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"type": {
"type": "string",
"description": "package type",
"enum": [ "rpm", "deb", "yum", "dnf", "apt", "pip", "go" ]
}
}
}