changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "desc": {
+ "type": "string"
+ },
+ "imageUrl": {
+ "type": "string"
+ },
+ "mentionCount": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "timeline": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "category": {
+ "type": "string"
+ },
+ "imageUrl": {
+ "type": "string"
+ },
+ "lead": {
+ "type": "string"
+ },
+ "publishedAt": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "title",
+ "publishedAt",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "type": {
+ "enum": [
+ "person",
+ "organization"
+ ],
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ },
+ "wikipedia": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "type",
+ "slug",
+ "url"
+ ],
+ "type": "object"
+}