Documentation
¶
Index ¶
Constants ¶
View Source
const ( SourceIdx = iota EntityNumberIdx TypeIdx ProgramsIdx NameIdx TitleIdx AddressesIdx FRNoticeIdx StartDateIdx EndDateIdx StandardOrderIdx LicenseRequirementIdx LicensePolicyIdx CallSignIdx VesselTypeIdx GrossTonnageIdx GrossRegisteredTonnageIdx VesselFlagIdx VesselOwnerIdx RemarksIdx SourceListURLIdx AltNamesIdx CitizenshipsIdx DatesOfBirthIdx NationalitiesIdx PlacesOfBirthIdx SourceInformationURLIdx IDsIdx )
This is the order of the columns in the CSL
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CSL ¶
type CSL struct { SSIs []*SSI // Sectoral Sanctions Identifications List (SSI) - Treasury Department ELs []*EL // Entity List – Bureau of Industry and Security }
CSL contains each record from the Consolidate Screening List, broken down by the record's original source
type EL ¶
type EL struct { // Name is the primary name of the entity Name string `json:"name"` // AlternateNames is a list of aliases associated with the entity AlternateNames []string `json:"alternateNames"` // Addresses is a list of known addresses associated with the entity Addresses []string `json:"addresses"` // StartDate is the effective date StartDate string `json:"startDate"` // LicenseRequirement specifies the license requirements that it imposes on each listed person LicenseRequirement string `json:"licenseRequirement"` // LicensePolicy is the policy with which BIS reviews the requirements set forth in License Requirements LicensePolicy string `json:"licensePolicy"` // FRNotice identifies the notice in the Federal Register FRNotice string `json:"FRNotice"` // SourceListURL is a link to the official SSI list SourceListURL string `json:"sourceListURL"` // SourceInfoURL is a link to information about the list SourceInfoURL string `json:"sourceInfoURL"` }
EL is the Entity List (EL) - Bureau of Industry and Security
type SSI ¶
type SSI struct { // EntityID (ent_num) is the unique record identifier/unique listing identifier EntityID string `json:"entityID"` // Type is the entity type (e.g. individual, vessel, aircraft, etc) Type string `json:"type"` // Programs is the list of sanctions program for which the entity is flagged Programs []string `json:"programs"` // Name is the entity's name (e.g. given name for individual, company name, etc.) Name string `json:"name"` // Addresses is a list of known addresses associated with the entity Addresses []string `json:"addresses"` // Remarks is used to provide additional details for the entity Remarks []string `json:"remarks"` // AlternateNames is a list of aliases associated with the entity AlternateNames []string `json:"alternateNames"` // IDsOnRecord is a list of the forms of identification on file for the entity IDsOnRecord []string `json:"ids"` // SourceListURL is a link to the official SSI list SourceListURL string `json:"sourceListURL"` // SourceInfoURL is a link to information about the list SourceInfoURL string `json:"sourceInfoURL"` }
SSI is the Sectoral Sanctions Identifications List - Treasury Department
Click to show internal directories.
Click to hide internal directories.