Shipping Container (ShippingContainerGenerator)
The Shipping Container generator generates values of ISO 6346 compliant shipping container codes. All generated codes are in the freight category ("U").
The Shipping Container generator does not support linking. It can be self-consistent or consistent with another column. You cannot configure differential privacy.
There is no generator-specific configuration.
{
"presetId": "string",
"generatorId": "ShippingContainerGenerator",
"schema": "string",
"table": "string",
"column": "string",
"dataType": "string" //MongoDB only
"metadata": {
"isConsistent": boolean,
"consistencyColumn": "string"
},
"encryptionProcessor": "x-on", //To use configured Tonic data encryption
"customValueProcessor": "string" //If custom value processor applied
}
In the following example of a replacement for the Shipping Container generator, consistency is disabled.
{
"name": "container",
"schema": "public",
"table": "shipments",
"links": [
{
"presetId": "ShippingContainerGenerator",
"generatorId": "ShippingContainerGenerator",
"schema": "public",
"table": "shipments",
"column": "container",
"metadata": {
"isConsistent": false
}
}
]
}
Last modified 1mo ago