| VehicleCapacityLimit table | 
With the VehicleCapacityLimit table, you can define the total amount, weight, and/or volume of a capacity metric allowed in a vehicle to help with route planning.
|  Note | 
|---|
| Contact your account manager to enable the Load Management feature for your account. | 
This topic contains the following sections:
 Requirements
RequirementsWhen you write templates that access this table, follow these requirements:
Specify the Symbolic Name for the table version to use:
TableID = VehicleCapacityLimit-1.0
Specify an Intent that this table supports:
Input templates: In your [Output] section, be sure to map an input value to every table column that is flagged as being a primary key or required.
[Filter] Id(ExtId) = Equals(Id1) # You can filter on literals or on variables from the [User] or [Calculated] sections.
[Filter] Id(ExtId) = In(["Id1","Id2","Id3"])
[Filter] UnitId(ExtId) = Equals(Id1) # Or use the In condition: In([Id1,Id2,Id3])
 VehicleCapacityLimit column descriptions
VehicleCapacityLimit column descriptionsThis list includes each column's name, which you use in expressions to retrieve data, and data type, which defines how the data is retrieved.
| Column | Data Type | Description | 
|---|---|---|
| Id | Id | (primary key) The ID of the vehicle capacity limit. | 
| UnitId | Id<Unit> | The ID of the vehicle that has capacity limits. | 
| CapacityMetricId | Id<CapacityMetric> | The ID of capacity matric on which the limit lays. | 
| AmountLimit | Number | The amount per unit of the vehicle capacity limit. | 
Additional columns:
 Custom columns
Custom columns| Column | Data Type | Description | 
|---|---|---|
| Custom.name | Text | Specifies a user-defined custom column name to store additional information in the table. If the column name contains non-alphanumeric characters, enclose the value in brackets, for example Custom.[Special column]. |