Skip to main content

ActivationDocument

Struct ActivationDocument 

Source
pub struct ActivationDocument {
Show 14 fields pub document_identification: AttrV<DocumentId>, pub document_version: AttrV<DocumentVersion>, pub document_type: AttrV<ActivationDocType>, pub process_type: AttrV<ActivationProcessType>, pub sender_identification: AttrVWithScheme<MarketParticipantId>, pub sender_role: AttrV<MarketRoleType>, pub receiver_identification: AttrVWithScheme<MarketParticipantId>, pub receiver_role: AttrV<MarketRoleType>, pub creation_date_time: AttrV<UtcDateTime>, pub activation_time_interval: AttrV<TimeInterval>, pub order_identification: Option<AttrV<DocumentId>>, pub order_identification_version: Option<AttrV<DocumentVersion>>, pub time_series: Vec<ActivationTimeSeries>, pub reason: Option<DocumentReason>,
}
Expand description

ActivationDocument — Redispatch 2.0 activation instruction, response, or reduction document.

XSD version: 1.1f (Fehlerkorrektur 2026-02-19)
Namespace: urn:entsoe.eu:wgedi:errp:activationdocument:5:0

Three document types share this format:

  • ACO (A96): Activation order sent by the requesting NB to the resource provider’s NB.
  • ACR (A41): Activation response from the resource provider’s NB.
  • AAR (A42): Tender reduction sent by the requesting NB when it reduces or cancels a previously issued ACO.

Fields§

§document_identification: AttrV<DocumentId>

Unique document identifier (max 35 chars, case-sensitive).

§document_version: AttrV<DocumentVersion>

Document version number (1–999).

§document_type: AttrV<ActivationDocType>

Document type: ACR (A41), AAR (A42), or ACO (A96).

§process_type: AttrV<ActivationProcessType>

Process type: always A41 (redispatch process).

§sender_identification: AttrVWithScheme<MarketParticipantId>

Sender’s market participant identifier.

§sender_role: AttrV<MarketRoleType>

Sender’s market role.

§receiver_identification: AttrVWithScheme<MarketParticipantId>

Receiver’s market participant identifier.

§receiver_role: AttrV<MarketRoleType>

Receiver’s market role.

§creation_date_time: AttrV<UtcDateTime>

Document creation timestamp (UTC, second precision).

§activation_time_interval: AttrV<TimeInterval>

Delivery day covered by this document (UTC interval, minute precision).

§order_identification: Option<AttrV<DocumentId>>

DocumentIdentification of the ACO this ACR/AAR responds to (optional).

§order_identification_version: Option<AttrV<DocumentVersion>>

DocumentVersion of the ACO this ACR/AAR responds to (optional).

§time_series: Vec<ActivationTimeSeries>

Activated time series (1–2 entries; one per direction).

§reason: Option<DocumentReason>

Document-level reason (optional; present on full rejections).

Trait Implementations§

Source§

impl Clone for ActivationDocument

Source§

fn clone(&self) -> ActivationDocument

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ActivationDocument

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for ActivationDocument

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<ActivationDocument> for Document

Source§

fn from(d: ActivationDocument) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for ActivationDocument

Source§

fn eq(&self, other: &ActivationDocument) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for ActivationDocument

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for ActivationDocument

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.