followthemoney 1.3.7__py3-none-any.whl → 3.8.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (186) hide show
  1. followthemoney/__init__.py +5 -3
  2. followthemoney/cli/__init__.py +17 -0
  3. followthemoney/cli/aggregate.py +56 -0
  4. followthemoney/cli/cli.py +88 -0
  5. followthemoney/cli/exports.py +121 -0
  6. followthemoney/cli/mapping.py +85 -0
  7. followthemoney/cli/sieve.py +67 -0
  8. followthemoney/cli/util.py +142 -0
  9. followthemoney/compare.py +130 -60
  10. followthemoney/exc.py +19 -6
  11. followthemoney/export/common.py +29 -0
  12. followthemoney/export/csv.py +82 -0
  13. followthemoney/export/excel.py +75 -0
  14. followthemoney/export/graph.py +79 -0
  15. followthemoney/export/neo4j.py +182 -0
  16. followthemoney/export/rdf.py +26 -0
  17. followthemoney/graph.py +308 -0
  18. followthemoney/helpers.py +212 -0
  19. followthemoney/mapping/__init__.py +1 -1
  20. followthemoney/mapping/csv.py +67 -35
  21. followthemoney/mapping/entity.py +116 -44
  22. followthemoney/mapping/property.py +90 -44
  23. followthemoney/mapping/query.py +27 -19
  24. followthemoney/mapping/source.py +15 -5
  25. followthemoney/mapping/sql.py +75 -61
  26. followthemoney/messages.py +13 -7
  27. followthemoney/model.py +108 -56
  28. followthemoney/namespace.py +119 -0
  29. followthemoney/offshore.py +48 -0
  30. followthemoney/ontology.py +77 -0
  31. followthemoney/property.py +204 -71
  32. followthemoney/proxy.py +455 -118
  33. followthemoney/rdf.py +9 -0
  34. followthemoney/schema/Address.yaml +78 -0
  35. followthemoney/schema/Airplane.yaml +17 -10
  36. followthemoney/schema/Analyzable.yaml +54 -0
  37. followthemoney/schema/Article.yaml +16 -0
  38. followthemoney/schema/Assessment.yaml +32 -0
  39. followthemoney/schema/Asset.yaml +10 -4
  40. followthemoney/schema/Associate.yaml +41 -0
  41. followthemoney/schema/Audio.yaml +24 -0
  42. followthemoney/schema/BankAccount.yaml +53 -9
  43. followthemoney/schema/Call.yaml +48 -0
  44. followthemoney/schema/CallForTenders.yaml +117 -0
  45. followthemoney/schema/Company.yaml +37 -12
  46. followthemoney/schema/Contract.yaml +41 -7
  47. followthemoney/schema/ContractAward.yaml +30 -11
  48. followthemoney/schema/CourtCase.yaml +16 -10
  49. followthemoney/schema/CourtCaseParty.yaml +17 -6
  50. followthemoney/schema/CryptoWallet.yaml +48 -0
  51. followthemoney/schema/Debt.yaml +37 -0
  52. followthemoney/schema/Directorship.yaml +17 -4
  53. followthemoney/schema/Document.yaml +72 -139
  54. followthemoney/schema/Documentation.yml +38 -0
  55. followthemoney/schema/EconomicActivity.yaml +32 -17
  56. followthemoney/schema/Email.yaml +76 -0
  57. followthemoney/schema/Employment.yaml +39 -0
  58. followthemoney/schema/Event.yaml +35 -3
  59. followthemoney/schema/Family.yaml +41 -0
  60. followthemoney/schema/Folder.yaml +13 -0
  61. followthemoney/schema/HyperText.yaml +21 -0
  62. followthemoney/schema/Identification.yaml +40 -0
  63. followthemoney/schema/Image.yaml +25 -0
  64. followthemoney/schema/Interest.yaml +3 -6
  65. followthemoney/schema/Interval.yaml +56 -5
  66. followthemoney/schema/LegalEntity.yaml +81 -20
  67. followthemoney/schema/License.yaml +7 -3
  68. followthemoney/schema/Membership.yaml +19 -4
  69. followthemoney/schema/Mention.yaml +54 -0
  70. followthemoney/schema/Message.yaml +78 -0
  71. followthemoney/schema/Note.yaml +23 -0
  72. followthemoney/schema/Occupancy.yaml +44 -0
  73. followthemoney/schema/Organization.yaml +38 -3
  74. followthemoney/schema/Ownership.yaml +16 -4
  75. followthemoney/schema/Package.yaml +17 -0
  76. followthemoney/schema/Page.yaml +43 -0
  77. followthemoney/schema/Pages.yaml +23 -0
  78. followthemoney/schema/Passport.yaml +16 -17
  79. followthemoney/schema/Payment.yaml +38 -7
  80. followthemoney/schema/Person.yaml +61 -5
  81. followthemoney/schema/PlainText.yaml +17 -0
  82. followthemoney/schema/Position.yaml +50 -0
  83. followthemoney/schema/Post.yaml +42 -0
  84. followthemoney/schema/Project.yaml +27 -0
  85. followthemoney/schema/ProjectParticipant.yaml +36 -0
  86. followthemoney/schema/PublicBody.yaml +14 -3
  87. followthemoney/schema/RealEstate.yaml +19 -3
  88. followthemoney/schema/Representation.yaml +17 -6
  89. followthemoney/schema/Sanction.yaml +45 -21
  90. followthemoney/schema/Security.yaml +59 -0
  91. followthemoney/schema/Similar.yaml +37 -0
  92. followthemoney/schema/Succession.yaml +36 -0
  93. followthemoney/schema/Table.yaml +32 -0
  94. followthemoney/schema/TaxRoll.yaml +27 -9
  95. followthemoney/schema/Thing.yaml +69 -13
  96. followthemoney/schema/Trip.yaml +42 -0
  97. followthemoney/schema/UnknownLink.yaml +17 -6
  98. followthemoney/schema/UserAccount.yaml +44 -0
  99. followthemoney/schema/Value.yaml +5 -1
  100. followthemoney/schema/Vehicle.yaml +25 -8
  101. followthemoney/schema/Vessel.yaml +18 -10
  102. followthemoney/schema/Video.yaml +20 -0
  103. followthemoney/schema/Workbook.yaml +18 -0
  104. followthemoney/schema.py +436 -135
  105. followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo +0 -0
  106. followthemoney/translations/ar/LC_MESSAGES/followthemoney.po +2900 -787
  107. followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo +0 -0
  108. followthemoney/translations/bs/LC_MESSAGES/followthemoney.po +2108 -520
  109. followthemoney/translations/de/LC_MESSAGES/followthemoney.mo +0 -0
  110. followthemoney/translations/de/LC_MESSAGES/followthemoney.po +2902 -782
  111. followthemoney/translations/es/LC_MESSAGES/followthemoney.mo +0 -0
  112. followthemoney/translations/es/LC_MESSAGES/followthemoney.po +2893 -779
  113. followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo +0 -0
  114. followthemoney/translations/fr/LC_MESSAGES/followthemoney.po +4362 -0
  115. followthemoney/translations/fr/followthemoney.po +3861 -0
  116. followthemoney/translations/messages.pot +3021 -725
  117. followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo +0 -0
  118. followthemoney/translations/nb/LC_MESSAGES/followthemoney.po +3778 -0
  119. followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo +0 -0
  120. followthemoney/translations/nl/LC_MESSAGES/followthemoney.po +3837 -0
  121. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo +0 -0
  122. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po +3784 -0
  123. followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo +0 -0
  124. followthemoney/translations/ru/LC_MESSAGES/followthemoney.po +2837 -539
  125. followthemoney/translations/ru/followthemoney.po +4221 -0
  126. followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo +0 -0
  127. followthemoney/translations/tr/LC_MESSAGES/followthemoney.po +2073 -491
  128. followthemoney/types/__init__.py +35 -17
  129. followthemoney/types/address.py +50 -21
  130. followthemoney/types/checksum.py +25 -0
  131. followthemoney/types/common.py +233 -88
  132. followthemoney/types/country.py +50 -56
  133. followthemoney/types/date.py +59 -76
  134. followthemoney/types/email.py +66 -35
  135. followthemoney/types/entity.py +66 -13
  136. followthemoney/types/gender.py +66 -0
  137. followthemoney/types/iban.py +47 -28
  138. followthemoney/types/identifier.py +49 -22
  139. followthemoney/types/ip.py +35 -21
  140. followthemoney/types/json.py +58 -0
  141. followthemoney/types/language.py +124 -37
  142. followthemoney/types/mimetype.py +44 -0
  143. followthemoney/types/name.py +56 -12
  144. followthemoney/types/number.py +30 -0
  145. followthemoney/types/phone.py +92 -34
  146. followthemoney/types/registry.py +52 -0
  147. followthemoney/types/string.py +43 -0
  148. followthemoney/types/topic.py +94 -0
  149. followthemoney/types/url.py +39 -17
  150. followthemoney/util.py +139 -45
  151. followthemoney-3.8.1.dist-info/METADATA +153 -0
  152. followthemoney-3.8.1.dist-info/RECORD +157 -0
  153. {followthemoney-1.3.7.dist-info → followthemoney-3.8.1.dist-info}/WHEEL +1 -2
  154. followthemoney-3.8.1.dist-info/entry_points.txt +17 -0
  155. followthemoney-1.3.7.dist-info/LICENSE.txt → followthemoney-3.8.1.dist-info/licenses/LICENSE +1 -1
  156. followthemoney/link.py +0 -75
  157. followthemoney/schema/Associate.yml +0 -19
  158. followthemoney/schema/Family.yml +0 -19
  159. followthemoney/schema/Land.yml +0 -9
  160. followthemoney/schema/Relationship.yaml +0 -26
  161. followthemoney/types/domain.py +0 -50
  162. followthemoney-1.3.7.dist-info/DESCRIPTION.rst +0 -3
  163. followthemoney-1.3.7.dist-info/METADATA +0 -39
  164. followthemoney-1.3.7.dist-info/RECORD +0 -108
  165. followthemoney-1.3.7.dist-info/entry_points.txt +0 -3
  166. followthemoney-1.3.7.dist-info/metadata.json +0 -1
  167. followthemoney-1.3.7.dist-info/namespace_packages.txt +0 -1
  168. followthemoney-1.3.7.dist-info/top_level.txt +0 -3
  169. ns/ontology.py +0 -128
  170. tests/types/test_addresses.py +0 -24
  171. tests/types/test_common.py +0 -32
  172. tests/types/test_countries.py +0 -27
  173. tests/types/test_dates.py +0 -73
  174. tests/types/test_domains.py +0 -23
  175. tests/types/test_emails.py +0 -32
  176. tests/types/test_entity.py +0 -19
  177. tests/types/test_iban.py +0 -109
  178. tests/types/test_identifiers.py +0 -27
  179. tests/types/test_ip.py +0 -29
  180. tests/types/test_languages.py +0 -23
  181. tests/types/test_names.py +0 -33
  182. tests/types/test_phones.py +0 -24
  183. tests/types/test_registry.py +0 -14
  184. tests/types/test_urls.py +0 -23
  185. {ns → followthemoney/export}/__init__.py +0 -0
  186. /tests/types/__init__.py → /followthemoney/py.typed +0 -0
@@ -0,0 +1,78 @@
1
+ # OSM: https://wiki.openstreetmap.org/wiki/Proposed_features/House_numbers/Karlsruhe_Schema#Tags
2
+ # Seen in the wild:
3
+ #
4
+ # - full
5
+ # - remarks / note
6
+ # - c/o
7
+ # - location
8
+ # - unknown
9
+ # - address-details / street
10
+ # - house number / house name
11
+ # - address1 / address2 / address3
12
+ # - city
13
+ # - po box
14
+ # - zip code / postcode / postal_code
15
+ # - region
16
+ # - area / state / province
17
+ # - country
18
+ Address:
19
+ label: Address
20
+ plural: Addresses
21
+ extends:
22
+ - Thing
23
+ description: >
24
+ A location associated with an entity.
25
+ matchable: true
26
+ generated: false
27
+ featured:
28
+ - full
29
+ - city
30
+ - street
31
+ - country
32
+ caption:
33
+ - full
34
+ - summary
35
+ - city
36
+ - remarks
37
+ properties:
38
+ full:
39
+ label: "Full address"
40
+ type: address
41
+ remarks:
42
+ label: "Remarks"
43
+ description: "Handling instructions, like 'care of'."
44
+ postOfficeBox:
45
+ label: "PO Box"
46
+ description: "A mailbox identifier at the post office"
47
+ street:
48
+ label: "Street address"
49
+ street2:
50
+ label: "Street address (ctd.)"
51
+ city:
52
+ label: "City"
53
+ description: "City, town, village or other locality"
54
+ postalCode:
55
+ label: "Postal code"
56
+ description: "Zip code or postcode."
57
+ maxLength: 16
58
+ region:
59
+ label: "Region"
60
+ description: "Also province or area."
61
+ state:
62
+ label: "State"
63
+ description: "State or federal unit."
64
+ latitude:
65
+ label: "Latitude"
66
+ type: "number"
67
+ longitude:
68
+ label: "Longitude"
69
+ type: "number"
70
+ country:
71
+ label: "Country"
72
+ type: "country"
73
+ osmId:
74
+ label: "OpenStreetmap Place ID"
75
+ type: "identifier"
76
+ googlePlaceId:
77
+ label: "Google Places ID"
78
+ type: "identifier"
@@ -1,20 +1,27 @@
1
1
  Airplane:
2
2
  label: Airplane
3
3
  plural: Airplanes
4
- extends: Vehicle
5
- icon: fa-plane
6
- matchable: false
4
+ extends:
5
+ - Vehicle
6
+ description: >
7
+ An airplane, helicopter or other flying vehicle.
8
+ matchable: true
7
9
  featured:
8
- - type # Airbus A320 214SL
10
+ - type # Airbus A320 214SL
9
11
  - registrationNumber # A7-LAE
10
- - country # Qatar
11
- - operator # Qatar Airways
12
- - owner # Qatar Airways
12
+ - country # Qatar
13
+ - operator # Qatar Airways
14
+ - owner # Qatar Airways
15
+ caption:
16
+ - name
17
+ - registrationNumber
13
18
  properties:
14
- serialNumber: # 36576093870
19
+ serialNumber: # 36576093870
15
20
  label: Serial Number
16
21
  type: identifier
17
- icaoCode: # A320
22
+ icaoCode: # A320
18
23
  label: ICAO aircraft type designator
19
- manufacturer: # Airbus
24
+ type: identifier
25
+ maxLength: 16
26
+ manufacturer: # Airbus
20
27
  label: Manufacturer
@@ -0,0 +1,54 @@
1
+ Analyzable:
2
+ label: Analyzable
3
+ plural: Analyzables
4
+ description: >
5
+ An entity suitable for being processed via named-entity recognition.
6
+ abstract: true
7
+ matchable: false
8
+ generated: true
9
+ properties:
10
+ detectedLanguage:
11
+ label: "Detected language"
12
+ matchable: false
13
+ hidden: true
14
+ type: language
15
+ detectedCountry:
16
+ label: "Detected country"
17
+ matchable: false
18
+ hidden: true
19
+ type: country
20
+ namesMentioned:
21
+ label: "Detected names"
22
+ hidden: true
23
+ type: name
24
+ peopleMentioned:
25
+ label: "Detected people"
26
+ hidden: true
27
+ type: name
28
+ companiesMentioned:
29
+ label: "Detected companies"
30
+ hidden: true
31
+ type: name
32
+ ibanMentioned:
33
+ label: "Detected IBANs"
34
+ hidden: true
35
+ # type: identifier
36
+ # format: iban
37
+ type: iban
38
+ ipMentioned:
39
+ label: "Detected IP addresses"
40
+ hidden: true
41
+ type: ip
42
+ locationMentioned:
43
+ label: "Detected locations"
44
+ hidden: true
45
+ matchable: false
46
+ type: address
47
+ phoneMentioned:
48
+ label: "Detected phones"
49
+ hidden: true
50
+ type: phone
51
+ emailMentioned:
52
+ label: "Detected e-mail addresses"
53
+ hidden: true
54
+ type: email
@@ -0,0 +1,16 @@
1
+ Article:
2
+ extends:
3
+ - Document
4
+ label: Article
5
+ plural: Articles
6
+ description: >
7
+ A piece of media reporting about a subject.
8
+ matchable: false
9
+ generated: true
10
+ featured:
11
+ - title
12
+ - author
13
+ - publishedAt
14
+ caption:
15
+ - title
16
+ - fileName
@@ -0,0 +1,32 @@
1
+ Assessment:
2
+ # This is overly specific yet not useful. Should we phase it out?
3
+ label: Assessment
4
+ plural: Assessments
5
+ extends:
6
+ - Thing
7
+ matchable: false
8
+ featured:
9
+ - name
10
+ - publishDate
11
+ - author
12
+ caption:
13
+ - name
14
+ required:
15
+ - name
16
+ temporalExtent:
17
+ start:
18
+ - publishDate
19
+ properties:
20
+ publishDate:
21
+ label: "Date of publishing"
22
+ type: date
23
+ assessmentId:
24
+ label: "Assessment ID"
25
+ author:
26
+ label: "Author"
27
+ plural: "Authors"
28
+ type: entity
29
+ range: LegalEntity
30
+ reverse:
31
+ name: authoredAssessments
32
+ label: "Assessments authored"
@@ -1,9 +1,15 @@
1
1
  Asset:
2
2
  label: Asset
3
3
  plural: Assets
4
- extends:
4
+ description: >
5
+ A piece of property which can be owned and assigned a monetary value.
6
+ extends:
5
7
  - Thing
6
8
  - Value
7
- icon: fa-shopping-bag
8
- abstract: true
9
- matchable: false
9
+ featured:
10
+ - name
11
+ - amount
12
+ caption:
13
+ - name
14
+ abstract: false
15
+ matchable: false
@@ -0,0 +1,41 @@
1
+ Associate:
2
+ label: "Associate"
3
+ plural: "Associates"
4
+ description: "Non-family association between two people"
5
+ extends:
6
+ - Interval
7
+ matchable: false
8
+ featured:
9
+ - person
10
+ - associate
11
+ - relationship
12
+ required:
13
+ - person
14
+ - associate
15
+ edge:
16
+ source: person
17
+ label: "associated with"
18
+ target: associate
19
+ directed: false
20
+ caption:
21
+ - relationship
22
+ properties:
23
+ person:
24
+ label: "Person"
25
+ description: "The subject of the association."
26
+ type: entity
27
+ range: Person
28
+ reverse:
29
+ name: associates
30
+ label: "Associates"
31
+ associate:
32
+ label: "Associate"
33
+ description: "An associate of the subject person."
34
+ type: entity
35
+ range: Person
36
+ reverse:
37
+ name: associations
38
+ label: "Associations"
39
+ relationship:
40
+ label: "Relationship"
41
+ description: "Nature of the association"
@@ -0,0 +1,24 @@
1
+ Audio:
2
+ extends:
3
+ - Document
4
+ label: Audio
5
+ plural: Audio files
6
+ matchable: false
7
+ generated: true
8
+ featured:
9
+ - title
10
+ - fileName
11
+ - mimeType
12
+ - parent
13
+ caption:
14
+ - fileName
15
+ - title
16
+ properties:
17
+ duration:
18
+ label: "Duration"
19
+ description: "Duration of the audio in ms"
20
+ type: number
21
+ samplingRate:
22
+ label: "Sampling Rate"
23
+ description: "Sampling rate of the audio in Hz"
24
+ type: number
@@ -1,26 +1,70 @@
1
1
  BankAccount:
2
- label: Bank Account
3
- plural: Bank Accounts
4
- extends: Asset
5
- icon: fa-bank
6
- matchable: false
2
+ label: Bank account
3
+ plural: Bank accounts
4
+ extends:
5
+ - Asset
6
+ description: >
7
+ An account held at a bank and controlled by an owner. This may also be used
8
+ to describe more complex arrangements like correspondent bank settlement accounts.
9
+ matchable: true
7
10
  featured:
8
11
  - accountNumber
9
12
  - bankName
13
+ # required:
14
+ # - accountNumber
15
+ caption:
16
+ - name
17
+ - iban
18
+ - accountNumber
19
+ temporalExtent:
20
+ start:
21
+ - openingDate
22
+ end:
23
+ - closingDate
10
24
  properties:
11
25
  bankName:
12
- label: Bank Name
26
+ label: Bank name
13
27
  accountNumber:
14
- label: Account Number
28
+ label: Account number
15
29
  type: identifier
30
+ maxLength: 64
16
31
  iban:
17
32
  label: IBAN
33
+ # type: identifier
34
+ # format: iban
18
35
  type: iban
36
+ maxLength: 64
19
37
  bic:
20
38
  label: Bank Identifier Code
39
+ type: identifier
40
+ format: bic
41
+ maxLength: 16
42
+ bank:
43
+ label: Bank
44
+ type: entity
45
+ range: Organization
46
+ reverse:
47
+ name: bankAccounts
48
+ label: "Bank accounts"
21
49
  accountType:
22
- label: Account Type
50
+ label: Account type
51
+ openingDate:
52
+ label: Opening date
53
+ type: date
54
+ closingDate:
55
+ label: Closing date
56
+ type: date
23
57
  balance:
24
58
  label: Balance
59
+ type: number
60
+ balanceDate:
61
+ label: Balance date
62
+ type: date
63
+ maxBalance:
64
+ label: Maximum balance
65
+ type: number
66
+ maxBalanceDate:
67
+ label: Maximum balance date
68
+ type: date
25
69
  bankAddress:
26
- label: Bank Address
70
+ label: Bank address
@@ -0,0 +1,48 @@
1
+ Call:
2
+ extends:
3
+ - Interval
4
+ label: "Call"
5
+ plural: "Calls"
6
+ matchable: false
7
+ generated: true
8
+ featured:
9
+ - callerNumber
10
+ - caller
11
+ - receiverNumber
12
+ - receiver
13
+ - date
14
+ caption:
15
+ - callerNumber
16
+ - receiverNumber
17
+ properties:
18
+ caller:
19
+ label: "Caller"
20
+ type: entity
21
+ range: LegalEntity
22
+ reverse:
23
+ name: callsMade
24
+ label: "Calls made"
25
+ callerNumber:
26
+ label: "Caller's Number"
27
+ type: phone
28
+ receiver:
29
+ label: "Receiver"
30
+ type: entity
31
+ range: LegalEntity
32
+ reverse:
33
+ name: callsReceived
34
+ label: "Calls received"
35
+ receiverNumber:
36
+ label: "Receiver's Number"
37
+ type: phone
38
+ duration:
39
+ label: "Duration"
40
+ descriptuon: "Call Duration in seconds"
41
+ type: number
42
+ # recording:
43
+ # label: "Recording of the call"
44
+ # type: entity
45
+ # range: Audio
46
+ # reverse:
47
+ # name: "recordedCall"
48
+ # label: "Recording of"
@@ -0,0 +1,117 @@
1
+ CallForTenders:
2
+ label: "Call for tenders"
3
+ plural: "Calls for tenders"
4
+ description: >
5
+ A public appeal issued by an authority, possibly on behalf of another,
6
+ for buying a specific work, supply or service
7
+ extends:
8
+ - Thing
9
+ - Interval
10
+ matchable: false
11
+ required:
12
+ - title
13
+ - authority
14
+ featured:
15
+ - title
16
+ - authority
17
+ caption:
18
+ - title
19
+ properties:
20
+ callId:
21
+ label: "CfT unique id"
22
+ type: identifier
23
+ title:
24
+ label: "Title"
25
+ authority:
26
+ label: "Name of contracting authority"
27
+ reverse:
28
+ name: callForTenders
29
+ label: "Call For Tenders"
30
+ type: entity
31
+ range: LegalEntity
32
+ authorityReferenceId:
33
+ label: "Contracting authority reference ID"
34
+ type: identifier
35
+ onBehalfOf:
36
+ label: "Published on behalf of"
37
+ reverse:
38
+ name: delegatedCallForTenders
39
+ label: "Delegated call for tenders"
40
+ type: entity
41
+ range: LegalEntity
42
+ publicationDate:
43
+ label: "Date of publication/invitation"
44
+ type: date
45
+ evaluationMechanism:
46
+ label: "Evaluation mechanism"
47
+ procurementType:
48
+ label: "Procurement type"
49
+ directive:
50
+ label: "Directive"
51
+ procedure:
52
+ label: "Procedure"
53
+ involvesOutcome:
54
+ label: "Call for tenders result"
55
+ description: "The nature of the contractual agreement that will result from this CfT"
56
+ cpvCode:
57
+ label: "CPV code"
58
+ description: "Common Procurement Vocabulary (CPV)"
59
+ type: identifier
60
+ reverseAuctionsIncluded:
61
+ label: "Inclusion of e-Auctions"
62
+ # cf. https://mita.gov.mt/2021/10/05/reverse-bidding-for-data-connectivity-across-the-public-service-a-first-for-malta/
63
+ nutsCode:
64
+ label: "NUTS code"
65
+ description: "Nomenclature of Territorial Units for Statistics (NUTS)"
66
+ type: identifier
67
+ relationToThreshold:
68
+ label: "Above or below threshold"
69
+ paymentOptions:
70
+ label: "Payment options"
71
+ submissionDeadline:
72
+ label: "Submission deadline"
73
+ type: date
74
+ clarificationDeadline:
75
+ label: "End of clarification period"
76
+ type: date
77
+ awardedInLots:
78
+ label: "Contract awarded in Lots"
79
+ numberOfLots:
80
+ label: "Number of lots"
81
+ type: number
82
+ lotsNames:
83
+ label: "Lots names"
84
+ tendersForLots:
85
+ # What does this mean?
86
+ label: "Tenders for lots"
87
+ maximumNumberOfLots:
88
+ label: "Maximum number of lots"
89
+ type: number
90
+ euFunding:
91
+ label: "EU funding"
92
+ multipleTenders:
93
+ label: "Multiple tenders will be accepted"
94
+ tedUrl:
95
+ label: "TED link for published notices"
96
+ type: url
97
+ fallsUnderGPPScope:
98
+ label: "Does this call fall under the scope of GPP?"
99
+ description: "European Green Public Procurement (GPP) or green purchasing."
100
+ certificationCheck:
101
+ label: "Certification check"
102
+ awardingDate:
103
+ label: "Date of awarding"
104
+ type: date
105
+ contractNoticeDate:
106
+ label: "Contract notice date"
107
+ type: date
108
+ awardNoticeDate:
109
+ label: "Award Notice Date"
110
+ type: date
111
+ tenderers:
112
+ label: "Tenderers"
113
+ reverse:
114
+ name: callForTenders
115
+ label: "Tender"
116
+ type: entity
117
+ range: LegalEntity
@@ -1,16 +1,23 @@
1
1
  Company:
2
2
  label: Company
3
3
  plural: Companies
4
- icon: fa-industry
4
+ description: >
5
+ A corporation, usually for profit. Does not distinguish between private and public
6
+ companies, and can also be used to model more specific constructs like trusts and
7
+ funds. Companies are assets, so they can be owned by other legal entities.
5
8
  matchable: true
6
9
  extends:
7
10
  - Organization
8
11
  - Asset
9
12
  featured:
10
13
  - name
11
- - registrationNumber
12
14
  - jurisdiction
15
+ - registrationNumber
13
16
  - incorporationDate
17
+ required:
18
+ - name
19
+ caption:
20
+ - name
14
21
  properties:
15
22
  jurisdiction:
16
23
  label: Jurisdiction
@@ -24,14 +31,12 @@ Company:
24
31
  label: "VOEN"
25
32
  description: "Azerbaijan taxpayer ID"
26
33
  type: identifier
34
+ maxLength: 32
27
35
  coatoCode:
28
36
  label: "COATO / SOATO / OKATO"
29
37
  type: identifier
30
- descrption: "Soviet classifier for territories, regions, districts, villages. Aka. SOATO and same as OKATO"
31
- vatCode:
32
- label: "VAT Identifier"
33
- description: "(EU) VAT number"
34
- type: identifier
38
+ description: "Soviet classifier for territories, regions, districts, villages. Aka. SOATO and same as OKATO"
39
+ matchable: false
35
40
  irsCode:
36
41
  label: "IRS Number"
37
42
  description: "US tax ID"
@@ -39,6 +44,7 @@ Company:
39
44
  ipoCode:
40
45
  label: "IPO"
41
46
  type: identifier
47
+ matchable: false
42
48
  cikCode:
43
49
  label: "SEC Central Index Key"
44
50
  description: "US SEC Central Index Key"
@@ -51,36 +57,55 @@ Company:
51
57
  label: "MBS"
52
58
  type: identifier
53
59
  ibcRuc:
60
+ # TODO: Remove this. It's a column name in the ICIJ-released OffshoreLeaks datasets
61
+ # but seems to just mean "company number".
62
+ deprecated: true
54
63
  label: "ibcRUC"
55
64
  type: identifier
56
65
  caemCode:
57
66
  label: "COD CAEM"
58
67
  description: "(RO) What kind of activity a legal entity is allowed to develop"
68
+ matchable: false
59
69
  kppCode:
60
70
  label: "KPP"
61
71
  description: "(RU, КПП) in addition to INN for orgs; reason for registration at FNS"
62
72
  type: identifier
73
+ matchable: false
63
74
  okvedCode:
64
75
  label: "OKVED(2) Classifier"
65
76
  description: "(RU, ОКВЭД) Economical activity classifier. OKVED2 is the same but newer"
77
+ matchable: false
66
78
  okopfCode:
67
79
  label: "OKOPF"
68
80
  description: "(RU, ОКОПФ) What kind of business entity"
81
+ matchable: false
69
82
  fnsCode:
70
83
  label: "Federal tax service code"
71
84
  description: "(RU, ФНС) Federal Tax Service related info"
72
85
  type: identifier
86
+ matchable: false
73
87
  fssCode:
74
88
  label: "FSS"
75
89
  description: "(RU, ФСС) Social Security"
76
- ogrnCode:
77
- label: "OGRN"
78
- description: "Major State Registration Number"
79
- type: identifier
90
+ bikCode:
91
+ label: "BIK"
92
+ description: "Russian bank account code"
80
93
  pfrNumber:
81
94
  label: "PFR Number"
82
95
  description: "(RU, ПФР) Pension Fund Registration number. AAA-BBB-CCCCCC, where AAA is organisation region, BBB is district, CCCCCC number at a specific branch"
83
96
  type: identifier
84
97
  oksmCode:
85
98
  label: OKSM
86
- description: "Russian (ОКСМ) countries classifer"
99
+ description: "Russian (ОКСМ) countries classifier"
100
+ matchable: false
101
+ isinCode:
102
+ label: ISIN
103
+ description: International Securities Identification Number
104
+ type: identifier
105
+ ticker:
106
+ label: Stock ticker symbol
107
+ type: identifier
108
+ ricCode:
109
+ label: Reuters Instrument Code
110
+ type: identifier
111
+ maxLength: 16