changedOutput schema / properties / result / anyOf
Previous value: -[
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": true,
+ "description": "A HackerNews user profile. Only users with public activity are available.",
+ "properties": {
+ "about": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The user's optional self-description (HTML)."
+ },
+ "created": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Creation date of the user, in Unix time."
+ },
+ "hn_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Canonical HackerNews profile link.",
+ "readOnly": true
+ },
+ "id": {
+ "description": "The user's unique username. Case-sensitive.",
+ "type": "string"
+ },
+ "karma": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The user's karma."
+ },
+ "submitted": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "integer"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "List of the user's stories, polls and comments."
+ }
+ },
+ "required": [
+ "id",
+ "hn_url"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]