27 lines
627 B
Plaintext
27 lines
627 B
Plaintext
{
|
|
"$id": "package.jsonschema",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "package",
|
|
"type": "object",
|
|
"required": [ "name", "type" ],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"pattern": "^[a-zA-Z0-9][a-zA-Z0-9+.-_]+$"
|
|
},
|
|
"required": {
|
|
"description": "version requirement",
|
|
"type": "string",
|
|
"pattern": "^([><~=][=]?[a-zA-Z0-9+.-_]+|)$"
|
|
},
|
|
"version": {
|
|
"type": "string"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"description": "package type",
|
|
"enum": [ "rpm", "deb", "yum", "dnf", "apt", "apk", "pip", "go" ]
|
|
}
|
|
}
|
|
}
|