運作方式
單一 greenLightWorkflow 操作包含三個 mutations:
partyCreateWorkflow— 建立原產國和目的地訂方itemCreateWorkflow— 建立要運送的商品greenLightWorkflow— 針對在同一操作中建立的訂方和商品執行選定的合規檢查
GreenLightWorkflowInput 接受六個布林值開關來啟用或停用個別檢查。全部預設為 true。省略您不需要的任何檢查——其餘檢查將獨立運行。
檢查
HS 代碼一致性 (hsCodeCoherence) — 使用 AI 分類來驗證所聲稱的 HS 代碼是否與商品描述一致。返回 confidenceScore(越高 = 對代碼越有信心 = 風險越低)和 hsCodeProvidedValidation,顯示章節、標題和副標題級別的一致性。
原產國驗證 (countryOfOriginValidation) — 透過 Zonos 原產國 針對 AI 預測的原產國驗證所聲稱的製造原產地。返回 probabilityOfMisrepresentation——較高的值表示所聲稱的原產地更可能不準確。
價值驗證 (valueValidation) — 透過 海關價值 將所聲稱的海關價值與 AI 估計的市場價值進行比較。返回 probabilityOfUnderValuation 以捕捉低估。
限制檢查 (restrictionCheck) — 針對進口、出口和運營商特定的限制清單篩選商品,透過 Restrict。返回帶有 category、summary、confidence 和 confidenceScore 的限制。
法規檢查 (regulationCheck) — 確定適用於商品的貿易法規和所需的認證。返回與 certificateType、summary 和 confidenceScore 相符的法規。
禁運單位篩選 (deniedPartyScreening) — 針對國際禁運單位清單篩選貨物訂方,透過 Screen。返回 action(NO_MATCHES、REVIEW 或 BLOCK)和比對詳細資訊,包括名稱、地點和整體評分。
解釋結果
回應包含兩個摘要物件以進行快速的彙總評估:
itemRiskSummary— 彙總所有商品的風險。包括低估的maxProbability、原產國誤陳述的maxMisrepresentationProbability、HS 代碼一致性的maxMiscoherenceProbability和worstOutcome,以及限制和法規的彙總計數和最壞情況評分。partyScreeningSummary— 彙總訂方篩選結果。在所有篩選的訂方中返回整體action和maxDeniedPartyMatchScore。
當您需要確定究竟哪些商品或訂方觸發了警旗時,itemResults 和 partyScreenings 包含逐商品和逐訂方的詳細資訊。
概率評分以 0.0 到 1.0 之間的小數返回。沒有內建於 API 的通用 LOW/MED/HIGH 閾值——根據您自己的流量組合和風險容忍度校準截止值。
使用案例
海關經紀人:在提交前對每批貨物運行 Greenlight,以識別誤分類的商品、不正確的原產地聲稱或低估的商品。在導致延誤、罰款或審計前捕捉合規問題。
包裹轉運商:評估每個進來的包裹是否準備好出口,無須從進貨人員那裡需要專業的貿易知識。Greenlight 準確地顯示哪些商品需要關注以及原因,使更快的處理和更少的錯誤成為可能。
運營商和物流提供商:將 Greenlight 整合到貨物驗收工作流程中,在取貨或進貨時篩選包裹。在非合規貨物進入您的網路之前拒絕或標記它們,降低海關扣留和相關成本的風險。
海關機構:使用 Greenlight 透過專注於具有高誤陳述風險評分的貨物來優先檢查。低風險的貨物可以加快速度,提高吞吐量,同時保持執法準確性。
API 指南
下面的範例執行所有六個檢查。在 GreenLightWorkflowInput 中將任何開關設定為 false 以跳過該檢查。
mutation GreenLightWorkflow($partyInput: [PartyCreateWorkflowInput!]!$itemInput: [ItemCreateWorkflowInput!]!$greenLightInput: GreenLightWorkflowInput!) { partyCreateWorkflow(input: $partyInput) { id type location { countryCode } } itemCreateWorkflow(input: $itemInput) { id name hsCode countryOfOrigin } greenLightWorkflow(input: $greenLightInput) { id organizationId createdAt createdBy itemRiskSummary { itemCount underValuation { maxProbability } countryOfOriginMisrepresentation { maxMisrepresentationProbability } hsCodeCoherence { maxMiscoherenceProbability worstOutcome } restriction { matchedCount affectedItemCount worstCategory worstConfidence maxConfidenceScore } regulation { matchedCount affectedItemCount maxConfidenceScore } } partyScreeningSummary { partyCount action maxDeniedPartyMatchScore } itemResults { item { id name hsCode countryOfOrigin amount currencyCode } classification { id customsDescription confidenceScore hsCodeProvidedValidationScore hsCodeProvidedValidation { code } } valueValidation { id probabilityOfUnderValuation value currency } countryOfOriginValidation { id probabilityOfMisrepresentation countryOfOrigin } appliedRestrictions { id itemHsCode restrictions { id category confidence confidenceScore summary url imposingCountryCode measureDirection } } appliedRegulations { id itemHtsCode certificateType regulations { id referenceId summary confidenceScore } } } partyScreenings { id action party { id type } matches { scores { overall name location } name companyName countryCode deniedParty { id name companyName countryCode source sourceUrls } } } }}
Zonos Greenlight
驗證貨物合規並準備好出口。
Zonos Greenlight 為國際貨物提供全面的出口準備評估。它在六個領域執行 AI 驅動的檢查:HS 代碼一致性、原產國驗證、海關價值驗證、產品限制、貿易法規和禁運單位篩選。
greenLightWorkflowmutation 將訂方建立、商品建立和所有合規檢查捆綁到單一 GraphQL 操作中。您可以透過GreenLightWorkflowInput控制哪些檢查運行——所有檢查預設都啟用。回應包括高層摘要以便快速決策,以及逐商品和逐訂方的詳細資訊,以便進行更深入的評審。