changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "replies": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "author": {
+ "description": "Author @handle, without the @",
+ "type": "string"
+ },
+ "author_verified": {
+ "description": "Whether the author is verified",
+ "type": "boolean"
+ },
+ "code": {
+ "description": "Shortcode — pass to any tool taking `code`",
+ "type": "string"
+ },
+ "created_at": {
+ "description": "ISO 8601 timestamp",
+ "type": "string"
+ },
+ "id": {
+ "description": "Numeric post id (pk)",
+ "type": "string"
+ },
+ "is_reply": {
+ "type": "boolean"
+ },
+ "likes": {
+ "type": "number"
+ },
+ "media": {
+ "description": "Kind of attached media, if any",
+ "enum": [
+ "none",
+ "image",
+ "video"
+ ],
+ "type": "string"
+ },
+ "quoted": {
+ "additionalProperties": false,
+ "description": "The post this one quotes, when it is a quote-post",
+ "properties": {
+ "author": {
+ "type": "string"
+ },
+ "text": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "text"
+ ],
+ "type": "object"
+ },
+ "quotes": {
+ "type": "number"
+ },
+ "replies": {
+ "type": "number"
+ },
+ "reposts": {
+ "type": "number"
+ },
+ "text": {
+ "description": "Post text, empty for media-only posts",
+ "type": "string"
+ },
+ "url": {
+ "description": "Canonical permalink",
+ "type": "string"
+ }
+ },
+ "required": [
+ "author_verified",
+ "text",
+ "likes",
+ "replies",
+ "reposts",
+ "quotes",
+ "media",
+ "is_reply"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "replies"
+ ],
+ "type": "object"
+}