Mexico (CFDI): Goods Specific Descriptions

Enter the specific descriptions of the goods and define Brand, Model, Submodel and Serial number.

In this node, you can enter the specific descriptions of the goods and define Brand, Model, Submodel and Serial number.

With some fields in this list, Brand is a mandatory field. Brand must always be included if Model, Submodel or Serial number are used.

Name (Path)CardinalityDescription
Brand (/Invoice/InvoiceLine/Item/BrandName)0..1Brand of the goods
Model (/Invoice/InvoiceLine/Item/ModelName)0..1Model of the goods
Submodel (/Invoice/InvoiceLine/Item/UBLExtensions/UBLExtension/ExtensionContent/ItemExtension/SubModelName)0..1Submodel of the goods
Serial number (/Invoice/InvoiceLine/Item/CommodityClassification/ItemClassificationCode[@listID="SN"])0..1Serial number of the goods

Example

<ubl:Invoice>
	<!-- code omitted for clarity -->
	<cac:InvoiceLine>
		<!-- code omitted for clarity -->
		<cac:Item>
			<cec:UBLExtensions>
				<cec:UBLExtension>
					<cec:ExtensionContent>
						<vrbl:ItemExtension>
							<vrbl:SubModelName>SubModel</vrbl:SubModelName>
						</vrbl:ItemExtension>
					</cec:ExtensionContent>
				</cec:UBLExtension>
			</cec:UBLExtensions>
			<!-- code omitted for clarity -->
			<cbc:BrandName>Brand</cbc:BrandName>
			<cbc:ModelName>Model</cbc:ModelName>
			<!-- code omitted for clarity -->
			<cac:CommodityClassification>
				<cbc:ItemClassificationCode listID="SN">123456789</cbc:ItemClassificationCode>
			</cac:CommodityClassification>
			<!-- code omitted for clarity -->
		</cac:Item>
		<!-- code omitted for clarity -->
	</cac:InvoiceLine>
	<!-- code omitted for clarity -->
</ubl:Invoice>