ItemMessageHeader: Difference between revisions

From imde.io

No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 5: Line 5:
[https://docs.google.com/presentation/d/e/2PACX-1vTr7x4ZXatEGbTxkMDYmzQO7Ji4l29OEYPPsI3VXPI0MTS0YPnGXKT35oPmgUu3pFJp0-je5MCAkZ7y/pub?start=false&loop=false&delayms=3000  Background Presentation]
[https://docs.google.com/presentation/d/e/2PACX-1vTr7x4ZXatEGbTxkMDYmzQO7Ji4l29OEYPPsI3VXPI0MTS0YPnGXKT35oPmgUu3pFJp0-je5MCAkZ7y/pub?start=false&loop=false&delayms=3000  Background Presentation]


Version 2.0:
'''Version 2.0:'''
<pre>
<pre>
<IMDEMessages xmlns="https://imde.io/schema/imdemessages/2.0">
<IMDEMessages xmlns="https://imde.io/schema/imdemessages/2.0">

Revision as of 15:41, 18 August 2023

Part of DataContainer: Item

Every message starts with a message header where the type of message can be found and all parties related to the message. The ItemMesssage contains one or more items. And per item you can have one or more DataTopics. Background Presentation

Version 2.0:

<IMDEMessages xmlns="https://imde.io/schema/imdemessages/2.0">
	<IMDEMessage>
		<Header DataContainerType="Item">
			<DataSender>
				<Identifiers>
					<Identifier Type="GLN">8719328024200</Identifier>
				</Identifiers>		
			</DataSender>
			<DataReceiver>
				<Identifiers>
					<Identifier Type="GLN">8719328024262</Identifier>
					<Identifier Type="DataReceiver">23235</Identifier>
				</Identifiers>			
			</DataReceiver>
			<DataProvider>
				<Identifiers>
					<Identifier Type="GLN">8719328024279</Identifier>
				</Identifiers>				
				<Name>SyncForce</Name>
			</DataProvider>
			<MessageIdentifier>a1a1140b-1859-4fe5-b4f4-0cd843f9e1c3</MessageIdentifier>
			<CreationDateTime>2022-05-30T09:30:10-06:00</CreationDateTime>
			<Parameters>
				<Parameter Key="Parameter1" Value="3" />
				<Parameter Key="Parameter2" Value="Data" />
			</Parameters>	
		</Header>
		<Item MaterialType="FinishedGood">
			<DataTopics>
				<DataTopic Topic="KeyInfo" Format="Azlon" Version="1.0">
					...
				</DataTopic>			
			</DataTopics>
		</Item>
	</IMDEMessage>
</IMDEMessages>

Downloads

Header is a mandatary for every message and defines the type of message and all related parties:

Dictionary

List of data elements used in Message Header
Data element Definition
DataSender The legal entity or system sending the data. In this example Wonka is the chocolate manufacturer sending data
DataReceiver The legal entity or target system receiving the data. In this example Acme is the retailer receiving data
DataProvider The solution provider / system that has distributed the data. In this example Virtucon is the Solution Provider sending the data.
MessageIdentifier UUID based, uniquely identifies the data message

Back to DataContainer: Item