changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "agent_skills": {
+ "type": "string"
+ },
+ "common_pitfalls": {
+ "description": "Known edge cases agents should be aware of.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "documentation": {
+ "type": "string"
+ },
+ "network_synonyms": {
+ "additionalProperties": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "description": "Canonical network id -> common alternates an agent might try.",
+ "type": "object"
+ },
+ "server": {
+ "additionalProperties": true,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "version": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "version"
+ ],
+ "type": "object"
+ },
+ "stats": {
+ "additionalProperties": true,
+ "properties": {
+ "console_url": {
+ "type": "string"
+ },
+ "docs_url": {
+ "type": "string"
+ },
+ "free_key_credits_per_month": {
+ "type": "number"
+ },
+ "free_key_requests_per_minute": {
+ "type": "number"
+ },
+ "free_tier": {
+ "type": "boolean"
+ },
+ "free_tier_credits_per_month": {
+ "type": "number"
+ },
+ "free_tier_max_data_delay_seconds": {
+ "type": "number"
+ },
+ "free_tier_requests_per_minute": {
+ "type": "number"
+ },
+ "key_required_to_start": {
+ "type": "boolean"
+ },
+ "networks": {
+ "type": "number"
+ },
+ "pools_approx": {
+ "type": "number"
+ },
+ "pricing_url": {
+ "type": "string"
+ },
+ "tokens_approx": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "networks",
+ "tokens_approx",
+ "pools_approx",
+ "free_tier",
+ "key_required_to_start"
+ ],
+ "type": "object"
+ },
+ "workflows": {
+ "additionalProperties": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "description": "Named tool sequences for common agent tasks.",
+ "type": "object"
+ }
+ },
+ "required": [
+ "server",
+ "stats",
+ "network_synonyms",
+ "workflows",
+ "common_pitfalls",
+ "documentation",
+ "agent_skills"
+ ],
+ "type": "object"
+}