get_nearest_location
Identify the closest DevHub CMS location using a business ID, latitude, and longitude for efficient location-based management and content administration.
Instructions
Get the nearest DevHub location
Args:
business_id: DevHub Business ID associated with the location. Prompt the user for this ID
latitude: Latitude of the location
longitude: Longitude of the location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
business_id | Yes | ||
latitude | Yes | ||
longitude | Yes |
Input Schema (JSON Schema)
{
"properties": {
"business_id": {
"title": "Business Id",
"type": "integer"
},
"latitude": {
"title": "Latitude",
"type": "number"
},
"longitude": {
"title": "Longitude",
"type": "number"
}
},
"required": [
"business_id",
"latitude",
"longitude"
],
"title": "get_nearest_locationArguments",
"type": "object"
}