IndustryClassification
- Table
- Protobuf
Description: IndustryClassification holds the detailed industry classification for a business entity using the GICS (Global Industry Classification Standard) hierarchy. GICS is a four-tiered, hierarchical industry classification system. Capturing all four levels provides a complete and precise profile for risk assessment.
note
The protobuf file is the authoritative source of documentation. Please refer to the Protobuf tab when in doubt about field definitions, validation rules, or type specifications.
Field | Type | Description | Required | Validation |
---|---|---|---|---|
sector_code | string | The 2-digit GICS Sector code, representing the highest level of the hierarchy. Example: "45" for the "Information Technology" sector. | No | None |
sector_name | string | The human-readable name of the GICS Sector. Example: "Information Technology" | No | None |
industry_group_code | string | The 4-digit GICS Industry Group code. Example: "4510" for the "Software & Services" industry group. | No | None |
industry_group_name | string | The human-readable name of the GICS Industry Group. Example: "Software & Services" | No | None |
industry_code | string | The 6-digit GICS Industry code. Example: "451020" for the "IT Services" industry. | No | None |
industry_name | string | The human-readable name of the GICS Industry. Example: "IT Services" | No | None |
sub_industry_code | string | The 8-digit GICS Sub-Industry code, representing the most granular level. Example: "45102010" for the "IT Consulting & Other Services" sub-industry. | No | None |
sub_industry_name | string | The human-readable name of the GICS Sub-Industry. Example: "IT Consulting & Other Services" | No | None |
syntax = "proto3";
package meshtrade.compliance.client.v1;
option go_package = "github.com/meshtrade/api/go/compliance/client/v1;clientv1";
option java_package = "co.meshtrade.api.compliance.client.v1";
/*
IndustryClassification holds the detailed industry classification for a business entity
using the GICS (Global Industry Classification Standard) hierarchy.
GICS is a four-tiered, hierarchical industry classification system. Capturing all
four levels provides a complete and precise profile for risk assessment.
*/
message IndustryClassification {
/*
The 2-digit GICS Sector code, representing the highest level of the hierarchy.
Example: "45" for the "Information Technology" sector.
*/
string sector_code = 1;
/*
The human-readable name of the GICS Sector.
Example: "Information Technology"
*/
string sector_name = 2;
/*
The 4-digit GICS Industry Group code.
Example: "4510" for the "Software & Services" industry group.
*/
string industry_group_code = 3;
/*
The human-readable name of the GICS Industry Group.
Example: "Software & Services"
*/
string industry_group_name = 4;
/*
The 6-digit GICS Industry code.
Example: "451020" for the "IT Services" industry.
*/
string industry_code = 5;
/*
The human-readable name of the GICS Industry.
Example: "IT Services"
*/
string industry_name = 6;
/*
The 8-digit GICS Sub-Industry code, representing the most granular level.
Example: "45102010" for the "IT Consulting & Other Services" sub-industry.
*/
string sub_industry_code = 7;
/*
The human-readable name of the GICS Sub-Industry.
Example: "IT Consulting & Other Services"
*/
string sub_industry_name = 8;
}