You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dist/openapi.json
+49Lines changed: 49 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4807,6 +4807,8 @@
4807
4807
"title": "Ireland ECAD Address",
4808
4808
"description": "The ECAD contains additional data for each ECAF address.",
4809
4809
"required": [
4810
+
"dataset",
4811
+
"ecad_id",
4810
4812
"organisation_id",
4811
4813
"address_point_id",
4812
4814
"building_id",
@@ -4926,6 +4928,7 @@
4926
4928
},
4927
4929
"post_county_id": {
4928
4930
"type": "string",
4931
+
"nullable": true,
4929
4932
"description": "Post County ID",
4930
4933
"example": "10098783",
4931
4934
"maxLength": 10,
@@ -5068,6 +5071,7 @@
5068
5071
"title": "Ireland ECAF Address",
5069
5072
"description": "ECAF is the Eircode Address File which contains one record for each Postal Address. English language and Irish language versions are available. It is distributed as a flat file, details of data provision and updates are provided in section 2.",
5070
5073
"required": [
5074
+
"dataset",
5071
5075
"ecaf_id"
5072
5076
],
5073
5077
"allOf": [
@@ -10756,6 +10760,32 @@
10756
10760
}
10757
10761
}
10758
10762
},
10763
+
"ApiKeyMonthlyLimit": {
10764
+
"title": "API Key Monthly Limit",
10765
+
"type": "object",
10766
+
"required": [
10767
+
"limit",
10768
+
"consumed"
10769
+
],
10770
+
"properties": {
10771
+
"limit": {
10772
+
"x-nullable": true,
10773
+
"nullable": true,
10774
+
"minimum": 0,
10775
+
"example": 10000,
10776
+
"type": "integer",
10777
+
"description": "`number` or `null`. The monthly lookup limit currently set on your key.\n`null` means the limit is currently disabled.",
10778
+
"format": "int32"
10779
+
},
10780
+
"consumed": {
10781
+
"minimum": 0,
10782
+
"example": 2500,
10783
+
"type": "integer",
10784
+
"description": "Number of lookups performed this month which count towards your monthly limit.",
Copy file name to clipboardExpand all lines: dist/openapi.yaml
+44Lines changed: 44 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4164,6 +4164,8 @@ components:
4164
4164
title: Ireland ECAD Address
4165
4165
description: The ECAD contains additional data for each ECAF address.
4166
4166
required:
4167
+
- dataset
4168
+
- ecad_id
4167
4169
- organisation_id
4168
4170
- address_point_id
4169
4171
- building_id
@@ -4269,6 +4271,7 @@ components:
4269
4271
minLength: 1
4270
4272
post_county_id:
4271
4273
type: string
4274
+
nullable: true
4272
4275
description: Post County ID
4273
4276
example: '10098783'
4274
4277
maxLength: 10
@@ -4461,6 +4464,7 @@ components:
4461
4464
title: Ireland ECAF Address
4462
4465
description: ECAF is the Eircode Address File which contains one record for each Postal Address. English language and Irish language versions are available. It is distributed as a flat file, details of data provision and updates are provided in section 2.
4463
4466
required:
4467
+
- dataset
4464
4468
- ecaf_id
4465
4469
allOf:
4466
4470
- $ref: '#/components/schemas/EircBase'
@@ -10208,6 +10212,29 @@ components:
10208
10212
type: integer
10209
10213
description: Number of lookups performed today which count towards your daily limit.
10210
10214
format: int32
10215
+
ApiKeyMonthlyLimit:
10216
+
title: API Key Monthly Limit
10217
+
type: object
10218
+
required:
10219
+
- limit
10220
+
- consumed
10221
+
properties:
10222
+
limit:
10223
+
x-nullable: true
10224
+
nullable: true
10225
+
minimum: 0
10226
+
example: 10000
10227
+
type: integer
10228
+
description: |-
10229
+
`number` or `null`. The monthly lookup limit currently set on your key.
10230
+
`null` means the limit is currently disabled.
10231
+
format: int32
10232
+
consumed:
10233
+
minimum: 0
10234
+
example: 2500
10235
+
type: integer
10236
+
description: Number of lookups performed this month which count towards your monthly limit.
/** @description The unique identifier in the ECAF is the `ecaf_id`. This unique identifier allows each address in the ECAF to be uniquely identified. It can also be used as index once the data has been imported into a relational database. This is a numeric field that can store values from 0 to 2,147,483,647. It is represented as a number up to 10 digits long. All other fields in ECAF are alphanumeric. */
0 commit comments