removedInput schema / anyOf
Removed value: -[
- {
- "required": [
- "lat",
- "lon"
- ]
- },
- {
- "required": [
- "points"
- ]
- }
-]
removedInput schema / properties / admin_1_scope
Removed value: -{
- "description": "Required in deep mode. One Admin 1 loc_id returned by the standard pass, such as USA-CA. Every point must belong to this owner partition.",
- "type": "string"
-}
removedInput schema / properties / batch_id
Removed value: -{
- "description": "Optional caller-supplied batch id echoed in the result.",
- "type": "string"
-}
removedInput schema / properties / bulk_preset
Removed value: -{
- "description": "Cross-country standard-mode path that fixes the exact result level. Use instead of country_scope; target_admin_level may be omitted.",
- "enum": [
- "global_admin_0",
- "global_admin_1"
- ],
- "type": "string"
-}
removedInput schema / properties / country_hint
Removed value: -{
- "description": "Alias for country_scope for clients that already use hint terminology.",
- "type": "string"
-}
removedInput schema / properties / country_scope
Removed value: -{
- "description": "ISO3/Admin 0 loc_id scope such as USA or CAN. Optional in standard mode and required in deep mode; every deep-mode point must belong to this one country.",
- "type": "string"
-}
removedInput schema / properties / lookup_mode
Removed value: -{
- "description": "Standard (default) caps I/O at Admin 3. Deep requires exactly one country_scope and one admin_1_scope, and opens at most one deep partition.",
- "enum": [
- "standard",
- "deep"
- ],
- "type": "string"
-}
removedInput schema / properties / points
Removed value: -{
- "description": "Points to resolve. Standard mode accepts cross-country batches and caps geometry I/O at Admin 3. Deep batches require one country_scope and one admin_1_scope; larger deep batches also require target_admin_level. Anonymous callers may receive a payment challenge; verified accounts have included throughput through 10,000 points.",
- "items": {
- "additionalProperties": false,
- "properties": {
- "id": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "string"
- }
- ],
- "description": "Optional caller point identifier echoed in the result."
- },
- "lat": {
- "description": "Latitude in WGS84 decimal degrees.",
- "maximum": 90,
- "minimum": -90,
- "type": "number"
- },
- "lon": {
- "description": "Longitude in WGS84 decimal degrees.",
- "maximum": 180,
- "minimum": -180,
- "type": "number"
- },
- "row_index": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "string"
- }
- ],
- "description": "Optional caller row identifier echoed in the result."
- }
- },
- "required": [
- "lat",
- "lon"
- ],
- "type": "object"
- },
- "minItems": 1,
- "type": "array"
-}
changedInput schema / properties / target_admin_level / description
Previous value: -"Optional exact requested level. Standard mode accepts Admin 0-3; deep mode accepts Admin 4-6. Omit it to return the deepest available level permitted by the selected mode."New value: +"Optional exact requested level from Admin 0-3. Omit it to return the deepest available shallow level."
addedInput schema / required
Added value: +[
+ "lat",
+ "lon"
+]