SCALAR
String
The String
scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
link GraphQL Schema definition
- scalar String
link Require by
- AdditionalHTS
- AddressRepresents the address of an entity.
- AddressInputRepresents the address of an entity.
- AdjustmentRepresents a commercial invoice adjustment.
- AdjustmentInputRepresents a commercial invoice adjustment.
- AirWaybillInput
- AMSQueryArrival
- AMSQueryFlight
- AMSQueryFlightTransaction
- AMSQueryInBond
- AMSQueryInfo
- AMSQueryOceanTransaction
- AMSQueryResponse
- AMSQueryResult
- APIVersion
- CaseBondOrCashAD/CVD Case payment options: Bond or Cash
- CaseEventAD/CVD Case event history
- CaseLiquidationSuspensionAD/CVD Case liquidation history
- CasePayload
- CaseRateAD/CVD Case duty rate
- CaseTariffAD/CVD Case Tariff
- CharacteristicCommodity characteristic. Used by APHIS, FWS.
- CharacteristicInputCommodity characteristic. Used by APHIS, FWS.
- CommercialInvoice
- CommercialInvoiceInput
- ConsigneeRepresents a consignee entity.
- ConstituentElementProvides data relating to the constituent element of a product/component.
- ConstituentElementInputProvides data relating to the constituent element of a product/component
- ContainerRepresents a container.
- ContainerInputRepresents a container.
- CreateConsigneeInputThe create consignee input
- CreateImporterInputCreate an importer of record. See https://help.inlt.com/customs-brokerage/who-is-the-importer-of-record.
- CreateLocationInputRepresents a Location entity.
- CreateProductInputCreate an importer's product.
- CreateShipmentInputCreate a shipment. Used to file an ISF, entry, and/or in-bond. See https://help.inlt.com/customs-brokerage/what-is-an-entry.
- CreateSupplierInputRepresents a Supplier entity.
- CreateTruckerInputRepresents the fields available when creating a trucker
- DOTBondDepartment of Transportation conformance bond.
- DOTBondInputDepartment of Transportation conformance bond.
- Engine
- EngineInput
- EntryLine
- EntryLineInput
- ErrorA fatal error that stops execution, no actions are taken
- ForwarderRepresents a forwarder entity.
- HouseBillRepresents a house bill.
- HouseBillInputRepresents a house bill.
- HTSFeeTax or fee required by an HTS number. See https://help.inlt.com/customs-brokerage/duties-taxes-and-fees.
- HTSPayload
- HTSRestrictionsRestrictions on using an HTS Number
- ImporterRepresents an Importer of Record with Customs. Used to create shipments and products. See https://help.inlt.com/customs-brokerage-knowledge-center/who-is-the-importer-of-record
- ImporterDocRepresents a document associated with an importer
- ImporterDocInputRepresents a document associated with an importer
- ImporterEventBody
- InvoiceDelivery
- InvoiceDoc
- LiveAnimalTagRangeLive Animal Tag Range. Used by APHIS.
- LiveAnimalTagRangeInputLive Animal Tag Range. Used by APHIS.
- LocationRepresents a location entity.
- LPCORepresents Licenses, Permits, Certificates or Other (LPCO) issued by PGA and other government entities.
- LPCOInputRepresents Licenses, Permits, Certificates or Other (LPCO) issued by PGA and other government entities
- MasterBillRepresents a master bill.
- MasterBillInputRepresents a master bill.
- PGARepresents a Partnering Government Agency
- PGAInputRepresents a Partnering Government Agency
- PGAProcessingCode
- PGAProgram
- PGARequirementPartner Government Agency HTS flag.
- PGASourcePGA source and processing data
- PGASourceInputPGA source and processing data
- Phone
- PhoneInputA phone number
- POCRepresents a 'point of contact' at an entity.
- POCInputRepresents a 'point of contact' at an entity.
- PostUpdateAction
- ProductRepresents an importers' product
- Query
- QueryAMSInput
- RadiationDeclarationAnswers to the questions on Form FDA-2877 Used by: FDA (Radiation Emitting Products)
- RadiationDeclarationInputAnswers to the questions on Form FDA-2877 Used by: FDA (Radiation Emitting Products)
- RecordDoc
- RequestBondRequest a continuous bond for an Importer
- RequestImporterBondInputRequest a continuous bond for an Importer
- SearchResult
- ShipmentAn importer's shipment. Used to file an ISF, entry, and/or in-bond. See https://help.inlt.com/customs-brokerage/what-is-an-entry.
- ShipmentDocRepresents a document associated with a shipment
- ShipmentDocInputRepresents a document associated with a shipment.
- ShipmentEventBody
- ShipmentMilestone
- SPISpecial Program Indicator https://dataweb.usitc.gov/tariff/programs.
- SupplementalField
- SupplierRepresents a supplier entity.
- TruckerRepresents a trucker entity.
- UpdateConsigneeInputThe update consignee input
- UpdateForwarderInputRepresents a forwarder entity.
- UpdateImporterInput
- UpdateLocationInputRepresents a Location entity.
- UpdateProductInputUpdate an importer's product.
- UpdateShipmentInputCreate a shipment. Used to file an ISF, entry, and/or in-bond. See https://help.inlt.com/customs-brokerage/what-is-an-entry.
- UpdateSupplierInputRepresents a Supplier entity.
- UpdateTruckerInputRepresents the fields available when updating a trucker
- Vehicle
- VehicleInput
- WeaponMeasurements
- WeaponMeasurementsInput
- __DirectiveA Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document. In some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.
- __EnumValueOne possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.
- __FieldObject and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.
- __InputValueArguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.
- __TypeThe fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum. Depending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.