Represents the data erasure process for an order, encapsulating details about the status and timestamps of the erasure for both personal and print data.
| Name | Type | Description | |
|---|---|---|---|
id
|
number
|
Represents the unique identifier for a resource. | |
personalDataErased
|
boolean
|
Indicates whether the personal data associated with this order has been erased.
A value of true means the personal data has been erased, while false
indicates that it has not.
|
|
printDataErased
|
boolean
|
Indicates whether the print data associated with this order has been erased.
A value of true means the print data has been erased, while false
indicates that it has not.
|
|
personalDataEraseDate
|
number
|
Represents the date and time (ISO 8601 format) when the personal data associated with an order was erased. It is used to track the completion of the personal data erasure process for compliance and auditing purposes. | |
printDataEraseDate
|
number
|
Represents the date and time (ISO 8601 format) when the print data associated with an order was erased. This field is used to track the completion of the print data erasure process for auditing and compliance purposes. |
{
"orderDataErasure" : {
"id" : 12345,
"personalDataErased" : true,
"printDataErased" : true,
"personalDataEraseDate" : 12345,
"printDataEraseDate" : 12345
}
}
Represents the data erasure process for an order, encapsulating details about the status and timestamps of the erasure for both personal and print data.
| Name | Type | Description | |
|---|---|---|---|
id
|
int
|
Represents the unique identifier for a resource. | |
personalDataEraseDate
|
dateTime
|
Represents the date and time (ISO 8601 format) when the personal data associated with an order was erased. It is used to track the completion of the personal data erasure process for compliance and auditing purposes. | |
personalDataErased
|
boolean
|
Indicates whether the personal data associated with this order has been erased.
A value of true means the personal data has been erased, while false
indicates that it has not.
|
|
printDataEraseDate
|
dateTime
|
Represents the date and time (ISO 8601 format) when the print data associated with an order was erased. This field is used to track the completion of the print data erasure process for auditing and compliance purposes. | |
printDataErased
|
boolean
|
Indicates whether the print data associated with this order has been erased.
A value of true means the print data has been erased, while false
indicates that it has not.
|
<orderDataErasure>
<id>...</id>
<personalDataErased>...</personalDataErased>
<printDataErased>...</printDataErased>
<personalDataEraseDate>2019-04-25T18:02:07+02:00</personalDataEraseDate>
<printDataEraseDate>2019-04-25T18:02:07+02:00</printDataEraseDate>
</orderDataErasure>