-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Although a document compiles valid against the schema, python-tilt does not instantiate correctly, when certain fields are missing for the storageitem.
Works:
"storage": [],Does not work:
"storage": [
{
"temporal": [
{
"description": "Die übermittelten Daten werden einen Monat nach Abwicklung der Bestellung gelöscht.",
"ttl": "P1M"
}
],
"aggregationFunction": "max"
}
],Workaround (add empty lists):
"storage": [
{
"temporal": [
{
"description": "Die übermittelten Daten werden einen Monat nach Abwicklung der Bestellung gelöscht.",
"ttl": "P1M"
}
],
"purposeConditional": [],
"legalBasisConditional" : [],
"aggregationFunction": "max"
}
],(Thanks, Flora!)
Metadata
Metadata
Assignees
Labels
No labels