changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "description": "The tool payload. Null when the call did not produce one — read meta.availability_status to find out why, and do not treat null as zero, empty or \"none found\"."
+ },
+ "meta": {
+ "additionalProperties": true,
+ "properties": {
+ "availability_status": {
+ "description": "ok: complete payload. truncated: payload exceeded the transport cap and was cut. parse_failed: payload is text this server could not parse as JSON. error: the tool raised.",
+ "enum": [
+ "ok",
+ "truncated",
+ "parse_failed",
+ "error"
+ ],
+ "type": "string"
+ },
+ "encoding": {
+ "description": "toon = pipe-delimited tabular encoding; header row names the columns.",
+ "enum": [
+ "json",
+ "toon"
+ ],
+ "type": "string"
+ },
+ "provenance": {
+ "description": "Whether the figures can cite a source document. \"undeclared\" means no claim has been made for this endpoint yet — it is not a claim that the data is unsourced.",
+ "enum": [
+ "direct",
+ "label",
+ "reachable",
+ "none",
+ "undeclared"
+ ],
+ "type": "string"
+ },
+ "retrieved_at": {
+ "description": "When this platform produced the answer — NOT the as-at date of the data.",
+ "format": "date-time",
+ "type": "string"
+ },
+ "warnings": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "retrieved_at",
+ "availability_status",
+ "provenance"
+ ],
+ "type": "object"
+ },
+ "schema_version": {
+ "description": "Envelope contract version. Bumps only on a breaking shape change.",
+ "type": "string"
+ },
+ "tool": {
+ "description": "Tool that produced this result.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "schema_version",
+ "tool",
+ "data",
+ "meta"
+ ],
+ "type": "object"
+}