followthemoney 1.3.6__py3-none-any.whl → 3.8.0__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.
- followthemoney/__init__.py +5 -3
- followthemoney/cli/__init__.py +17 -0
- followthemoney/cli/aggregate.py +56 -0
- followthemoney/cli/cli.py +88 -0
- followthemoney/cli/exports.py +121 -0
- followthemoney/cli/mapping.py +85 -0
- followthemoney/cli/sieve.py +67 -0
- followthemoney/cli/util.py +142 -0
- followthemoney/compare.py +132 -55
- followthemoney/exc.py +19 -6
- followthemoney/export/common.py +29 -0
- followthemoney/export/csv.py +82 -0
- followthemoney/export/excel.py +75 -0
- followthemoney/export/graph.py +79 -0
- followthemoney/export/neo4j.py +182 -0
- followthemoney/export/rdf.py +26 -0
- followthemoney/graph.py +308 -0
- followthemoney/helpers.py +212 -0
- followthemoney/mapping/__init__.py +1 -1
- followthemoney/mapping/csv.py +67 -35
- followthemoney/mapping/entity.py +116 -44
- followthemoney/mapping/property.py +90 -44
- followthemoney/mapping/query.py +27 -19
- followthemoney/mapping/source.py +15 -5
- followthemoney/mapping/sql.py +75 -61
- followthemoney/messages.py +13 -7
- followthemoney/model.py +108 -56
- followthemoney/namespace.py +119 -0
- followthemoney/offshore.py +48 -0
- followthemoney/ontology.py +77 -0
- followthemoney/property.py +204 -71
- followthemoney/proxy.py +455 -118
- followthemoney/rdf.py +9 -0
- followthemoney/schema/Address.yaml +78 -0
- followthemoney/schema/Airplane.yaml +17 -10
- followthemoney/schema/Analyzable.yaml +54 -0
- followthemoney/schema/Article.yaml +16 -0
- followthemoney/schema/Assessment.yaml +32 -0
- followthemoney/schema/Asset.yaml +10 -4
- followthemoney/schema/Associate.yaml +41 -0
- followthemoney/schema/Audio.yaml +24 -0
- followthemoney/schema/BankAccount.yaml +53 -9
- followthemoney/schema/Call.yaml +48 -0
- followthemoney/schema/CallForTenders.yaml +117 -0
- followthemoney/schema/Company.yaml +37 -12
- followthemoney/schema/Contract.yaml +41 -7
- followthemoney/schema/ContractAward.yaml +30 -11
- followthemoney/schema/CourtCase.yaml +16 -10
- followthemoney/schema/CourtCaseParty.yaml +17 -6
- followthemoney/schema/CryptoWallet.yaml +48 -0
- followthemoney/schema/Debt.yaml +37 -0
- followthemoney/schema/Directorship.yaml +17 -4
- followthemoney/schema/Document.yaml +72 -139
- followthemoney/schema/Documentation.yml +38 -0
- followthemoney/schema/EconomicActivity.yaml +32 -17
- followthemoney/schema/Email.yaml +76 -0
- followthemoney/schema/Employment.yaml +39 -0
- followthemoney/schema/Event.yaml +35 -3
- followthemoney/schema/Family.yaml +41 -0
- followthemoney/schema/Folder.yaml +13 -0
- followthemoney/schema/HyperText.yaml +21 -0
- followthemoney/schema/Identification.yaml +40 -0
- followthemoney/schema/Image.yaml +25 -0
- followthemoney/schema/Interest.yaml +3 -6
- followthemoney/schema/Interval.yaml +56 -5
- followthemoney/schema/LegalEntity.yaml +81 -20
- followthemoney/schema/License.yaml +7 -3
- followthemoney/schema/Membership.yaml +19 -4
- followthemoney/schema/Mention.yaml +54 -0
- followthemoney/schema/Message.yaml +73 -0
- followthemoney/schema/Note.yaml +23 -0
- followthemoney/schema/Occupancy.yaml +40 -0
- followthemoney/schema/Organization.yaml +38 -3
- followthemoney/schema/Ownership.yaml +16 -4
- followthemoney/schema/Package.yaml +17 -0
- followthemoney/schema/Page.yaml +43 -0
- followthemoney/schema/Pages.yaml +23 -0
- followthemoney/schema/Passport.yaml +15 -17
- followthemoney/schema/Payment.yaml +38 -7
- followthemoney/schema/Person.yaml +61 -5
- followthemoney/schema/PlainText.yaml +17 -0
- followthemoney/schema/Position.yaml +50 -0
- followthemoney/schema/Post.yaml +42 -0
- followthemoney/schema/Project.yaml +27 -0
- followthemoney/schema/ProjectParticipant.yaml +36 -0
- followthemoney/schema/PublicBody.yaml +14 -3
- followthemoney/schema/RealEstate.yaml +19 -3
- followthemoney/schema/Representation.yaml +17 -6
- followthemoney/schema/Sanction.yaml +44 -20
- followthemoney/schema/Security.yaml +59 -0
- followthemoney/schema/Similar.yaml +37 -0
- followthemoney/schema/Succession.yaml +36 -0
- followthemoney/schema/Table.yaml +32 -0
- followthemoney/schema/TaxRoll.yaml +27 -9
- followthemoney/schema/Thing.yaml +69 -13
- followthemoney/schema/Trip.yaml +42 -0
- followthemoney/schema/UnknownLink.yaml +17 -6
- followthemoney/schema/UserAccount.yaml +44 -0
- followthemoney/schema/Value.yaml +5 -1
- followthemoney/schema/Vehicle.yaml +25 -8
- followthemoney/schema/Vessel.yaml +18 -10
- followthemoney/schema/Video.yaml +20 -0
- followthemoney/schema/Workbook.yaml +18 -0
- followthemoney/schema.py +406 -135
- followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/ar/LC_MESSAGES/followthemoney.po +2900 -787
- followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/bs/LC_MESSAGES/followthemoney.po +2108 -520
- followthemoney/translations/de/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/de/LC_MESSAGES/followthemoney.po +2902 -782
- followthemoney/translations/es/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/es/LC_MESSAGES/followthemoney.po +2893 -779
- followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/fr/LC_MESSAGES/followthemoney.po +4362 -0
- followthemoney/translations/fr/followthemoney.po +3861 -0
- followthemoney/translations/messages.pot +3021 -725
- followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/nb/LC_MESSAGES/followthemoney.po +3778 -0
- followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/nl/LC_MESSAGES/followthemoney.po +3837 -0
- followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po +3784 -0
- followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/ru/LC_MESSAGES/followthemoney.po +2837 -539
- followthemoney/translations/ru/followthemoney.po +4221 -0
- followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/tr/LC_MESSAGES/followthemoney.po +2073 -491
- followthemoney/types/__init__.py +35 -17
- followthemoney/types/address.py +41 -21
- followthemoney/types/checksum.py +25 -0
- followthemoney/types/common.py +233 -88
- followthemoney/types/country.py +89 -56
- followthemoney/types/date.py +59 -76
- followthemoney/types/email.py +66 -35
- followthemoney/types/entity.py +66 -13
- followthemoney/types/gender.py +66 -0
- followthemoney/types/iban.py +47 -28
- followthemoney/types/identifier.py +49 -22
- followthemoney/types/ip.py +35 -21
- followthemoney/types/json.py +58 -0
- followthemoney/types/language.py +124 -37
- followthemoney/types/mimetype.py +44 -0
- followthemoney/types/name.py +56 -12
- followthemoney/types/number.py +30 -0
- followthemoney/types/phone.py +92 -34
- followthemoney/types/registry.py +52 -0
- followthemoney/types/string.py +43 -0
- followthemoney/types/topic.py +94 -0
- followthemoney/types/url.py +39 -17
- followthemoney/util.py +139 -45
- followthemoney-3.8.0.dist-info/METADATA +153 -0
- followthemoney-3.8.0.dist-info/RECORD +157 -0
- {followthemoney-1.3.6.dist-info → followthemoney-3.8.0.dist-info}/WHEEL +1 -2
- followthemoney-3.8.0.dist-info/entry_points.txt +17 -0
- followthemoney-1.3.6.dist-info/LICENSE.txt → followthemoney-3.8.0.dist-info/licenses/LICENSE +1 -1
- followthemoney/link.py +0 -75
- followthemoney/schema/Associate.yml +0 -19
- followthemoney/schema/Family.yml +0 -19
- followthemoney/schema/Land.yml +0 -9
- followthemoney/schema/Relationship.yaml +0 -26
- followthemoney/types/domain.py +0 -50
- followthemoney-1.3.6.dist-info/DESCRIPTION.rst +0 -3
- followthemoney-1.3.6.dist-info/METADATA +0 -39
- followthemoney-1.3.6.dist-info/RECORD +0 -108
- followthemoney-1.3.6.dist-info/entry_points.txt +0 -3
- followthemoney-1.3.6.dist-info/metadata.json +0 -1
- followthemoney-1.3.6.dist-info/namespace_packages.txt +0 -1
- followthemoney-1.3.6.dist-info/top_level.txt +0 -3
- ns/ontology.py +0 -128
- tests/types/test_addresses.py +0 -24
- tests/types/test_common.py +0 -27
- tests/types/test_countries.py +0 -21
- tests/types/test_dates.py +0 -72
- tests/types/test_domains.py +0 -23
- tests/types/test_emails.py +0 -30
- tests/types/test_entity.py +0 -16
- tests/types/test_iban.py +0 -109
- tests/types/test_identifiers.py +0 -25
- tests/types/test_ip.py +0 -26
- tests/types/test_languages.py +0 -20
- tests/types/test_names.py +0 -33
- tests/types/test_phones.py +0 -24
- tests/types/test_registry.py +0 -14
- tests/types/test_urls.py +0 -23
- {ns → followthemoney/export}/__init__.py +0 -0
- /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:
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
extends:
|
|
5
|
+
- Vehicle
|
|
6
|
+
description: >
|
|
7
|
+
An airplane, helicopter or other flying vehicle.
|
|
8
|
+
matchable: true
|
|
7
9
|
featured:
|
|
8
|
-
- type
|
|
10
|
+
- type # Airbus A320 214SL
|
|
9
11
|
- registrationNumber # A7-LAE
|
|
10
|
-
- country
|
|
11
|
-
- operator
|
|
12
|
-
- owner
|
|
12
|
+
- country # Qatar
|
|
13
|
+
- operator # Qatar Airways
|
|
14
|
+
- owner # Qatar Airways
|
|
15
|
+
caption:
|
|
16
|
+
- name
|
|
17
|
+
- registrationNumber
|
|
13
18
|
properties:
|
|
14
|
-
serialNumber:
|
|
19
|
+
serialNumber: # 36576093870
|
|
15
20
|
label: Serial Number
|
|
16
21
|
type: identifier
|
|
17
|
-
icaoCode:
|
|
22
|
+
icaoCode: # A320
|
|
18
23
|
label: ICAO aircraft type designator
|
|
19
|
-
|
|
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"
|
followthemoney/schema/Asset.yaml
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
Asset:
|
|
2
2
|
label: Asset
|
|
3
3
|
plural: Assets
|
|
4
|
-
|
|
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
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
|
3
|
-
plural: Bank
|
|
4
|
-
extends:
|
|
5
|
-
|
|
6
|
-
|
|
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
|
|
26
|
+
label: Bank name
|
|
13
27
|
accountNumber:
|
|
14
|
-
label: Account
|
|
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
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
31
|
-
|
|
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
|
-
|
|
77
|
-
label: "
|
|
78
|
-
description: "
|
|
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
|
|
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
|