changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of questions returned",
+ "type": "number"
+ },
+ "has_more": {
+ "description": "Whether there are more results available",
+ "type": "boolean"
+ },
+ "questions": {
+ "description": "Array of search result questions",
+ "items": {
+ "properties": {
+ "answer_count": {
+ "description": "Number of answers to the question",
+ "type": "number"
+ },
+ "body": {
+ "description": "Question body HTML content",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created": {
+ "description": "ISO 8601 creation timestamp",
+ "type": "string"
+ },
+ "is_answered": {
+ "description": "Whether the question has an accepted answer",
+ "type": "boolean"
+ },
+ "last_activity": {
+ "description": "ISO 8601 last activity timestamp",
+ "type": "string"
+ },
+ "link": {
+ "description": "URL to the question on StackExchange",
+ "type": "string"
+ },
+ "question_id": {
+ "description": "Unique question identifier",
+ "type": "number"
+ },
+ "score": {
+ "description": "Question score (votes)",
+ "type": "number"
+ },
+ "tags": {
+ "description": "Question tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Question title",
+ "type": "string"
+ },
+ "view_count": {
+ "description": "Number of times the question has been viewed",
+ "type": "number"
+ }
+ },
+ "required": [
+ "question_id",
+ "title",
+ "body",
+ "score",
+ "answer_count",
+ "is_answered",
+ "tags",
+ "link",
+ "view_count",
+ "created",
+ "last_activity"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "quota_remaining": {
+ "description": "Remaining API quota for this user",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "site": {
+ "description": "The StackExchange site slug used for the search",
+ "type": "string"
+ }
+ },
+ "required": [
+ "site",
+ "count",
+ "has_more",
+ "quota_remaining",
+ "questions"
+ ],
+ "type": "object"
+}