Serbia (SeF): Driver Person

In Serbian e-transport, this is the carrier's driver of the transport.

Required if the Shipping Method Type ShipmentMethodType is RS:1, RS:2, or RS:3.

See Shipping Method Type for code descriptions.

Elements

Name (Path)CardinalityDescription
Driver Person (DispatchAdvice/Shipment/ShipmentStage/DriverPerson)0..1Describes a person responsible for driving the transport means.
Person Identifier (ID)0..1An element to identify the person.
First Name (FirstName)0..1This person's given name.
Family Name (FamilyName)0..1This person's family name.
Contact (Contact)0..1Contact information for this person.
Contact Telephone Number (Contact/Telephone)0..1The primary telephone number of this contact.
Contact Email Address (Contact/ElectronicMail)0..1The driver's email address (the address does not have to be the same as the one that serves as the driver's identifier for accessing the system via the MATP application).
Identity Document Reference (IdentityDocumentReference)0..1A reference to a document that can precisely identify this person (for example, a driver's license).
Document Reference Identifier (IdentityDocumentReference/ID)0..1An identifier for the referenced document.
Document Type (IdentityDocumentReference/DocumentType)0..1The type of document being referenced, expressed as text.

If the driver uses the MATP application, the email address used for the eID account should match the identifier provided at the Carrier level. This allows a single driver account to be associated with multiple Carriers.

Example

<DispatchAdvice>
    <!-- code omitted for clarity -->
    <cac:Shipment>
        <!-- code omitted for clarity -->
        <cac:ShipmentStage>
            <cac:DriverPerson>
                <ID>[email protected]</ID>
                <FirstName>Petar</FirstName>
                <FamilyName>Petrovic</FamilyName>
                <cac:Contact>
                    <Telephone>011222333</Telephone>
                </cac:Contact>
                <cac:IdentityDocumentReference>
                    <ID>16099007111234</ID>
                    <DocumentType>Vozačka dozvola</DocumentType>
                </cac:IdentityDocumentReference>
            </cac:DriverPerson>
        </cac:ShipmentStage>
        <!-- code omitted for clarity -->
    </cac:Shipment>
    <!-- code omitted for clarity -->
</DispatchAdvice>