You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/public/schema/meta.schema.json

51 lines
1012 B

{
"$schema": "http://json-schema.org/draft-06/schema#",
"$ref": "#/definitions/Doc",
"definitions": {
"Doc": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"slug": {
"type": "string"
},
"type": {
"type": "string"
},
"links": {
"$ref": "#/definitions/Links"
},
"version": {
"type": "string"
},
"release": {
"type": "string"
},
"mtime": {
"type": "integer"
},
"db_size": {
"type": "integer"
}
},
"required": ["db_size", "mtime", "name", "release", "slug", "type"]
},
"Links": {
"type": "object",
"properties": {
"home": {
"type": "string",
"format": "uri"
},
"code": {
"type": "string",
"format": "uri"
}
},
"required": ["code", "home"]
}
}
}