Skip to main content

ZoneTaxCode

Zone-specific tax code configuration for geographic tax compliance.

Represents tax code overrides for specific geographic zones, enabling location-based tax calculations and compliance with regional tax regulations. Used for international commerce and multi-jurisdictional tax management.

type ZoneTaxCode {
id: String!
priceId: String!
createdAt: DateTime!
lastModifiedAt: DateTime!
zone: String!
taxCode: Taxcode!
}

Fields

ZoneTaxCode.id ● String! non-null scalar

Unique identifier for the zone tax code record.

Primary key used for zone tax code management and geographic tax rule operations.

ZoneTaxCode.priceId ● String! non-null scalar

Reference to the associated price record.

Foreign key linking this zone tax code to its base price for geographic tax calculations.

ZoneTaxCode.createdAt ● DateTime! non-null scalar

Timestamp when the zone tax code record was initially created.

Used for audit trails and tax compliance tracking.

ZoneTaxCode.lastModifiedAt ● DateTime! non-null scalar

Timestamp when the zone tax code record was last updated.

Essential for tracking tax rule changes and compliance updates.

ZoneTaxCode.zone ● String! non-null scalar

Geographic zone identifier for tax calculations.

Defines the specific geographic region or tax jurisdiction where special tax rules apply. Used to determine location-specific tax rates and regulations.

ZoneTaxCode.taxCode ● Taxcode! non-null enum

Tax code applicable to the specified zone.

The specific tax classification that applies within the geographic zone. Overrides default tax codes when products are sold in regions with special tax requirements.

Returned By

zoneTaxCode query ● zoneTaxCodeCreate mutation ● zoneTaxCodesCreate mutation ● zoneTaxCodeUpdate mutation

Member Of

ZoneTaxCodeResponse object