{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ReportsResponse", "description": "ReportsResponse contains the list of reports associated with the given post_id", "type": "object", "required": [ "reports" ], "properties": { "reports": { "type": "array", "items": { "$ref": "#/definitions/Report" } } }, "definitions": { "Report": { "type": "object", "required": [ "kind", "message", "post_id", "user" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "post_id": { "type": "string" }, "user": { "type": "string" } } } } }