If there is an update request on a <subscription> resource to modify some of the conditions (like createdBefore, createdAfter etc.) of the eventNotificationCriteria attribute (enc), then are all the existing conditions of eventNotificationCriteria attribute be replaced or are just the conditions present in the request been modified?
For example
The <subscription> resource is created with enc attribute as follows:
"enc": { "crb": "20191130T142810", "cra": "20191129T140000", "net": [ 1, 2, 3, 4, 5 ] }
Update the <subscription>'s enc attribute:
"enc": { "ms": "20191129T140000", "us": "20191130T142810", "net": [ 1, 2, 3, 4, 5 ] }
Possible responses on the UPDATE of the enc in the <subscription> resource:
RESPONSE 1:
"enc": {
"crb": "20191130T142810",
"cra": "20191129T140000",
"ms": "20191129T140000",
"us": "20191130T142810"
"net": [
1,
2,
3,
4,
5
]
}
RESPONSE 2:
"enc": {
"ms": "20191129T140000",
"us": "20191130T142810",
"net": [
1,
2,
3,
4,
5
]
}
Which is correct, RESPONSE 1 or RESPONSE 2?