changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total number of crimes returned",
+ "type": "number"
+ },
+ "crimes": {
+ "description": "Array of street-level crimes",
+ "items": {
+ "properties": {
+ "category": {
+ "description": "Crime category",
+ "type": "string"
+ },
+ "id": {
+ "description": "Crime ID",
+ "type": "number"
+ },
+ "month": {
+ "description": "Month of the crime in YYYY-MM format",
+ "type": "string"
+ },
+ "outcome": {
+ "description": "Outcome category or 'Under investigation'",
+ "type": "string"
+ },
+ "outcome_date": {
+ "description": "Date of outcome if available",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "street": {
+ "description": "Street name where crime occurred",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "category",
+ "month",
+ "street",
+ "outcome",
+ "outcome_date"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "crimes"
+ ],
+ "type": "object"
+}