Skip to content

Commit ece264d

Browse files
committed
description changes
1 parent fb56355 commit ece264d

3 files changed

Lines changed: 11 additions & 10 deletions

File tree

dist/openapi.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4927,6 +4927,7 @@
49274927
},
49284928
"post_county_id": {
49294929
"type": "string",
4930+
"nullable": true,
49304931
"description": "Post County ID",
49314932
"example": "10098783",
49324933
"maxLength": 10,
@@ -10013,7 +10014,7 @@
1001310014
},
1001410015
"address": {
1001510016
"type": "string",
10016-
"description": "Full address as a single string. Street name and house number/building name and building number, postal code and city\n",
10017+
"description": "House number, `\"\"` if not present.\n",
1001710018
"example": "40"
1001810019
},
1001910020
"line_1": {
@@ -10198,11 +10199,11 @@
1019810199
},
1019910200
"e": {
1020010201
"type": "string",
10201-
"description": "Easting coordinate of the locality centroid in the Swiss coordinate system CH1903+/LV95.\n"
10202+
"description": "Longitude of the locality centroid in WGS84 decimal degrees.\n"
1020210203
},
1020310204
"n": {
1020410205
"type": "string",
10205-
"description": "Northing coordinate of the locality centroid in the Swiss coordinate system CH1903+/LV95.\n"
10206+
"description": "Latitude of the locality centroid in WGS84 decimal degrees.\n"
1020610207
},
1020710208
"sprache": {
1020810209
"type": "string",

dist/openapi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9656,7 +9656,7 @@ components:
96569656
address:
96579657
type: string
96589658
description: |
9659-
Full address as a single string. Street name and house number/building name and building number, postal code and city
9659+
House number, `""` if not present.
96609660
example: '40'
96619661
line_1:
96629662
type: string
@@ -9843,11 +9843,11 @@ components:
98439843
e:
98449844
type: string
98459845
description: |
9846-
Easting coordinate of the locality centroid in the Swiss coordinate system CH1903+/LV95.
9846+
Longitude of the locality centroid in WGS84 decimal degrees.
98479847
'n':
98489848
type: string
98499849
description: |
9850-
Northing coordinate of the locality centroid in the Swiss coordinate system CH1903+/LV95.
9850+
Latitude of the locality centroid in WGS84 decimal degrees.
98519851
sprache:
98529852
type: string
98539853
description: |

openapi.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2143,7 +2143,7 @@ export interface components {
21432143
* @description Post County ID
21442144
* @example 10098783
21452145
*/
2146-
post_county_id?: string;
2146+
post_county_id?: string | null;
21472147
/**
21482148
* @description NUA means "non-unique address".
21492149
*
@@ -5908,7 +5908,7 @@ export interface components {
59085908
*/
59095909
language: "de" | "fr" | "it" | "rm";
59105910
/**
5911-
* @description Full address as a single string. Street name and house number/building name and building number, postal code and city
5911+
* @description House number, `""` if not present.
59125912
*
59135913
* @example 40
59145914
*/
@@ -6025,9 +6025,9 @@ export interface components {
60256025
kantonskürzel: string;
60266026
/** @description Proportion of addresses belonging to this locality record. */
60276027
adressenanteil: string;
6028-
/** @description Easting coordinate of the locality centroid in the Swiss coordinate system CH1903+/LV95. */
6028+
/** @description Longitude of the locality centroid in WGS84 decimal degrees. */
60296029
e: string;
6030-
/** @description Northing coordinate of the locality centroid in the Swiss coordinate system CH1903+/LV95. */
6030+
/** @description Latitude of the locality centroid in WGS84 decimal degrees. */
60316031
n: string;
60326032
/** @description Language of the record (e.g. `"de"`, `"fr"`, `"it"`, `"rm"`). */
60336033
sprache: string;

0 commit comments

Comments
 (0)