addedInput schema / examples
Added value: +[
+ {
+ "cell_id": 12345678,
+ "lac": 5000,
+ "mcc": 310,
+ "mnc": 410
+ },
+ {
+ "cell_id": 12345678,
+ "lac": 5000,
+ "mcc": 310,
+ "mnc": 410,
+ "radio": "LTE"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "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"
+}