Skip to content

Commit

Permalink
schema nibbles
Browse files Browse the repository at this point in the history
  • Loading branch information
pudo committed Dec 8, 2024
1 parent b69e43c commit b94d0dc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions followthemoney/schema/Airplane.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,7 @@ Airplane:
type: identifier
icaoCode: # A320
label: ICAO aircraft type designator
type: identifier
maxLength: 16
manufacturer: # Airbus
label: Manufacturer
1 change: 1 addition & 0 deletions followthemoney/schema/Organization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Organization:
label: CAGE
description: Commercial and Government Entity Code (CAGE)
type: identifier
maxLength: 16
permId:
label: PermID
description: LSEG/Refinitiv code for a company
Expand Down
1 change: 1 addition & 0 deletions followthemoney/schema/Sanction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Sanction:
# could also be used for authority-issued IDs in other usage scenarios.
label: "Program ID"
type: identifier
maxLength: 64
programUrl:
label: "Program URL"
type: url
Expand Down
7 changes: 4 additions & 3 deletions js/src/defaultModel.json
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,11 @@
"properties": {
"icaoCode": {
"label": "ICAO aircraft type designator",
"maxLength": 1024,
"matchable": true,
"maxLength": 16,
"name": "icaoCode",
"qname": "Airplane:icaoCode",
"type": "string"
"type": "identifier"
},
"manufacturer": {
"label": "Manufacturer",
Expand Down Expand Up @@ -4362,7 +4363,7 @@
"description": "Commercial and Government Entity Code (CAGE)",
"label": "CAGE",
"matchable": true,
"maxLength": 64,
"maxLength": 16,
"name": "cageCode",
"qname": "Organization:cageCode",
"type": "identifier"
Expand Down

0 comments on commit b94d0dc

Please sign in to comment.