Skip to content

Commit

Permalink
add licenseNumber, formats for UEI, SSN, and enable IMO format on v…
Browse files Browse the repository at this point in the history
…essels
  • Loading branch information
pudo committed Dec 6, 2024
1 parent 8aa80e6 commit 29a43e3
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 1 deletion.
5 changes: 5 additions & 0 deletions followthemoney/schema/LegalEntity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ LegalEntity:
label: Tax Number
type: identifier
description: "Tax identification number"
licenseNumber:
label: License Number
type: identifier
description: "For licenses granted to an entity"
vatCode:
label: "V.A.T. Identifier"
description: "(EU) VAT number"
Expand Down Expand Up @@ -134,6 +138,7 @@ LegalEntity:
label: "Unique Entity ID"
description: "UEI from SAM.gov"
type: identifier
format: uei
maxLength: 32
npiCode:
label: "NPI"
Expand Down
1 change: 1 addition & 0 deletions followthemoney/schema/Person.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ Person:
socialSecurityNumber:
label: Social security number
type: identifier
format: ssn
gender:
label: Gender
type: gender
Expand Down
1 change: 1 addition & 0 deletions followthemoney/schema/Vessel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Vessel:
imoNumber:
label: IMO Number
type: identifier
format: imo
maxLength: 16
crsNumber:
label: CRS Number
Expand Down
12 changes: 12 additions & 0 deletions js/src/defaultModel.json
Original file line number Diff line number Diff line change
Expand Up @@ -3569,6 +3569,15 @@
"qname": "LegalEntity:leiCode",
"type": "identifier"
},
"licenseNumber": {
"description": "For licenses granted to an entity",
"label": "License Number",
"matchable": true,
"maxLength": 64,
"name": "licenseNumber",
"qname": "LegalEntity:licenseNumber",
"type": "identifier"
},
"mainCountry": {
"description": "Primary country of this entity",
"label": "Country of origin",
Expand Down Expand Up @@ -3850,6 +3859,7 @@
},
"uniqueEntityId": {
"description": "UEI from SAM.gov",
"format": "uei",
"label": "Unique Entity ID",
"matchable": true,
"maxLength": 32,
Expand Down Expand Up @@ -5179,6 +5189,7 @@
"type": "string"
},
"socialSecurityNumber": {
"format": "ssn",
"label": "Social security number",
"matchable": true,
"maxLength": 64,
Expand Down Expand Up @@ -6975,6 +6986,7 @@
"type": "number"
},
"imoNumber": {
"format": "imo",
"label": "IMO Number",
"matchable": true,
"maxLength": 16,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"types-PyYAML",
"sqlalchemy2-stubs",
"banal >= 1.0.6, < 1.1.0",
"rigour >= 0.7.2, < 1.0.0",
"rigour >= 0.7.4, < 1.0.0",
"click >= 8.0, < 9.0.0",
"stringcase >= 1.2.0, < 2.0.0",
"requests >= 2.21.0, < 3.0.0",
Expand Down

0 comments on commit 29a43e3

Please sign in to comment.