Skip to content
Back to web-access-gateway.mattskowronis.workers.dev

Card snapshot

web-access-gateway.mattskowronis.workers.dev · 2026-09-01 01:53:28 UTC · 56894a1a3b4676acd2c91b5635f534f239abede780adc7228cd2ab4f1d63cca7

This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.

{
  "protocolVersion": "1.0",
  "name": "Web Access Gateway",
  "description": "Current web, news, company, product, and geographic search plus clean page reading for autonomous agents, with fixed JSON schemas and pay-per-call x402 pricing.",
  "url": "https://web-access-gateway.mattskowronis.workers.dev/a2a",
  "preferredTransport": "JSONRPC",
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false
  },
  "provider": {
    "organization": "Skowron Works",
    "url": "https://skowronworks.com/agent-tools/web-access-gateway/"
  },
  "version": "1.1.0",
  "documentationUrl": "https://skowronworks.com/agent-tools/web-access-gateway/",
  "defaultInputModes": [
    "application/json"
  ],
  "defaultOutputModes": [
    "application/json"
  ],
  "skills": [
    {
      "id": "web_search",
      "name": "Web Search",
      "description": "Return 5 current ranked web results with compact source excerpts in a fixed JSON schema.",
      "tags": [
        "search",
        "web",
        "research",
        "x402"
      ],
      "examples": [
        "{\"query\":\"latest Federal Reserve interest rate decision\"}"
      ]
    },
    {
      "id": "read_url",
      "name": "Read URL",
      "description": "Read one public URL and return clean bounded page content with a SHA-256 content hash.",
      "tags": [
        "read",
        "crawl",
        "extract",
        "x402"
      ],
      "examples": [
        "{\"url\":\"https://example.com/article\"}"
      ]
    },
    {
      "id": "search_and_read",
      "name": "Search and Read",
      "description": "Search the current web and return 5 ranked results with clean page content and content hashes.",
      "tags": [
        "search",
        "research",
        "grounding",
        "content",
        "x402"
      ],
      "examples": [
        "{\"query\":\"latest Federal Reserve interest rate decision\"}"
      ]
    },
    {
      "id": "news_search",
      "name": "News Search",
      "description": "Search recent public web coverage from the last seven days and return 5 ranked results. Not comprehensive newswire coverage.",
      "tags": [
        "news",
        "current events",
        "recent",
        "search",
        "x402"
      ],
      "examples": [
        "{\"query\":\"latest AI agent payment developments\"}"
      ]
    },
    {
      "id": "company_search",
      "name": "Company Search",
      "description": "Find 5 ranked company and corporate-web results for market research, vendor discovery, and diligence.",
      "tags": [
        "company",
        "business",
        "vendor",
        "corporate",
        "research",
        "x402"
      ],
      "examples": [
        "{\"query\":\"battery recycling companies United States\"}"
      ]
    },
    {
      "id": "product_search",
      "name": "Product Research",
      "description": "Find 5 ranked public-web product, price, specification, and review sources. Not a live inventory guarantee.",
      "tags": [
        "product",
        "price",
        "specifications",
        "reviews",
        "shopping research",
        "x402"
      ],
      "examples": [
        "{\"query\":\"portable LiFePO4 power station 1000Wh\"}"
      ]
    },
    {
      "id": "geographic_search",
      "name": "Geographic Search",
      "description": "Find 5 ranked location, address, hours, and local-context sources using place terms in the query. Not routing or Maps data.",
      "tags": [
        "geographic",
        "local",
        "location",
        "address",
        "hours",
        "x402"
      ],
      "examples": [
        "{\"query\":\"robotics integrators near Worcester Massachusetts\"}"
      ]
    },
    {
      "id": "ma-government-snapshot",
      "name": "Massachusetts Government Snapshot",
      "description": "Massachusetts-only evidence-backed snapshot covering selected official state and selected municipal sources for at most seven days, with official evidence links. Not comprehensive coverage of every Massachusetts government source.",
      "tags": [
        "Massachusetts",
        "government",
        "official sources",
        "evidence",
        "state",
        "municipal",
        "x402"
      ],
      "examples": [
        "{\"lookback_hours\":24,\"government_levels\":[\"state\",\"municipal\"],\"include_routine\":false,\"max_developments\":25}"
      ]
    }
  ],
  "securitySchemes": {
    "x402": {
      "type": "apiKey",
      "in": "header",
      "name": "PAYMENT-SIGNATURE",
      "description": "x402 exact USDC payments on Base or Solana"
    }
  },
  "protocol": "x402",
  "x402Version": 2,
  "pricing": {
    "search": "$0.01",
    "read": "$0.003",
    "search_and_read": "$0.025",
    "news_search": "$0.01",
    "company_search": "$0.01",
    "product_search": "$0.01",
    "geographic_search": "$0.01",
    "ma-government-snapshot": "$0.50"
  },
  "networks": [
    "eip155:8453",
    "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"
  ],
  "input_schemas": {
    "search": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "query": {
          "type": "string",
          "minLength": 1,
          "maxLength": 500
        }
      },
      "required": [
        "query"
      ]
    },
    "read": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "url": {
          "type": "string",
          "format": "uri",
          "maxLength": 2048
        }
      },
      "required": [
        "url"
      ]
    },
    "search_and_read": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "query": {
          "type": "string",
          "minLength": 1,
          "maxLength": 500
        }
      },
      "required": [
        "query"
      ]
    },
    "news_search": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "query": {
          "type": "string",
          "minLength": 1,
          "maxLength": 500
        }
      },
      "required": [
        "query"
      ]
    },
    "company_search": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "query": {
          "type": "string",
          "minLength": 1,
          "maxLength": 500
        }
      },
      "required": [
        "query"
      ]
    },
    "product_search": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "query": {
          "type": "string",
          "minLength": 1,
          "maxLength": 500
        }
      },
      "required": [
        "query"
      ]
    },
    "geographic_search": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "query": {
          "type": "string",
          "minLength": 1,
          "maxLength": 500
        }
      },
      "required": [
        "query"
      ]
    },
    "ma-government-snapshot": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "since": {
          "type": "string",
          "format": "date-time"
        },
        "lookback_hours": {
          "type": "integer",
          "minimum": 1,
          "maximum": 168,
          "default": 24
        },
        "topic": {
          "type": "string",
          "minLength": 1,
          "maxLength": 120
        },
        "government_levels": {
          "type": "array",
          "minItems": 1,
          "uniqueItems": true,
          "items": {
            "type": "string",
            "enum": [
              "state",
              "municipal"
            ]
          }
        },
        "municipalities": {
          "type": "array",
          "uniqueItems": true,
          "items": {
            "type": "string",
            "enum": [
              "Boston",
              "Easthampton",
              "Worcester"
            ]
          }
        },
        "include_routine": {
          "type": "boolean",
          "default": false
        },
        "max_developments": {
          "type": "integer",
          "minimum": 1,
          "maximum": 50,
          "default": 25
        }
      }
    }
  },
  "output_schema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "schema_version": {
        "type": "string",
        "const": "1.0"
      },
      "operation": {
        "type": "string",
        "enum": [
          "search",
          "read",
          "search_and_read",
          "news_search",
          "company_search",
          "product_search",
          "geographic_search"
        ]
      },
      "query": {
        "type": [
          "string",
          "null"
        ]
      },
      "requested_url": {
        "type": [
          "string",
          "null"
        ]
      },
      "retrieved_at": {
        "type": "string",
        "format": "date-time"
      },
      "result_count": {
        "type": "integer",
        "minimum": 0
      },
      "results": {
        "type": "array",
        "items": {
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "rank": {
              "type": "integer",
              "minimum": 1
            },
            "title": {
              "type": [
                "string",
                "null"
              ]
            },
            "url": {
              "type": "string",
              "format": "uri"
            },
            "published_at": {
              "type": [
                "string",
                "null"
              ]
            },
            "author": {
              "type": [
                "string",
                "null"
              ]
            },
            "score": {
              "type": [
                "number",
                "null"
              ]
            },
            "snippet": {
              "type": "string"
            },
            "content": {
              "type": [
                "string",
                "null"
              ]
            },
            "content_sha256": {
              "type": [
                "string",
                "null"
              ],
              "pattern": "^[a-f0-9]{64}$"
            },
            "retrieval_status": {
              "type": "string",
              "enum": [
                "complete",
                "metadata_only",
                "failed"
              ]
            }
          },
          "required": [
            "rank",
            "title",
            "url",
            "published_at",
            "author",
            "score",
            "snippet",
            "content",
            "content_sha256",
            "retrieval_status"
          ]
        }
      },
      "warnings": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    },
    "required": [
      "schema_version",
      "operation",
      "query",
      "requested_url",
      "retrieved_at",
      "result_count",
      "results",
      "warnings"
    ]
  },
  "output_schemas": {
    "search": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "schema_version": {
          "type": "string",
          "const": "1.0"
        },
        "operation": {
          "type": "string",
          "enum": [
            "search",
            "read",
            "search_and_read",
            "news_search",
            "company_search",
            "product_search",
            "geographic_search"
          ]
        },
        "query": {
          "type": [
            "string",
            "null"
          ]
        },
        "requested_url": {
          "type": [
            "string",
            "null"
          ]
        },
        "retrieved_at": {
          "type": "string",
          "format": "date-time"
        },
        "result_count": {
          "type": "integer",
          "minimum": 0
        },
        "results": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "rank": {
                "type": "integer",
                "minimum": 1
              },
              "title": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "url": {
                "type": "string",
                "format": "uri"
              },
              "published_at": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "author": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "score": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "snippet": {
                "type": "string"
              },
              "content": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "content_sha256": {
                "type": [
                  "string",
                  "null"
                ],
                "pattern": "^[a-f0-9]{64}$"
              },
              "retrieval_status": {
                "type": "string",
                "enum": [
                  "complete",
                  "metadata_only",
                  "failed"
                ]
              }
            },
            "required": [
              "rank",
              "title",
              "url",
              "published_at",
              "author",
              "score",
              "snippet",
              "content",
              "content_sha256",
              "retrieval_status"
            ]
          }
        },
        "warnings": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "schema_version",
        "operation",
        "query",
        "requested_url",
        "retrieved_at",
        "result_count",
        "results",
        "warnings"
      ]
    },
    "read": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "schema_version": {
          "type": "string",
          "const": "1.0"
        },
        "operation": {
          "type": "string",
          "enum": [
            "search",
            "read",
            "search_and_read",
            "news_search",
            "company_search",
            "product_search",
            "geographic_search"
          ]
        },
        "query": {
          "type": [
            "string",
            "null"
          ]
        },
        "requested_url": {
          "type": [
            "string",
            "null"
          ]
        },
        "retrieved_at": {
          "type": "string",
          "format": "date-time"
        },
        "result_count": {
          "type": "integer",
          "minimum": 0
        },
        "results": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "rank": {
                "type": "integer",
                "minimum": 1
              },
              "title": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "url": {
                "type": "string",
                "format": "uri"
              },
              "published_at": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "author": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "score": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "snippet": {
                "type": "string"
              },
              "content": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "content_sha256": {
                "type": [
                  "string",
                  "null"
                ],
                "pattern": "^[a-f0-9]{64}$"
              },
              "retrieval_status": {
                "type": "string",
                "enum": [
                  "complete",
                  "metadata_only",
                  "failed"
                ]
              }
            },
            "required": [
              "rank",
              "title",
              "url",
              "published_at",
              "author",
              "score",
              "snippet",
              "content",
              "content_sha256",
              "retrieval_status"
            ]
          }
        },
        "warnings": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "schema_version",
        "operation",
        "query",
        "requested_url",
        "retrieved_at",
        "result_count",
        "results",
        "warnings"
      ]
    },
    "search_and_read": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "schema_version": {
          "type": "string",
          "const": "1.0"
        },
        "operation": {
          "type": "string",
          "enum": [
            "search",
            "read",
            "search_and_read",
            "news_search",
            "company_search",
            "product_search",
            "geographic_search"
          ]
        },
        "query": {
          "type": [
            "string",
            "null"
          ]
        },
        "requested_url": {
          "type": [
            "string",
            "null"
          ]
        },
        "retrieved_at": {
          "type": "string",
          "format": "date-time"
        },
        "result_count": {
          "type": "integer",
          "minimum": 0
        },
        "results": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "rank": {
                "type": "integer",
                "minimum": 1
              },
              "title": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "url": {
                "type": "string",
                "format": "uri"
              },
              "published_at": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "author": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "score": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "snippet": {
                "type": "string"
              },
              "content": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "content_sha256": {
                "type": [
                  "string",
                  "null"
                ],
                "pattern": "^[a-f0-9]{64}$"
              },
              "retrieval_status": {
                "type": "string",
                "enum": [
                  "complete",
                  "metadata_only",
                  "failed"
                ]
              }
            },
            "required": [
              "rank",
              "title",
              "url",
              "published_at",
              "author",
              "score",
              "snippet",
              "content",
              "content_sha256",
              "retrieval_status"
            ]
          }
        },
        "warnings": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "schema_version",
        "operation",
        "query",
        "requested_url",
        "retrieved_at",
        "result_count",
        "results",
        "warnings"
      ]
    },
    "news_search": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "schema_version": {
          "type": "string",
          "const": "1.0"
        },
        "operation": {
          "type": "string",
          "enum": [
            "search",
            "read",
            "search_and_read",
            "news_search",
            "company_search",
            "product_search",
            "geographic_search"
          ]
        },
        "query": {
          "type": [
            "string",
            "null"
          ]
        },
        "requested_url": {
          "type": [
            "string",
            "null"
          ]
        },
        "retrieved_at": {
          "type": "string",
          "format": "date-time"
        },
        "result_count": {
          "type": "integer",
          "minimum": 0
        },
        "results": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "rank": {
                "type": "integer",
                "minimum": 1
              },
              "title": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "url": {
                "type": "string",
                "format": "uri"
              },
              "published_at": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "author": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "score": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "snippet": {
                "type": "string"
              },
              "content": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "content_sha256": {
                "type": [
                  "string",
                  "null"
                ],
                "pattern": "^[a-f0-9]{64}$"
              },
              "retrieval_status": {
                "type": "string",
                "enum": [
                  "complete",
                  "metadata_only",
                  "failed"
                ]
              }
            },
            "required": [
              "rank",
              "title",
              "url",
              "published_at",
              "author",
              "score",
              "snippet",
              "content",
              "content_sha256",
              "retrieval_status"
            ]
          }
        },
        "warnings": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "schema_version",
        "operation",
        "query",
        "requested_url",
        "retrieved_at",
        "result_count",
        "results",
        "warnings"
      ]
    },
    "company_search": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "schema_version": {
          "type": "string",
          "const": "1.0"
        },
        "operation": {
          "type": "string",
          "enum": [
            "search",
            "read",
            "search_and_read",
            "news_search",
            "company_search",
            "product_search",
            "geographic_search"
          ]
        },
        "query": {
          "type": [
            "string",
            "null"
          ]
        },
        "requested_url": {
          "type": [
            "string",
            "null"
          ]
        },
        "retrieved_at": {
          "type": "string",
          "format": "date-time"
        },
        "result_count": {
          "type": "integer",
          "minimum": 0
        },
        "results": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "rank": {
                "type": "integer",
                "minimum": 1
              },
              "title": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "url": {
                "type": "string",
                "format": "uri"
              },
              "published_at": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "author": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "score": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "snippet": {
                "type": "string"
              },
              "content": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "content_sha256": {
                "type": [
                  "string",
                  "null"
                ],
                "pattern": "^[a-f0-9]{64}$"
              },
              "retrieval_status": {
                "type": "string",
                "enum": [
                  "complete",
                  "metadata_only",
                  "failed"
                ]
              }
            },
            "required": [
              "rank",
              "title",
              "url",
              "published_at",
              "author",
              "score",
              "snippet",
              "content",
              "content_sha256",
              "retrieval_status"
            ]
          }
        },
        "warnings": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "schema_version",
        "operation",
        "query",
        "requested_url",
        "retrieved_at",
        "result_count",
        "results",
        "warnings"
      ]
    },
    "product_search": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "schema_version": {
          "type": "string",
          "const": "1.0"
        },
        "operation": {
          "type": "string",
          "enum": [
            "search",
            "read",
            "search_and_read",
            "news_search",
            "company_search",
            "product_search",
            "geographic_search"
          ]
        },
        "query": {
          "type": [
            "string",
            "null"
          ]
        },
        "requested_url": {
          "type": [
            "string",
            "null"
          ]
        },
        "retrieved_at": {
          "type": "string",
          "format": "date-time"
        },
        "result_count": {
          "type": "integer",
          "minimum": 0
        },
        "results": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "rank": {
                "type": "integer",
                "minimum": 1
              },
              "title": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "url": {
                "type": "string",
                "format": "uri"
              },
              "published_at": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "author": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "score": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "snippet": {
                "type": "string"
              },
              "content": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "content_sha256": {
                "type": [
                  "string",
                  "null"
                ],
                "pattern": "^[a-f0-9]{64}$"
              },
              "retrieval_status": {
                "type": "string",
                "enum": [
                  "complete",
                  "metadata_only",
                  "failed"
                ]
              }
            },
            "required": [
              "rank",
              "title",
              "url",
              "published_at",
              "author",
              "score",
              "snippet",
              "content",
              "content_sha256",
              "retrieval_status"
            ]
          }
        },
        "warnings": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "schema_version",
        "operation",
        "query",
        "requested_url",
        "retrieved_at",
        "result_count",
        "results",
        "warnings"
      ]
    },
    "geographic_search": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "schema_version": {
          "type": "string",
          "const": "1.0"
        },
        "operation": {
          "type": "string",
          "enum": [
            "search",
            "read",
            "search_and_read",
            "news_search",
            "company_search",
            "product_search",
            "geographic_search"
          ]
        },
        "query": {
          "type": [
            "string",
            "null"
          ]
        },
        "requested_url": {
          "type": [
            "string",
            "null"
          ]
        },
        "retrieved_at": {
          "type": "string",
          "format": "date-time"
        },
        "result_count": {
          "type": "integer",
          "minimum": 0
        },
        "results": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "rank": {
                "type": "integer",
                "minimum": 1
              },
              "title": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "url": {
                "type": "string",
                "format": "uri"
              },
              "published_at": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "author": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "score": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "snippet": {
                "type": "string"
              },
              "content": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "content_sha256": {
                "type": [
                  "string",
                  "null"
                ],
                "pattern": "^[a-f0-9]{64}$"
              },
              "retrieval_status": {
                "type": "string",
                "enum": [
                  "complete",
                  "metadata_only",
                  "failed"
                ]
              }
            },
            "required": [
              "rank",
              "title",
              "url",
              "published_at",
              "author",
              "score",
              "snippet",
              "content",
              "content_sha256",
              "retrieval_status"
            ]
          }
        },
        "warnings": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "schema_version",
        "operation",
        "query",
        "requested_url",
        "retrieved_at",
        "result_count",
        "results",
        "warnings"
      ]
    },
    "ma-government-snapshot": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "job",
        "snapshot_id",
        "jurisdiction",
        "generated_at",
        "data_through",
        "requested_window",
        "coverage",
        "briefing",
        "developments",
        "clusters",
        "source_health",
        "warnings",
        "billable_units"
      ],
      "properties": {
        "job": {
          "type": "string",
          "const": "ma-government-snapshot"
        },
        "snapshot_id": {
          "type": "string"
        },
        "jurisdiction": {
          "type": "string",
          "const": "Massachusetts"
        },
        "generated_at": {
          "type": "string",
          "format": "date-time"
        },
        "data_through": {
          "type": "string",
          "format": "date-time"
        },
        "requested_window": {
          "type": "object"
        },
        "coverage": {
          "type": "object"
        },
        "briefing": {
          "type": "object"
        },
        "developments": {
          "type": "array"
        },
        "clusters": {
          "type": "array"
        },
        "source_health": {
          "type": "array"
        },
        "warnings": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "billable_units": {
          "type": "integer",
          "const": 1
        }
      }
    }
  }
}