changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "prompt": {
+ "additionalProperties": {},
+ "properties": {
+ "body": {
+ "type": "string"
+ },
+ "category": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "teams": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "name",
+ "summary",
+ "category",
+ "teams",
+ "body",
+ "url"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "prompt"
+ ],
+ "type": "object"
+}