changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "answers": {
+ "description": "Array of answers to the question",
+ "items": {
+ "properties": {
+ "answer_id": {
+ "description": "Unique answer identifier",
+ "type": "number"
+ },
+ "body": {
+ "description": "Answer body HTML content",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created": {
+ "description": "ISO 8601 creation timestamp",
+ "type": "string"
+ },
+ "is_accepted": {
+ "description": "Whether this is the accepted answer",
+ "type": "boolean"
+ },
+ "last_activity": {
+ "description": "ISO 8601 last activity timestamp",
+ "type": "string"
+ },
+ "owner_name": {
+ "description": "Display name of the answer author",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "owner_reputation": {
+ "description": "Reputation score of the answer author",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "score": {
+ "description": "Answer score (votes)",
+ "type": "number"
+ }
+ },
+ "required": [
+ "answer_id",
+ "body",
+ "score",
+ "is_accepted",
+ "owner_name",
+ "owner_reputation",
+ "created",
+ "last_activity"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "count": {
+ "description": "Number of answers returned",
+ "type": "number"
+ },
+ "question_id": {
+ "description": "The question ID for which answers were retrieved",
+ "type": "number"
+ },
+ "quota_remaining": {
+ "description": "Remaining API quota for this user",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "site": {
+ "description": "The StackExchange site slug used",
+ "type": "string"
+ }
+ },
+ "required": [
+ "site",
+ "question_id",
+ "count",
+ "quota_remaining",
+ "answers"
+ ],
+ "type": "object"
+}