changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "display_hint": {
+ "additionalProperties": true,
+ "properties": {
+ "layout": {
+ "anyOf": [
+ {
+ "enum": [
+ "summary",
+ "table",
+ "summary+table",
+ "map",
+ "chart+table"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ "map_layers": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "preferred_charts": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "sections": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "layout"
+ ],
+ "type": "object"
+ },
+ "geojson": {
+ "additionalProperties": true,
+ "properties": {
+ "features": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "geometry": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "properties": {
+ "coordinates": {},
+ "geometries": {
+ "items": {},
+ "type": "array"
+ },
+ "type": {
+ "anyOf": [
+ {
+ "enum": [
+ "Point",
+ "LineString",
+ "Polygon",
+ "MultiPoint",
+ "MultiLineString",
+ "MultiPolygon",
+ "GeometryCollection"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "string"
+ }
+ ]
+ }
+ },
+ "required": [
+ "type"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "type": [
+ "string",
+ "number"
+ ]
+ },
+ "properties": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "type": {
+ "const": "Feature",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "geometry"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "type": {
+ "const": "FeatureCollection",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "features"
+ ],
+ "type": "object"
+ },
+ "items": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "distance_km": {
+ "type": "number"
+ },
+ "distance_meters": {
+ "type": "number"
+ },
+ "label": {
+ "type": "string"
+ },
+ "lat": {
+ "type": "number"
+ },
+ "layer": {
+ "type": "string"
+ },
+ "lon": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "summary": {
+ "additionalProperties": {},
+ "description": "Map of scalar facts the LLM should surface verbatim",
+ "type": "object"
+ }
+ },
+ "type": "object"
+}