29 lines
631 B
JSON
29 lines
631 B
JSON
{
|
|
"$ref": "#/definitions/MarmitonSearchOutput",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"MarmitonSearchOutput": {
|
|
"items": {
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"commentCount": {
|
|
"type": "number"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"score": {
|
|
"type": "number"
|
|
},
|
|
"url": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["name", "url", "score", "commentCount"],
|
|
"type": "object"
|
|
},
|
|
"type": "array"
|
|
}
|
|
}
|
|
}
|