changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "api_url": {
+ "format": "uri",
+ "type": "string"
+ },
+ "constraints": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "ends_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "prompt": {
+ "type": "string"
+ },
+ "publish": {
+ "additionalProperties": true,
+ "properties": {
+ "endpoint": {
+ "format": "uri",
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "tool": {
+ "const": "publish_snack",
+ "type": "string"
+ }
+ },
+ "required": [
+ "endpoint",
+ "tool",
+ "tags"
+ ],
+ "type": "object"
+ },
+ "starts_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "url",
+ "title",
+ "prompt",
+ "constraints",
+ "tags",
+ "starts_at",
+ "ends_at",
+ "publish"
+ ],
+ "type": "object"
+}