action uebermaps_get_maps_map_id_spots_id { label: "Get spot" description: "Get basic information about a spot" provider: uebermaps method: GET path: "/maps/{map_id}/spots/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } map_id: { type: "string" } } required: ["id", "map_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }