changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "comment": {
+ "description": "Error comment (if status is FAILED)",
+ "type": "string"
+ },
+ "result": {
+ "description": "Blog entry object",
+ "properties": {
+ "allowViewHistory": {
+ "description": "Allow viewing edit history",
+ "type": "boolean"
+ },
+ "authorsUserHandles": {
+ "description": "Author handles",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "content": {
+ "description": "Blog entry content (HTML)",
+ "type": "string"
+ },
+ "creationTimeSeconds": {
+ "description": "Unix timestamp of creation",
+ "type": "number"
+ },
+ "id": {
+ "description": "Blog entry ID",
+ "type": "number"
+ },
+ "locale": {
+ "description": "Locale of the entry",
+ "type": "string"
+ },
+ "modificationTimeSeconds": {
+ "description": "Unix timestamp of last modification",
+ "type": "number"
+ },
+ "originalLocale": {
+ "description": "Original locale",
+ "type": "string"
+ },
+ "rating": {
+ "description": "Blog entry rating",
+ "type": "number"
+ },
+ "tags": {
+ "description": "Blog tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Blog entry title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "status": {
+ "description": "Response status (OK or FAILED)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status"
+ ],
+ "type": "object"
+}