-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathixp-member-list-0.7.schema.json
447 lines (423 loc) · 17.1 KB
/
ixp-member-list-0.7.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "IXP Member List Schema",
"description": "A JSON schema representing an IXP Member List",
"type": "object",
"required": ["version", "timestamp", "ixp_list", "member_list"],
"properties": {
"version": {
"title": "IXP Member List Schema Version",
"description": "Version number of the schema; this is not the version of the file within an IXP; but the schema version",
"type": "string"
},
"timestamp": {
"title": "IXP Member List Schema export timestamp",
"description": "Timestamp of when the data was exported",
"type": "string",
"format": "date-time"
},
"ixp_list": {
"title": "IXP Info List",
"description": "A list of schemas representing IXP information",
"type": "array",
"items":
{
"description": "A single IXP entry",
"type": "object",
"required": ["ixf_id","ixp_id","shortname"],
"properties": {
"ixp_id": {
"description": "IXP numeric identifier, persistent value free to set by the IXP",
"type": "integer"
},
"shortname": {
"description": "Short name of the IXP",
"type": "string"
},
"name": {
"description": "Name of the IXP",
"type": "string"
},
"url": {
"description": "Website of the IXP",
"type": "string",
"format": "uri"
},
"stats_api": {
"description": "URL to statistics API",
"type": "string",
"format": "uri"
},
"country": {
"description": "ISO country code where the IXP is located",
"type": "string"
},
"ixf_id": {
"description": "IXP ID from the IX-F database",
"type": "integer"
},
"peeringdb_id": {
"description": "PeeringDB ID of the IX - the y in: https://www.peeringdb.com/ix/y",
"type": "integer"
},
"support_email": {
"description": "Support email address",
"type": "string",
"format" : "email"
},
"support_phone": {
"description": "Support phone number",
"type": "string"
},
"support_contact_hours": {
"description": "Support contact hours, eg. 24/7, 8/5, etc",
"type": "string"
},
"emergency_email": {
"description": "Emergency support email address",
"type": "string",
"format" : "email"
},
"emergency_phone": {
"description": "Emergency support phone number",
"type": "string"
},
"emergency_contact_hours": {
"description": "Emergency support contact hours, eg. 24/7, 8/5, etc",
"type": "string"
},
"billing_email": {
"description": "Billing email address",
"type": "string",
"format" : "email"
},
"billing_phone": {
"description": "Billing phone number",
"type": "string"
},
"billing_contact_hours": {
"description": "Billing contact hours, eg. 24/7, 8/5, etc",
"type": "string"
},
"peering_policy_list": {
"description": "Peering policy choices available in the member list",
"type": "array",
"items":
{
"type": "string"
}
},
"switch": {
"description": "Switches available at the IXP",
"type": "array",
"items":
{
"type": "object",
"properties": {
"id": {
"description": "Unique ID of the switch",
"type": "integer"
},
"name": {
"description": "Switch name",
"type": "string"
},
"colo": {
"description": "Colo the switch is located in",
"type": "string"
},
"pdb_facility_id": {
"description": "Peering DB ID of the data centre",
"type": "integer"
},
"city": {
"description": "City the switch is located in",
"type": "string"
},
"country": {
"description": "Country the switch is located in",
"type": "string"
},
"manufacturer": {
"description": "Free text field to indicate the manufacturer of the switch for informational purposes.",
"type": "string"
},
"model": {
"description": "Free text field to indicate the model of the switch for informational purposes. Should not be present without manufacturer.",
"type": "string"
}
}
}
},
"vlan": {
"description": "VLANs available at the IXP",
"type": "array",
"items":
{
"description": "A single VLAN entry",
"type": "object",
"properties": {
"id": {
"description": "Unique ID of the VLAN",
"type": "integer"
},
"name": {
"description": "VLAN name",
"type": "string"
},
"ipv4": {
"description": "IPv4 details in this VLAN",
"type": "object",
"properties": {
"prefix": {
"description": "Prefix of the IPv4 address",
"type": "string",
"format": "ipv4"
},
"mask_length": {
"description": "Mask length of the IPv4 address",
"type": "integer"
},
"looking_glass_urls": {
"description": "URLs of looking glass(es) available for this VLAN and protocol.",
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
}
}
},
"ipv6": {
"description": "IPv6 details in this VLAN",
"type": "object",
"properties": {
"prefix": {
"description": "Prefix of the IPv6 address",
"type": "string",
"format": "ipv6"
},
"mask_length": {
"description": "Mask length of the IPv6 address",
"type": "integer"
},
"looking_glass_urls": {
"description": "URLs of looking glass(es) available for this VLAN and protocol.",
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
}
}
}
}
}
}
}
}
},
"member_list": {
"title": "IXP Member List",
"description": "A list of schemas representing IXP members",
"type": "array",
"items":
{
"description": "A single member entry",
"type": "object",
"required": ["asnum","connection_list"],
"properties": {
"asnum": {
"description": "AS number of the network",
"type": "integer"
},
"member_type": {
"description": "Participant type: peering, ixp, pro bono, routeserver or other",
"type": "string",
"enum": ["peering","ixp","other"]
},
"name": {
"description": "Name of the network",
"type": "string"
},
"url": {
"description": "URL to website of the network",
"type": "string",
"format": "uri"
},
"peering_policy": {
"description": "Peering policy of the network",
"type": "string"
},
"peering_policy_url": {
"description": "URL to the network's peering policy",
"type": "string",
"format": "uri"
},
"member_since": {
"description": "Date when the network joined the IXP",
"type": "string",
"format": "date-time"
},
"contact_email": {
"description": "List of contact email addresses of the network",
"type": "array",
"items":
{
"type": "string",
"format" : "email"
}
},
"contact_phone": {
"description": "List of contact phone numbers of the network",
"type": "array",
"items":
{
"type": "string"
}
},
"contact_hours": {
"description": "Network contact hours, eg. 24/7, 8/5, etc",
"type": "string"
},
"connection_list": {
"description": "List of connections of the network at the IXP",
"type": "array",
"items":
{
"description": "A single connection entry",
"type": "object",
"required": ["ixp_id"],
"properties": {
"ixp_id": {
"description": "IXP numeric identifier, persistent value free to set by the IXP, referencing the same ID as used in the ixp_list element",
"type": "integer"
},
"state": {
"description": "State of the connection",
"type": "string"
},
"connected_since": {
"description": "Date when the connection was activated",
"type": "string",
"format": "date-time"
},
"if_list": {
"description": "List of interfaces making up the connection",
"type": "array",
"items":
{
"description": "A single interface entry",
"type": "object",
"properties": {
"switch_id": {
"description": "Switch ID where the interface or LAG is connected, persistent value free to set by the IXP",
"type": "integer"
},
"if_speed": {
"description": "Speed of the interface or LAG in Mb, i.e. 10G = 10000",
"type": "integer"
},
"if_type": {
"description": "Type of the interface or LAG",
"type": "string"
}
}
}
},
"vlan_list": {
"type": "array",
"items":
{
"description": "A single VLAN entry",
"type": "object",
"properties": {
"vlan_id": {
"description": "The VLAN ID this connection is placed in, persistent value free to set by the IXP",
"type": "integer"
},
"ipv4": {
"description": "The network's IPv4 address details in this VLAN",
"type": "object",
"properties": {
"address": {
"description": "The IPv4 address",
"type": "string",
"format": "ipv4"
},
"as_macro": {
"description": "The IPv4 AS-MACRO, if applicable",
"type": "string"
},
"max_prefix": {
"description": "The max number of prefixes on this connection for IPv4",
"type": "integer"
},
"routeserver": {
"description": "Does this IPv4 address connect to the IXP routeserver",
"type": "boolean"
},
"mac_addresses": {
"description": "MAC address of the member interface (format: lowercase string xx:xx:xx:xx:xx:xx)",
"type": "array",
"items": {
"type": "string"
}
},
"service_type": {
"description": "ENUM field to indicate the service type(s) available from this connection. Defined types: 'ixrouteserver' (IX operated route server), 'ixroutecollector' (IX operated route collector)",
"type": "array",
"items": {
"type": "string"
}
}
}
},
"ipv6": {
"description": "The network's IPv6 address details in this VLAN",
"type": "object",
"properties": {
"address": {
"description": "The IPv6 address",
"type": "string",
"format": "ipv6"
},
"as_macro": {
"description": "The IPv6 AS-MACRO, if applicable",
"type": "string"
},
"max_prefix": {
"description": "The max number of prefixes on this connection for IPv6",
"type": "integer"
},
"routeserver": {
"description": "Does this IPv6 address connect to the IXP routeserver",
"type": "boolean"
},
"mac_addresses": {
"description": "MAC address of the member interface (format: lowercase string xx:xx:xx:xx:xx:xx)",
"type": "array",
"items": {
"type": "string"
}
},
"service_type": {
"description": "ENUM field to indicate the service type(s) available from this connection. Defined types: 'ixrouteserver' (IX operated route server), 'ixroutecollector' (IX operated route collector)",
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}