addedInput schema / $defs
Added value: +{
+ "LocationQuery": {
+ "maxLength": 120,
+ "minLength": 1,
+ "type": "string"
+ }
+}
addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / query / $ref
Added value: +"#/$defs/LocationQuery"
addedInput schema / properties / query / description
Added value: +"Human place text used only to discover candidate Casatoo location IDs. Common unambiguous English aliases such as Lisbon are accepted."
removedInput schema / properties / query / maxLength
Removed value: -120
removedInput schema / properties / query / minLength
Removed value: -1
removedInput schema / properties / query / title
Removed value: -"Query"
removedInput schema / properties / query / type
Removed value: -"string"
addedOutput schema / $defs / AgentLocationType
Added value: +{
+ "enum": [
+ "DISTRICT",
+ "MUNICIPALITY",
+ "PARISH",
+ "NEIGHBORHOOD"
+ ],
+ "title": "AgentLocationType",
+ "type": "string"
+}
addedOutput schema / $defs / LocationId
Added value: +{
+ "minimum": 1,
+ "type": "integer"
+}
addedOutput schema / $defs / LocationQueryInterpretation
Added value: +{
+ "enum": [
+ "literal",
+ "alias"
+ ],
+ "title": "LocationQueryInterpretation",
+ "type": "string"
+}
addedOutput schema / $defs / LocationSearchResult / properties / id / $ref
Added value: +"#/$defs/LocationId"
addedOutput schema / $defs / LocationSearchResult / properties / id / description
Added value: +"Exact location ID to pass unchanged to listing search and search-link tools."
removedOutput schema / $defs / LocationSearchResult / properties / id / title
Removed value: -"Id"
removedOutput schema / $defs / LocationSearchResult / properties / id / type
Removed value: -"integer"
addedOutput schema / $defs / LocationSearchResult / properties / location_type / $ref
Added value: +"#/$defs/AgentLocationType"
addedOutput schema / $defs / LocationSearchResult / properties / location_type / description
Added value: +"Administrative level: DISTRICT, MUNICIPALITY, PARISH, or NEIGHBORHOOD."
removedOutput schema / $defs / LocationSearchResult / properties / location_type / title
Removed value: -"Location Type"
removedOutput schema / $defs / LocationSearchResult / properties / location_type / type
Removed value: -"string"
changedOutput schema / $defs / LocationSearchResult / properties / parent_id / anyOf
Previous value: -[
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "$ref": "#/$defs/LocationId"
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / $defs / LocationSearchResult / properties / parent_id / title
Removed value: -"Parent Id"
addedOutput schema / $defs / LocationSelectionState
Added value: +{
+ "enum": [
+ "no_candidates",
+ "single_candidate",
+ "selection_required"
+ ],
+ "title": "LocationSelectionState",
+ "type": "string"
+}
addedOutput schema / properties / normalized_query
Added value: +{
+ "title": "Normalized Query",
+ "type": "string"
+}
addedOutput schema / properties / query
Added value: +{
+ "title": "Query",
+ "type": "string"
+}
addedOutput schema / properties / query_interpretation
Added value: +{
+ "$ref": "#/$defs/LocationQueryInterpretation"
+}
addedOutput schema / properties / selection_state
Added value: +{
+ "$ref": "#/$defs/LocationSelectionState"
+}
changedOutput schema / required
Previous value: -[
- "locations"
-]New value: +[
+ "query",
+ "normalized_query",
+ "query_interpretation",
+ "selection_state",
+ "locations"
+]