addedInput schema / examples
Added value: +[
+ {
+ "bbox": "37.7749,-122.4194,37.8049,-122.3894"
+ },
+ {
+ "bbox": "37.7749,-122.4194,37.8049,-122.3894",
+ "limit": 500,
+ "mcc": 310,
+ "mnc": 410
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "bbox": {
+ "description": "Bounding box used in query",
+ "type": "string"
+ },
+ "cells": {
+ "description": "List of cell towers in area",
+ "items": {
+ "properties": {
+ "avg_signal_strength": {
+ "description": "Average signal strength",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "cell_id": {
+ "description": "Cell ID",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "created_at": {
+ "description": "ISO 8601 timestamp of creation",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "lac": {
+ "description": "Location Area Code",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "latitude": {
+ "description": "Cell tower latitude",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Cell tower longitude",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "mcc": {
+ "description": "Mobile Country Code",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "mnc": {
+ "description": "Mobile Network Code",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "radio": {
+ "description": "Radio type (GSM/UMTS/LTE/CDMA)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "range_m": {
+ "description": "Cell tower coverage range in meters",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "samples": {
+ "description": "Number of samples collected",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "updated_at": {
+ "description": "ISO 8601 timestamp of last update",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "mcc",
+ "mnc",
+ "lac",
+ "cell_id",
+ "radio",
+ "latitude",
+ "longitude",
+ "range_m",
+ "samples",
+ "avg_signal_strength",
+ "created_at",
+ "updated_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "count": {
+ "description": "Number of cell towers found",
+ "type": "number"
+ }
+ },
+ "required": [
+ "bbox",
+ "count",
+ "cells"
+ ],
+ "type": "object"
+}