22 lines
393 B
JSON
22 lines
393 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": ["null", "string"]
|
||
|
},
|
||
|
"rank": {
|
||
|
"type": ["null", "number"]
|
||
|
},
|
||
|
"name": {
|
||
|
"type": ["null", "string"]
|
||
|
},
|
||
|
"downloads_total": {
|
||
|
"type": ["null", "number"]
|
||
|
},
|
||
|
"downloads_percent": {
|
||
|
"type": ["null", "number"]
|
||
|
}
|
||
|
}
|
||
|
}
|