changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "accessMethods": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "addedAt": {
+ "type": "string"
+ },
+ "agentUrl": {
+ "type": "string"
+ },
+ "authType": {
+ "type": "string"
+ },
+ "categories": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "description": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "provider": {
+ "type": "string"
+ },
+ "providerUrl": {
+ "type": "string"
+ },
+ "skills": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "description": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "description"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "supportsPushNotifications": {
+ "type": "boolean"
+ },
+ "supportsStreaming": {
+ "type": "boolean"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "url": {
+ "type": "string"
+ },
+ "verified": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "name",
+ "slug",
+ "description",
+ "provider",
+ "categories",
+ "accessMethods",
+ "authType",
+ "verified",
+ "url",
+ "agentUrl",
+ "providerUrl",
+ "skills",
+ "tags",
+ "supportsStreaming",
+ "supportsPushNotifications"
+ ],
+ "type": "object"
+}