mirror of https://github.com/freeCodeCamp/devdocs
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.
51 lines
1012 B
51 lines
1012 B
![]()
4 years ago
|
{
|
||
|
"$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"]
|
||
|
}
|
||
|
}
|
||
|
}
|