-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomponents.json
679 lines (679 loc) · 29.5 KB
/
components.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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
{
"id": "components.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"version": "0.2",
"definitions": {
"StatementDate": {
"title": "Statement date",
"description": "The date on which this statement was made.",
"type": "string",
"format": "date"
},
"Source": {
"title": "Source",
"description": "The source object is used to explain where information in a statement originated from, and to link to supporting information.",
"type": "object",
"properties": {
"type": {
"title": "Source type",
"description": "What type of source is this? Multiple tags can be combined. Values should come from the source type codelist.",
"type": "array",
"items": {
"type": "string",
"enum": [
"selfDeclaration",
"officialRegister",
"thirdParty",
"primaryResearch",
"verified"
],
"codelist": "sourceType.csv",
"openCodelist": false
}
},
"description": {
"title": "Description",
"description": "Where required, additional free-text information about the source of this statement can be provided here.",
"type": "string"
},
"url": {
"title": "Source URL",
"description": "If this information was fetched from an external URL, or a machine or human readable web page is available that provides additional information on how this statement was sourced, provide the URL.",
"type": "string",
"format": "uri"
},
"retrievedAt": {
"title": "Retrieved at",
"description": "If this statement was imported from some external system, include a timestamp indicating when this took place. The statement's own date should be set based on the source information. ",
"type": "string",
"format": "date-time"
},
"assertedBy": {
"title": "Asserted by",
"description": "Who is making this statement? This may be the name of the person or organisation making a self-declaration (in which case, please make sure the name field matches the organisation or person name field), or the name or description of some other party. If this statement has been verified, this may also include the name of the organisation providing verification.",
"type": "array",
"items": {
"$ref": "#/definitions/Agent"
}
}
}
},
"Agent": {
"type": "object",
"title": "Agent",
"description": "An individual, organisation or other responsible agent making, or supporting, a given statement or annotation.",
"properties": {
"name": {
"title": "Name",
"description": "The name of the agent",
"type": "string"
},
"uri": {
"title": "URI",
"description": "An optional URI to identify the agent.",
"type": "string",
"format": "uri"
}
}
},
"ReplacesStatements": {
"title": "Replaces statement(s)",
"description": "If this statement replaces a previous statement or statements, provide the identifier(s) for the previous statement(s) here. Consuming applications are advised to mark the identified statements as no longer active.",
"type": "array",
"items": {
"title": "Statement identifier",
"description": "The identifier of a statement that is no longer active.",
"type": "string",
"minLength": 32,
"maxLength": 64
}
},
"Identifier": {
"title": "Identifier",
"description": "An identifier that has been assigned to this person or entity. The scheme or list from which the identifier is drawn should be declared.",
"type": "object",
"properties": {
"id": {
"title": "ID",
"description": "The identifier for this person or entity as provided in the declared scheme.",
"type": "string"
},
"scheme": {
"title": "Scheme",
"description": "For entity statements, the scheme should be a entry from the org-id.guide (https://www.org-id.guide) codelist. For person statements, the scheme should have the pattern {JURISDICTION}-{TYPE} where JURISDICTION is an ISO 3-digit country code and TYPE is one of PASSPORT, TAXID or IDCARD. `scheme` or `schemeName` (or both) MUST be included in an Identifier object.",
"type": "string"
},
"schemeName": {
"title": "Scheme name",
"description": "The name of this scheme, where the org-id code is unknown or only an unvalidated string is provided. `scheme` or `schemeName` (or both) MUST be included in an Identifier object.",
"type": "string"
},
"uri": {
"title": "URI",
"description": "Where this identifier has a canonical URI (https://en.wikipedia.org/wiki/Uniform_Resource_Identifier) this may be included",
"type": "string",
"format": "uri"
}
},
"anyOf": [
{
"required": [
"scheme"
]
},
{
"required": [
"schemeName"
]
},
{
"required": [
"scheme",
"schemeName"
]
}
]
},
"ID": {
"title": "Statement Identifier",
"description": "A persistent globally unique identifier for this statement.",
"type": "string",
"minLength": 32,
"maxLength": 64
},
"Address": {
"title": "Address",
"description": "A free text address string, providing as much address data as is relevant, suitable for processing using address parsing algorithms. For some uses (for example, Place of Birth) only a town and country are required.",
"type": "object",
"properties": {
"type": {
"title": "Type",
"description": "What type of address is this? See the addressType codelist.",
"type": "string",
"enum": [
"placeOfBirth",
"residence",
"registered",
"service",
"alternative",
"business"
],
"codelist": "addressType.csv",
"openCodelist": false
},
"address": {
"title": "Address",
"description": "The address, with each line or component of the address separated by a line-break or comma. Where postal codes are isolated fields in source systems, this `address` field SHOULD NOT include the postal code.",
"type": "string"
},
"postCode": {
"title": "Postcode",
"description": "The postal code for this address.",
"type": "string"
},
"country": {
"title": "Country",
"description": "The 2-letter country code (ISO 3166-1) for this address.",
"type": "string",
"minLength": 2,
"maxLength": 2
}
}
},
"Name": {
"title": "Name",
"description": "An name by which this individual is known. Names should be provided in `fullName`, and may optionally be broken down in the `familyName`, `givenName` and `patronymicName` fields, based on the EC ISA Core Person Vocabulary (https://joinup.ec.europa.eu/solution/e-government-core-vocabularies) definitions.",
"type": "object",
"properties": {
"type": {
"title": "Type",
"description": "What kind of name is this? See the nameType codelist.",
"type": "string",
"enum": [
"individual",
"translation",
"transliteration",
"former",
"alternative",
"birth"
],
"codelist": "nameType.csv",
"openCodelist": false
},
"fullName": {
"title": "Full name",
"description": "The full name contains the complete name of a person as one string.",
"type": "string"
},
"familyName": {
"title": "Family name",
"description": "A family name is usually shared by members of a family. This attribute also carries prefixes or suffixes which are part of the Family Name, e.g. 'de Boer', 'van de Putte', 'von und zu Orlow'. Multiple family names, such as are commonly found in Hispanic countries, are recorded in the single Family Name field so that, for example, Miguel de Cervantes Saavedra's Family Name would be recorded as 'Cervantes Saavedra.'",
"type": "string"
},
"givenName": {
"title": "Given names",
"description": "A given name, or multiple given names, are the denominator(s) that identify an individual within a family. These are given to a person by his or her parents at birth or may be legally recognised as 'given names' through a formal process. All given names are ordered in one field so that, for example, the given name for Johann Sebastian Bach is 'Johann Sebastian'.",
"type": "string"
},
"patronymicName": {
"title": "Patronymic Name",
"description": "Patronymic names are important in some countries. Iceland does not have a concept of family name in the way that many other European countries do, for example. In Bulgaria and Russia, patronymic names are in every day usage, for example, the 'Sergeyevich' in 'Mikhail Sergeyevich Gorbachev'.",
"type": "string"
}
}
},
"Interest": {
"title": "Interest",
"description": "A description of the interest held by an interestedParty in another entity.",
"type": "object",
"properties": {
"type": {
"title": "Type of interest",
"description": "A codelist value indicating the nature of the interest. See the interestType codelist",
"type": "string",
"enum": [
"shareholding",
"votingRights",
"appointmentOfBoard",
"otherInfluenceOrControl",
"seniorManagingOfficial",
"settlorOfTrust",
"trusteeOfTrust",
"protectorOfTrust",
"beneficiaryOfTrust",
"otherInfluenceOrControlOfTrust",
"rightsToSurplusAssetsOnDissolution",
"rightsToProfitOrIncome",
"rightsGrantedByContract",
"conditionalRightsGrantedByContract"
],
"codelist": "interestType.csv",
"openCodelist": false
},
"interestLevel": {
"title": "Interest level",
"description": "Is this interest held directly or indirectly?",
"type": "string",
"enum": [
"direct",
"indirect",
"unknown"
],
"codelist": "interestLevel.csv",
"openCodelist": false
},
"beneficialOwnershipOrControl": {
"title": "Beneficial ownership or control",
"description": "Does this statement assert this as a beneficial ownership or control interest? A beneficial ownership or control interest is always between a natural person and some entity, and exists where the person ultimately benefits from, or has a degree of control over, the entity. There may be cases where a person has an interest in an entity, but where there are arrangements or other conditions that mean this interest does not constitute beneficial ownership or control.",
"type": "boolean"
},
"details": {
"title": "Details",
"description": "This field may be used to provide the local name given to this kind of interest, or any further semi-structured or unstructured information to clarify the nature of the interest held.",
"type": "string"
},
"share": {
"title": "Percentage share",
"description": "Where an exact percentage is available, this should be given, and `maximum` and `minimum` values set to the same as the exact percentage. Otherwise, `maximum` and `minimum` can be used to record the range into which the share of this kind of interest falls. By default the `minimum` is inclusive and the `maximum` exclusive (minimum-value ≤ share < maximum-value). If you wish to change these defaults, use the `exclusiveMinimum` and `exclusiveMaximum` properties.",
"type": "object",
"properties": {
"exact": {
"title": "Exact share",
"description": "The exact share of this interest held (where available).",
"type": "number",
"maximum": 100,
"minimum": 0
},
"maximum": {
"title": "Maximum share",
"description": "The upper bound of the share of this interest known to be held.",
"type": "number",
"maximum": 100,
"minimum": 0
},
"minimum": {
"title": "Minimum share",
"description": "The lower bound of the share of this interest known to be held.",
"type": "number",
"maximum": 100,
"minimum": 0
},
"exclusiveMinimum": {
"title": "Exclusive minimum",
"description": "If `exclusiveMinimum` is true, then the share is at least greater than the `minimum` value given. E.g. if `minimum` is '25', the share is at least 25.1, and not simply 25.",
"type": "boolean",
"default": false
},
"exclusiveMaximum": {
"title": "Exclusive maximum",
"description": "If `exclusiveMaximum` is true, then the share is at least less than the `maximum` value given. E.g. if `maximum` is '50', the share is less than 49.999, and not simply 50.",
"type": "boolean",
"default": true
}
}
},
"startDate": {
"title": "Start date",
"description": "When did this interest first occur. Please provide as precise a date as possible in ISO 8601 format. When only the year or year and month is known, these can be given as YYYY or YYYY-MM.",
"type": "string",
"pattern": "^([\\+-]?\\d{4}(?!\\d{2}\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$"
},
"endDate": {
"title": "End date",
"description": "When did this interest cease. Please provide as precise a date as possible in ISO 8601 format. When only the year or year and month is known, these can be given as YYYY or YYYY-MM.",
"type": "string",
"pattern": "^([\\+-]?\\d{4}(?!\\d{2}\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$"
}
}
},
"Annotation": {
"title": "Annotation",
"description": "An annotation provides additional information about ownership or control data being provided. Annotations can be provided in free-text, and can apply to a whole statement, an object or a single field. Additional extended properties can be included on the annotation object to provide structured data where required.",
"type": "object",
"properties": {
"statementPointerTarget": {
"title": "Statement Fragment Pointer",
"description": "An RFC6901 JSON Pointer (https://tools.ietf.org/html/rfc6901) describing the target fragment of the statement that this annotation applies to, starting from the root of the statement. A value of '/' indicates that the annotation applies to the whole statement.",
"type": "string"
},
"creationDate": {
"title": "Creation Date",
"description": "The date this annotation was created.",
"type": "string",
"format": "date"
},
"createdBy": {
"title": "Created By",
"description": "The person, organisation or agent that created this annotation.",
"type": "object",
"properties": {
"name": {
"title": "Name",
"description": "The name of the person, organisation or agent that created this annotation.",
"type": "string"
},
"uri": {
"title": "URI",
"description": "An optional URI to identify person, organisation or agent that created this annotation.",
"type": "string",
"format": "uri"
}
}
},
"motivation": {
"title": "Motivation",
"description": "The motivation for this annotation, chosen from a codelist. See the annotationMotivation codelist.",
"type": "string",
"enum": [
"commenting",
"correcting",
"identifying",
"linking",
"transformation"
],
"codelist": "annotationMotivation.csv",
"openCodelist": false
},
"description": {
"title": "Description",
"description": "A free-text description to annotate this statement or field.",
"type": "string"
},
"transformedContent": {
"type": "string",
"title": "Transformed content",
"description": "A representation of the annotation target after the transformation in the description field has been applied. This field SHOULD only be used when the motivation is transformation."
},
"url": {
"title": "URL",
"description": "A linked resource that annotates, provides context for or enhances this statement. The content of the resource, or the relationship to the statement, MAY be described in the `description` field. This field is REQUIRED if the value of `motivation` is 'linking'.",
"type": "string",
"format": "uri"
}
},
"required": [
"statementPointerTarget",
"motivation"
],
"oneOfEnumSelectorField": "motivation",
"oneOf": [
{
"properties": {
"motivation": {
"enum": [
"linking"
]
}
},
"required": [
"statementPointerTarget",
"motivation",
"url"
]
},
{
"properties": {
"motivation": {
"enum": [
"identifying",
"commenting",
"correcting",
"transformation"
]
}
}
}
]
},
"Country": {
"title": "Country",
"description": "A country MUST have a name. A country SHOULD have a 2-letter country code (ISO 3166-1)",
"type": "object",
"properties": {
"name": {
"title": "Name",
"description": "The name of the country",
"type": "string"
},
"code": {
"title": "Country code",
"description": "The 2-letter country code (ISO 3166-1) for this country.",
"type": "string",
"maxLength": 2,
"minLength": 2
}
},
"required": [
"name"
]
},
"Jurisdiction": {
"title": "Jurisdiction",
"description": "A jurisdiction MUST have a name. A jurisdiction SHOULD have the 2-letter country code (ISO 3166-1) or the subdivision code (ISO 3166-2) for the jurisdiction.",
"type": "object",
"properties": {
"name": {
"title": "Name",
"description": "The name of the jurisdiction",
"type": "string"
},
"code": {
"title": "Country or subdivision code",
"description": "The 2-letter country code (ISO 3166-1) or the subdivision code (ISO 3166-2) for the jurisdiction.",
"type": "string",
"maxLength": 6,
"minLength": 2
}
},
"required": [
"name"
]
},
"PepStatusDetails": {
"title": "PEP Status",
"description": "A description of a politically-exposed person status.",
"type": "object",
"properties": {
"reason": {
"title": "Reason",
"description": "The reason for this person being declared a politically-exposed person.",
"type": "string"
},
"missingInfoReason": {
"title": "Missing information reason(s)",
"description": "An explanation of the reason that PEP status for the person is not provided (i.e. `politicalExposure.status` is 'unknown'). This may be a standard descriptive phrase from the source system, or a free-text justification. Where this field is present it should be the only field except for `source`.",
"type": "string"
},
"jurisdiction": {
"title": "Jurisdiction",
"description": "The jurisdiction where this person is a PEP.",
"$ref": "#/definitions/Jurisdiction"
},
"startDate": {
"title": "State date",
"description": "When did this PEP status begin. Please provide as precise a date as possible in ISO 8601 format. When only the year or year and month is known, these can be given as YYYY or YYYY-MM.",
"type": "string",
"pattern": "^([\\+-]?\\d{4}(?!\\d{2}\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$"
},
"endDate": {
"title": "End date",
"description": "When did this PEP status end. Please provide as precise a date as possible in ISO 8601 format. When only the year or year and month is known, these can be given as YYYY or YYYY-MM.",
"type": "string",
"pattern": "^([\\+-]?\\d{4}(?!\\d{2}\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$"
},
"source": {
"title": "Source",
"description": "The source of this PEP information",
"$ref": "components.json#/definitions/Source"
}
}
},
"PublicationDetails": {
"title": "Publication Details",
"description": "Information concerning the publication of this statement.",
"type": "object",
"properties": {
"publicationDate": {
"title": "Publication date",
"description": "The date on which this statement was published.",
"type": "string",
"format": "date"
},
"bodsVersion": {
"title": "BODS version",
"description": "The version of the Beneficial Ownership Data Standard to which this statement conforms, expressed as major.minor. For example: 0.2 or 1.0.",
"type": "string",
"pattern": "^(\\d+\\.)(\\d+)$"
},
"license": {
"title": "License URL",
"description": "A link to the license that applies to this statement. The canonical URI of the license SHOULD be used. Publishers are encouraged to use a Public Domain Dedication or Open Definition Conformant (http://opendefinition.org/licenses/) license.",
"type": "string",
"format": "uri"
},
"publisher": {
"title": "Publisher",
"description": "Details of the organisation or individual publishing this statement.",
"$ref": "components.json#/definitions/Publisher"
}
},
"required": [
"publicationDate",
"bodsVersion",
"publisher"
]
},
"Publisher": {
"type": "object",
"title": "Publisher",
"description": "Details of the organisation or individual publishing a statement.",
"properties": {
"name": {
"title": "Name",
"description": "The name of the publisher",
"type": "string"
},
"url": {
"title": "URL",
"description": "The URL of the parent dataset or of the publisher's website homepage",
"type": "string",
"format": "uri"
}
},
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"url"
]
}
]
},
"PublicListing": {
"type": "object",
"title": "Public listing",
"description": "Details of a publicly listed company, its securities (shares and other tradable financial instruments related to the entity), and related regulatory filings.",
"required": [
"securitiesListings",
"hasPublicListing"
],
"minProperties": 1,
"properties": {
"hasPublicListing": {
"type": "boolean",
"title": "Has public listing",
"description": "This value MUST be true if the entity is known to be a publicly listed company."
},
"companyFilingsURLs": {
"type": "array",
"title": "Company filings URLs",
"description": "URL or URLs where regulatory filings related to major holdings can be retrieved. URLs may point to pages maintained by regulatory bodies, stock exchanges or by the company itself.",
"items": {
"type": "string"
},
"format": "uri"
},
"securitiesListings": {
"type": "array",
"title": "Securities listings",
"description": "Details of the entity's securities and the public exchanges and markets on which they are traded. All equity securities SHOULD BE listed here, plus any other securities from which beneficial ownership might be derived. Where a security is traded on more than one market, there SHOULD BE an entry for each market (or market segment).",
"items": {
"title": "Securities listing",
"description": "Details of a security and the market on which it is traded.",
"$ref": "#/definitions/SecuritiesListing"
}
}
}
},
"SecuritiesListing": {
"type": "object",
"title": "Securities listing",
"description": "Details of a security and the market on which it is traded.",
"required": [
"stockExchangeJurisdiction",
"security",
"stockExchangeName"
],
"properties": {
"marketIdentifierCode": {
"type": "string",
"title": "Market Identifier Code (MIC)",
"description": "The Market Identifier Code (MIC) of the market on which the security is traded. Where the security is traded on a segment of an exchange, this is the MIC of the segment. Where it is traded on the main exchange, this is the MIC of the main exchange and MUST match the `operatingMarketIdentifierCode`. MICs are allocated and managed under ISO standard 10383."
},
"operatingMarketIdentifierCode": {
"type": "string",
"title": "Operating Market Identifier Code (Operating MIC)",
"description": "The Market Identifier Code (MIC) of the main exchange or trading platform handling trades in this security. Where the security is traded on a segment of an exchange, this is the MIC of the parent exchange or trading platform. Where it is traded on the main exchange, this is the MIC of that main exchange and MUST match the `marketIdentifierCode`. MICs are allocated and managed under ISO standard 10383."
},
"stockExchangeJurisdiction": {
"type": "string",
"title": "Stock exchange jurisdiction",
"description": "The 2-letter country code (ISO 3166-1) or the subdivision code (ISO 3166-2) for the jurisdiction under which the exchange, market or trading platform is regulated.",
"maxLength": 6,
"minLength": 2
},
"stockExchangeName": {
"type": "string",
"title": "Stock exchange name",
"description": "The name of the exchange, market or trading platform on which the security is traded. If the security is traded on a segment of the exchange, then the name SHOULD include both elements. For example, 'London Stock Exchange - MTF'."
},
"security": {
"type": "object",
"title": "Security",
"description": "Identifying information of the stock or other security.",
"required": [
"ticker"
],
"properties": {
"idScheme": {
"type": "string",
"title": "Identifier scheme",
"description": "The scheme under which the security has been issued a unique, persistent identifier. For accepted schemas, see the securitiesIdentifierSchemes codelist.",
"enum": [
"isin",
"figi",
"cusip",
"cins"
],
"codelist": "securitiesIdentifierSchemes.csv"
},
"id": {
"type": "string",
"title": "Identifier",
"description": "The unique identifier of the security as issued under the `idScheme`."
},
"ticker": {
"type": "string",
"title": "Stock ticker",
"description": "The stock ticker identifying this security on the named stock exchange."
}
}
}
}
}
}
}