zip code fix (#112)

This commit is contained in:
Will Freeman
2026-04-21 11:49:46 -06:00
committed by GitHub
parent c298a3f5d4
commit 7c27235400
2 changed files with 7 additions and 3 deletions
+3 -3
View File
@@ -17,9 +17,9 @@ export const NominatimResultSchema = Type.Object({
licence: Type.String(),
lon: Type.String(),
name: Type.String(),
osm_id: Type.Number(),
osm_type: Type.String(),
place_id: Type.Number(),
osm_id: Type.Optional(Type.Number()),
osm_type: Type.Optional(Type.String()),
place_id: Type.Optional(Type.Number()),
place_rank: Type.Number(),
type: Type.String(),
});