phantom-marmiton/src/marmiton/output.json
2022-01-08 00:55:27 +01:00

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"
}
}
}