changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "by": {
+ "description": "Author username",
+ "type": "string"
+ },
+ "dead": {
+ "description": "Whether item is dead/removed",
+ "type": "boolean"
+ },
+ "deleted": {
+ "description": "Whether item is deleted",
+ "type": "boolean"
+ },
+ "descendants": {
+ "description": "Number of child comments",
+ "type": "number"
+ },
+ "id": {
+ "description": "HN item ID",
+ "type": "number"
+ },
+ "kids": {
+ "description": "Array of child item IDs",
+ "items": {
+ "type": "number"
+ },
+ "type": "array"
+ },
+ "parent": {
+ "description": "Parent item ID",
+ "type": "number"
+ },
+ "score": {
+ "description": "Item score/points",
+ "type": "number"
+ },
+ "text": {
+ "description": "Item text content",
+ "type": "string"
+ },
+ "time": {
+ "description": "Unix timestamp of item posting",
+ "type": "number"
+ },
+ "title": {
+ "description": "Item title",
+ "type": "string"
+ },
+ "type": {
+ "description": "Item type (story, comment, etc.)",
+ "type": "string"
+ },
+ "url": {
+ "description": "Item URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id"
+ ],
+ "type": "object"
+}