changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "playbook": {
+ "additionalProperties": {},
+ "properties": {
+ "category": {
+ "type": "string"
+ },
+ "kpis": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "maturity": {
+ "type": "number"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "steps": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "detail": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "tool": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "tool",
+ "detail"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "title",
+ "summary",
+ "category",
+ "maturity",
+ "tags",
+ "steps",
+ "kpis",
+ "url"
+ ],
+ "type": "object"
+ },
+ "relatedSkills": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "skillFileUrl": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "name",
+ "url",
+ "skillFileUrl"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "playbook",
+ "relatedSkills"
+ ],
+ "type": "object"
+}