Commit a37669f1 authored by Denis Filatov's avatar Denis Filatov
Browse files

Merge branch 'release2_v2.3.1' into release2

parents a773f3ab 0149fc72
Loading
Loading
Loading
Loading
Loading
+14 −12
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ DEFINITIONS AUTOMATIC TAGS::= BEGIN

IMPORTS

Longitude, Latitude, StationID, Iso3833VehicleType
Longitude, Latitude, Provider, StationID, Iso3833VehicleType
FROM ETSI-ITS-CDD {
  itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-4 (4) minor-version-1 (1)
}
@@ -1358,6 +1358,7 @@ RegulatorySpeedLimit ::= SEQUENCE {
* @field transitSchedule:   current vehicle schedule adherence
* @field regional:          optional region specific data.
* @field ocit:              Extension container for Legacy R09 data (as defined by [OCIT]).
* @field serviceProviderId: Extension Id that identifies the organization that provided the SREM by using the DF Provider.
*
* @note: Note that the requestor description elements which are used when the request (the req) is made differ from
*        those used when the status of an active or pending request is reported (the ack). Typically, when reporting the status to
@@ -1377,7 +1378,8 @@ RequestorDescription ::= SEQUENCE {
  transitSchedule   DeltaTime OPTIONAL,
  regional          SEQUENCE (SIZE(1..4)) OF RegionalExtension {{Reg-RequestorDescription}} OPTIONAL,
  ...,
  ocit OcitRequestorDescriptionContainer -- Extension for OCIT in V2.2.1
  ocit              OcitRequestorDescriptionContainer OPTIONAL, -- Extension for OCIT in V2.2.1 (OPTIONAL since v2.3.1)
  serviceProviderId Provider OPTIONAL                           -- Extension for Authorization in V2.3.1
}

/**
Compare a1a8f7b8 to 60799344
Original line number Diff line number Diff line
Subproject commit a1a8f7b820b617cbce60b10ef2d71ad5a05b12cc
Subproject commit 607993448648f50b75312c8fca777f0de67b7ad7
+382 −364

File changed.

Preview size limit exceeded, changes collapsed.

+6 −2
Original line number Diff line number Diff line
@@ -1902,9 +1902,12 @@ This DF is used to provide identity information about a selected vehicle or user
* _regional_ of type **SEQUENCE**  (SIZE(1..4)) OF RegionalExtension {{Reg-RequestorDescription}} OPTIONAL<br>
  optional region specific data.

* _ocit_ of type [**OcitRequestorDescriptionContainer**](#OcitRequestorDescriptionContainer)  <br>
* _ocit_ of type [**OcitRequestorDescriptionContainer**](#OcitRequestorDescriptionContainer)  OPTIONAL<br>
  Extension container for Legacy R09 data (as defined by [OCIT]).

* _serviceProviderId_ of type [**Provider**](ETSI-ITS-CDD.md#Provider)  OPTIONAL                           <br>
  Extension Id that identifies the organization that provided the SREM by using the DF Provider.


&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Infrastructure information 

@@ -1929,7 +1932,8 @@ RequestorDescription ::= SEQUENCE {
  transitSchedule   DeltaTime OPTIONAL,
  regional          SEQUENCE (SIZE(1..4)) OF RegionalExtension {{Reg-RequestorDescription}} OPTIONAL,
  ...,
  ocit OcitRequestorDescriptionContainer 
  ocit              OcitRequestorDescriptionContainer OPTIONAL, 
  serviceProviderId Provider OPTIONAL                           
}
```