changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "type": "string"
+ },
+ "directory": {
+ "additionalProperties": false,
+ "properties": {
+ "listEndpoint": {
+ "type": "string"
+ },
+ "listingIsFree": {
+ "type": "boolean"
+ },
+ "paidPlacement": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "duration": {
+ "type": "string"
+ },
+ "priceUsd": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "duration",
+ "priceUsd"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "promoteEndpoint": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "listEndpoint",
+ "listingIsFree",
+ "paidPlacement",
+ "promoteEndpoint"
+ ],
+ "type": "object"
+ },
+ "execute": {
+ "additionalProperties": false,
+ "properties": {
+ "endpoint": {
+ "type": "string"
+ },
+ "method": {
+ "type": "string"
+ },
+ "note": {
+ "type": "string"
+ },
+ "priceUsd": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "endpoint",
+ "method",
+ "priceUsd",
+ "note"
+ ],
+ "type": "object"
+ },
+ "llmsTxt": {
+ "type": "string"
+ },
+ "network": {
+ "type": "string"
+ },
+ "openapi": {
+ "type": "string"
+ },
+ "payment": {
+ "additionalProperties": false,
+ "properties": {
+ "howToPay": {
+ "type": "string"
+ },
+ "identity": {
+ "type": "string"
+ },
+ "manifest": {
+ "type": "string"
+ },
+ "protocol": {
+ "type": "string"
+ },
+ "transport": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "protocol",
+ "transport",
+ "manifest",
+ "howToPay",
+ "identity"
+ ],
+ "type": "object"
+ },
+ "quote": {
+ "additionalProperties": false,
+ "properties": {
+ "endpoint": {
+ "type": "string"
+ },
+ "free": {
+ "type": "boolean"
+ },
+ "method": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "endpoint",
+ "method",
+ "free"
+ ],
+ "type": "object"
+ },
+ "service": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "service",
+ "description",
+ "network",
+ "execute",
+ "quote",
+ "directory",
+ "payment",
+ "openapi",
+ "llmsTxt"
+ ],
+ "type": "object"
+}