{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/enterprise-comment-overview", "title": "Enterprise Comment Stats", "type": "object", "properties": { "total_commit_comments": { "type": "integer" }, "total_gist_comments": { "type": "integer" }, "total_issue_comments": { "type": "integer" }, "total_pull_request_comments": { "type": "integer" } }, "required": [ "total_commit_comments", "total_gist_comments", "total_issue_comments", "total_pull_request_comments" ] }