System tracks have a proprietary protocol, it contains the same attributes as AIS and Radar tracks with the addition of originator source, alarms (if any), label and text made by operators.

The main entity is: Vessel including the sub-entities: Location for the position, Event of type Movement for the voyage information. For the alarms, depending of the case, it could be an associated Risk or Event of type incident or Event of type anomaly. (required: the list of alarms to do a mapping). The text added by the operators can be added as a comment in the Metadata of the Risk or of the Event.

The example below use the entity Risk for an alarm: a vessel suspected of smuggling. This could be used for sharing Vessels of Interest.

<?xml version="1.0" encoding="UTF-8"?>
<!-- mapping of Radar information in ASTERIX CAT062 - the comments indicate the field used from ASTERIX-->
<Vessel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://cise.jrc.ec.europa.eu/datamodel/last/xsd/Vessel.xsd" xsi:schemaLocation="http://www.cise.eu/datamodel/v1/entity/location/ https://cise.jrc.ec.europa.eu/datamodel/last/xsd/entity/location/PortLocation.xsd http://www.cise.eu/datamodel/v1/entity/movement/ https://cise.jrc.ec.europa.eu/datamodel/last/xsd/entity/movement/Movement.xsd" xmlns:mov="http://www.cise.eu/datamodel/v1/entity/movement/" xmlns:loc="http://www.cise.eu/datamodel/v1/entity/location/">
    <Identifier>
        <GeneratedBy><LegalName>Italian Coast Guard</LegalName></GeneratedBy> <!-- identification of the generator of the ID, in most of the cases the owner of the CISE adapter-->
        <GeneratedIn>2017-10-19T22:36:45Z</GeneratedIn>
        <UUID>550e8400-e29b-41d4-a716-446655440000</UUID>
    </Identifier>
    <Name>ATLANTIS ALVARADO</Name><!-- Vessel Name -->
<!-- below information about alarms can be added-->
    <InvolvedRiskRel>
        <Risk>
            <Metadata><Comments>Free text</Comments></Metadata><!-- specific text added by the operator that cannot be encoded in another field-->
            <RiskLevel>Medium</RiskLevel>
            <RiskSeverity>Critical</RiskSeverity>
            <RiskType>Smuggling</RiskType><!-- see full list at https://cise.jrc.ec.europa.eu/datamodel/last/doc/model/enum/Risk_RiskType.html -->
        </Risk>
    </InvolvedRiskRel>    
<!-- below information from AIS and/or Radar sources -->
    <LocationRel>
        <Location>
            <Geometry>
                <Latitude>37.9333</Latitude>
                <Longitude>23.5301</Longitude>
            </Geometry>
            <LocationQualitativeAccuracy>High</LocationQualitativeAccuracy>
        </Location>
        <COG>12</COG>
        <Heading>9</Heading>
        <Metadata><Creator><Nationality>IT</Nationality></Creator></Metadata> <!-- Other metadata possible -->
        <PeriodOfTime>
            <StartDate>2017-10-19</StartDate>
            <StartTime>22:30:00</StartTime>
        </PeriodOfTime>
        <SourceType>Correlation</SourceType><!-- see full list at https://cise.jrc.ec.europa.eu/datamodel/last/doc/model/enum/Object_SensorType.html -->
        <SensorType>MaritimeRadar</SensorType><!-- see full list at https://cise.jrc.ec.europa.eu/datamodel/last/doc/model/enum/Object_SensorType.html -->
        <SOG>90.2</SOG>
    </LocationRel>
<!-- information about the next port of call -->
    <InvolvedEventRel>
        <Event xsi:type="mov:Movement">
            <LocationRel>
                <Location xsi:type="loc:PortLocation">
                    <LocationCode>FRLEH</LocationCode><!-- Destination (if a LOCODE is used) -->
                    <PortName>Le Havre</PortName><!-- Destination (if a port) -->
                </Location>
                <DateTime><StartDate>2017-06-23</StartDate><StartTime>13:30:00</StartTime></DateTime> <!-- ETA -->
                <LocationRole>NextPlace</LocationRole>
                <SourceType>Declaration</SourceType>
            </LocationRel>
            <MovementType>Voyage</MovementType>
        </Event>
    </InvolvedEventRel>
<!-- other identification elements of the vessel -->
    <Breadth>14</Breadth>
    <CallSign>9HA2203</CallSign>
    <Draught>18.5</Draught> 
    <IMONumber>9074729</IMONumber>
    <Length>92.86</Length>
    <MMSI>248145000</MMSI>
    <NavigationalStatus>UnderWayUsingEngine</NavigationalStatus>
    <ShipType>BulkCarrier</ShipType><!-- see full list at https://cise.jrc.ec.europa.eu/datamodel/last/doc/model/enum/Vessel_VesselType.html -->
</Vessel>