changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "entries": {
+ "description": "List of entries in the documentation",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Entry name",
+ "type": "string"
+ },
+ "path": {
+ "description": "Entry path identifier",
+ "type": "string"
+ },
+ "type": {
+ "description": "Entry type category",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "path",
+ "type"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "types": {
+ "description": "List of type categories in the documentation",
+ "items": {
+ "properties": {
+ "count": {
+ "description": "Number of entries in this type",
+ "type": "number"
+ },
+ "name": {
+ "description": "Type category name",
+ "type": "string"
+ },
+ "slug": {
+ "description": "Type slug identifier",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "count",
+ "slug"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "entries",
+ "types"
+ ],
+ "type": "object"
+}