Skip to content

Commit

Permalink
fix: WIP fallback indent
Browse files Browse the repository at this point in the history
  • Loading branch information
julianajlk committed Oct 18, 2023
1 parent e95df4b commit 930df5f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sanctions/apps/sanctions/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,19 @@ class SanctionsFallbackData(models.Model):
"""
Model used to record and process one row received from SanctionsFallbackMetadata.
Fields:
sanctions_fallback_metadata (ForeignKey): Foreign Key field with the CSV import Primary Key
sanctions_fallback_metadata (ForeignKey): Foreign Key field with the CSV import Primary Key
referenced in SanctionsFallbackMetadata.
source (CharField): Origin of where the data comes from, since the CSV consolidates
source (CharField): Origin of where the data comes from, since the CSV consolidates
export screening lists of the Departments of Commerce, State and the Treasury.
sdn_type (CharField): For a person with source 'Specially Designated Nationals (SDN) -
sdn_type (CharField): For a person with source 'Specially Designated Nationals (SDN) -
Treasury Department', the type is 'Individual'. Other options include 'Entity' and
'Vessel'. Other lists do not have a type.
names (TextField): A space separated list of all lowercased names and alt names with
names (TextField): A space separated list of all lowercased names and alt names with
punctuation also replaced by spaces.
addresses (TextField): A space separated list of all lowercased addresses combined into one
addresses (TextField): A space separated list of all lowercased addresses combined into one
string. There are records that don't have an address, but because city is a required field
in the Payment MFE, those records would not be matched in the API/fallback.
countries (CharField): A space separated list of all countries combined into one string.
countries (CharField): A space separated list of all countries combined into one string.
Countries are extracted from the addresses field and in some instances the ID field in their
2 letter abbreviation. There are records that don't have a country, but because country is a
required field in billing information form, those records would not be matched in the API/fallback.
Expand Down

0 comments on commit 930df5f

Please sign in to comment.