{ "title": "Stack Exchange Question Structure", "description": "Structure of a question on a Stack Exchange network site", "type": "object", "properties": { "question_id": {"type": "integer", "description": "Unique question identifier"}, "title": {"type": "string", "description": "Question title"}, "body": {"type": "string", "description": "HTML question body"}, "score": {"type": "integer", "description": "Net vote score"}, "view_count": {"type": "integer", "description": "Total view count"}, "answer_count": {"type": "integer", "description": "Number of answers"}, "accepted_answer_id": {"type": "integer", "description": "Accepted answer ID"}, "is_answered": {"type": "boolean", "description": "Has accepted answer"}, "creation_date": {"type": "integer", "description": "Unix creation timestamp"}, "last_activity_date": {"type": "integer", "description": "Unix last activity timestamp"}, "owner": { "type": "object", "description": "Question author", "properties": { "user_id": {"type": "integer"}, "display_name": {"type": "string"}, "reputation": {"type": "integer"}, "profile_image": {"type": "string"}, "link": {"type": "string"} } }, "tags": {"type": "array", "items": {"type": "string"}, "description": "Question tags"}, "link": {"type": "string", "description": "URL to question"}, "bounty_amount": {"type": "integer", "description": "Active bounty amount"} } }