DOCS

Greenlight

Zonos Greenlight

Shipment이 compliant하고 export ready인지 verify합니다.

Zonos Greenlight는 international shipment에 대한 comprehensive export readiness assessment를 제공합니다. HS code coherence, country of origin validation, customs value verification, product restriction, trade regulation, denied party screening 6개 영역에서 AI-powered check를 실행합니다.

greenLightWorkflow mutation은 party creation, item creation, 모든 compliance check를 single GraphQL operation으로 bundle합니다. GreenLightWorkflowInput으로 실행 check를 제어하며 모든 check는 default enabled입니다. Response에는 quick decisioning용 high-level summary와 deeper review용 per-item 및 per-party detail이 포함됩니다.

How it works 

Single greenLightWorkflow operation에는 3개 mutation이 포함됩니다:

  1. partyCreateWorkflow — Origin 및 destination party 생성
  2. itemCreateWorkflow — Shipping item 생성
  3. greenLightWorkflow — 동일 operation에서 생성된 party 및 item에 selected compliance check 실행

GreenLightWorkflowInput은 individual check enable/disable용 6개 boolean toggle을 accept합니다. 모두 default true입니다. 불필요한 check는 omit하면 나머지는 independently 실행됩니다.

Checks

HS code coherence (hsCodeCoherence) — AI classification으로 declared HS code가 item description과 coherent한지 validate합니다. confidenceScore(higher = code confidence higher = risk lower) 및 chapter, heading, subheading level coherence를 보여주는 hsCodeProvidedValidation을 반환합니다.

Country of origin validation (countryOfOriginValidation) — Zonos Country of Origin AI-predicted origin 대비 declared manufacturing origin을 verify합니다. probabilityOfMisrepresentation 반환 — higher value는 declared origin inaccuracy 가능성이 더 높음을 나타냅니다.

Value validation (valueValidation) — Customs Value AI-estimated market value 대비 declared customs value를 compare합니다. Undervaluation catch용 probabilityOfUnderValuation을 반환합니다.

Restriction check (restrictionCheck) — Restrict으로 import, export, carrier-specific restriction list에 item을 screen합니다. category, summary, confidence, confidenceScore가 있는 restriction을 반환합니다.

Regulation check (regulationCheck) — Item에 applicable trade regulation 및 required certification을 식별합니다. certificateType, summary, confidenceScore가 있는 matched regulation을 반환합니다.

Denied party screening (deniedPartyScreening) — Screen으로 international denied party list에 shipment party를 screen합니다. action(NO_MATCHES, REVIEW, BLOCK) 및 name, location, overall score match detail을 반환합니다.

Interpreting results

Response에는 quick aggregate assessment용 2개 summary object가 포함됩니다:

  • itemRiskSummary — 모든 item risk를 rollup합니다. Undervaluation maxProbability, country of origin maxMisrepresentationProbability, HS code coherence maxMiscoherenceProbabilityworstOutcome, restriction 및 regulation aggregate count 및 worst-case score를 포함합니다.
  • partyScreeningSummary — Party screening result를 rollup합니다. Screened party 전체 overall actionmaxDeniedPartyMatchScore를 반환합니다.

Flag를 trigger한 item 또는 party를 정확히 식별해야 할 때 itemResultspartyScreenings에 per-item 및 per-party detail이 포함됩니다.

Probability score는 0.0~1.0 decimal로 반환됩니다. API에 universal LOW/MED/HIGH threshold는 없습니다 — 자체 traffic mix 및 risk tolerance에 맞게 cutoff를 calibrate하세요.

Use cases 

Customs brokers: Submission 전 모든 shipment에 Greenlight를 실행하여 misclassified item, incorrect origin declaration, undervalued goods를 식별합니다. Delay, penalty, audit 전 compliance issue를 catch합니다.

Package forwarders: Intake staff specialized trade knowledge 없이 incoming package export readiness를 assess합니다. Greenlight는 attention이 필요한 item과 reason을 정확히 surface하여 error를 줄이고 faster processing을 enable합니다.

Carriers and logistics providers: Pickup 또는 intake 시점 package screen을 위해 shipment acceptance workflow에 Greenlight를 integrate합니다. Network 진입 전 non-compliant shipment를 reject 또는 flag하여 customs hold 및 associated cost risk를 줄입니다.

Customs agencies: High misrepresentation risk score shipment에 focus하여 inspection을 prioritize합니다. Low-risk shipment는 fast-track하여 enforcement accuracy를 유지하면서 throughput을 improve합니다.

API guide 

아래 example은 6개 check를 모두 실행합니다. GreenLightWorkflowInput에서 toggle을 false로 설정하면 해당 check를 skip합니다.

1mutation GreenLightWorkflow(
2$partyInput: [PartyCreateWorkflowInput!]!
3$itemInput: [ItemCreateWorkflowInput!]!
4$greenLightInput: GreenLightWorkflowInput!
5) {
6 partyCreateWorkflow(input: $partyInput) {
7 id
8 type
9 location {
10 countryCode
11 }
12 }
13 itemCreateWorkflow(input: $itemInput) {
14 id
15 name
16 hsCode
17 countryOfOrigin
18 }
19 greenLightWorkflow(input: $greenLightInput) {
20 id
21 organizationId
22 createdAt
23 createdBy
24 itemRiskSummary {
25 itemCount
26 underValuation {
27 maxProbability
28 }
29 countryOfOriginMisrepresentation {
30 maxMisrepresentationProbability
31 }
32 hsCodeCoherence {
33 maxMiscoherenceProbability
34 worstOutcome
35 }
36 restriction {
37 matchedCount
38 affectedItemCount
39 worstCategory
40 worstConfidence
41 maxConfidenceScore
42 }
43 regulation {
44 matchedCount
45 affectedItemCount
46 maxConfidenceScore
47 }
48 }
49 partyScreeningSummary {
50 partyCount
51 action
52 maxDeniedPartyMatchScore
53 }
54 itemResults {
55 item {
56 id
57 name
58 hsCode
59 countryOfOrigin
60 amount
61 currencyCode
62 }
63 classification {
64 id
65 customsDescription
66 confidenceScore
67 hsCodeProvidedValidationScore
68 hsCodeProvidedValidation {
69 code
70 }
71 }
72 valueValidation {
73 id
74 probabilityOfUnderValuation
75 value
76 currency
77 }
78 countryOfOriginValidation {
79 id
80 probabilityOfMisrepresentation
81 countryOfOrigin
82 }
83 appliedRestrictions {
84 id
85 itemHsCode
86 restrictions {
87 id
88 category
89 confidence
90 confidenceScore
91 summary
92 url
93 imposingCountryCode
94 measureDirection
95 }
96 }
97 appliedRegulations {
98 id
99 itemHtsCode
100 certificateType
101 regulations {
102 id
103 referenceId
104 summary
105 confidenceScore
106 }
107 }
108 }
109 partyScreenings {
110 id
111 action
112 party {
113 id
114 type
115 }
116 matches {
117 scores {
118 overall
119 name
120 location
121 }
122 name
123 companyName
124 countryCode
125 deniedParty {
126 id
127 name
128 companyName
129 countryCode
130 source
131 sourceUrls
132 }
133 }
134 }
135 }
136}

Getting started 

Zonos Greenlight는 subscription이 필요합니다. Access, pricing, API integration에 대해 더 알아보려면 contact sales로 문의하세요.

GraphQL API ReferenceTypes, inputs, and operations used in this guide

이 페이지가 도움이 되었나요?