Skip to content

Commit

Permalink
🐛 [#4955] Provide coordinates to objects-api and zgw-apis using lng/l…
Browse files Browse the repository at this point in the history
…at format

The Objects-api and zgw-apis backend registrations expect the geometry coordinates data to follow the lng/lat format.

Our coordinates are saved as [lat,lng], so for these registrations we have to switch the coordinates around

Backport-of: #4957
  • Loading branch information
robinmolen authored and sergei-maertens committed Dec 19, 2024
1 parent ed1191a commit 2b6e23a
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 64 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@
def _point_coordinate(value: Any) -> dict[str, Any] | object:
if not isinstance(value, list) or len(value) != 2:
return SKIP
return {"type": "Point", "coordinates": [value[0], value[1]]}
# Providing the coordinates as [lng, lat] #4955
return {"type": "Point", "coordinates": [value[1], value[0]]}


def _resolve_documenttype(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
interactions:
- request:
body: '{"informatieobjecttype": "http://localhost:8003/catalogi/api/v1/informatieobjecttypen/f2908f6f-aa07-42ef-8760-74c5234f2d25",
"bronorganisatie": "123456782", "creatiedatum": "2024-09-16", "titel": "Form
"bronorganisatie": "123456782", "creatiedatum": "2024-12-19", "titel": "Form
018", "auteur": "Aanvrager", "taal": "eng", "formaat": "application/pdf", "inhoud":
"", "status": "definitief", "bestandsnaam": "open-forms-Form 018.pdf", "ontvangstdatum":
null, "beschrijving": "Ingezonden formulier", "indicatieGebruiksrecht": false,
Expand All @@ -12,7 +12,7 @@ interactions:
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ0ZXN0X2NsaWVudF9pZCIsImlhdCI6MTcyNjQ5NjM2MSwiY2xpZW50X2lkIjoidGVzdF9jbGllbnRfaWQiLCJ1c2VyX2lkIjoiIiwidXNlcl9yZXByZXNlbnRhdGlvbiI6IiJ9.0gG7t1lHg95HuBzN2WTSWrXolOHfVg9PGwtNUGW-uBw
- Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ0ZXN0X2NsaWVudF9pZCIsImlhdCI6MTczNDYxMDUyNSwiY2xpZW50X2lkIjoidGVzdF9jbGllbnRfaWQiLCJ1c2VyX2lkIjoiIiwidXNlcl9yZXByZXNlbnRhdGlvbiI6IiJ9.LY-_15pdojkK5SuQH1J1Jax_Tg_eH5hMQ6WMzqlGWQM
Connection:
- keep-alive
Content-Length:
Expand All @@ -25,9 +25,9 @@ interactions:
uri: http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten
response:
body:
string: '{"url":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/e9059611-9abf-4c21-ad11-86b6a9dcbe1e","identificatie":"DOCUMENT-2024-0000000067","bronorganisatie":"123456782","creatiedatum":"2024-09-16","titel":"Form
018","vertrouwelijkheidaanduiding":"openbaar","auteur":"Aanvrager","status":"definitief","formaat":"application/pdf","taal":"eng","versie":1,"beginRegistratie":"2024-09-16T14:19:21.842296Z","bestandsnaam":"open-forms-Form
018.pdf","inhoud":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/e9059611-9abf-4c21-ad11-86b6a9dcbe1e/download?versie=1","bestandsomvang":0,"link":"","beschrijving":"Ingezonden
string: '{"url":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/f98002c7-c166-4114-9b01-897b9ab15e12","identificatie":"DOCUMENT-2024-0000000087","bronorganisatie":"123456782","creatiedatum":"2024-12-19","titel":"Form
018","vertrouwelijkheidaanduiding":"openbaar","auteur":"Aanvrager","status":"definitief","formaat":"application/pdf","taal":"eng","versie":1,"beginRegistratie":"2024-12-19T12:15:25.876397Z","bestandsnaam":"open-forms-Form
018.pdf","inhoud":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/f98002c7-c166-4114-9b01-897b9ab15e12/download?versie=1","bestandsomvang":0,"link":"","beschrijving":"Ingezonden
formulier","ontvangstdatum":null,"verzenddatum":null,"indicatieGebruiksrecht":false,"verschijningsvorm":"","ondertekening":{"soort":"","datum":null},"integriteit":{"algoritme":"","waarde":"","datum":null},"informatieobjecttype":"http://localhost:8003/catalogi/api/v1/informatieobjecttypen/f2908f6f-aa07-42ef-8760-74c5234f2d25","locked":false,"bestandsdelen":[],"trefwoorden":[],"lock":""}'
headers:
API-version:
Expand All @@ -41,7 +41,7 @@ interactions:
Cross-Origin-Opener-Policy:
- same-origin
Location:
- http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/e9059611-9abf-4c21-ad11-86b6a9dcbe1e
- http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/f98002c7-c166-4114-9b01-897b9ab15e12
Referrer-Policy:
- same-origin
Vary:
Expand All @@ -55,7 +55,7 @@ interactions:
message: Created
- request:
body: '{"informatieobjecttype": "http://localhost:8003/catalogi/api/v1/informatieobjecttypen/d1cfb1d8-8593-4814-919d-72e38e80388f",
"bronorganisatie": "123456782", "creatiedatum": "2024-09-16", "titel": "Form
"bronorganisatie": "123456782", "creatiedatum": "2024-12-19", "titel": "Form
018 (csv)", "auteur": "Aanvrager", "taal": "eng", "formaat": "text/csv", "inhoud":
"Rm9ybXVsaWVybmFhbSxJbnplbmRpbmdkYXR1bSxUYWFsY29kZSx2b29ybmFhbSxhY2h0ZXJuYWFtLHR1c3NlbnZvZWdzZWwsZ2Vib29ydGVkYXR1bSxjb29yZGluYWF0DQpGb3JtIDAxOCwsZW4sRm9vLEJhcixkZSwyMDAwLTEyLTMxLCJbNTIuMzY2NzMzNzg5NjcxMjIsIDQuODkzMTY0Mjc0NDcwMjk5XSINCg==",
"status": "definitief", "bestandsnaam": "open-forms-Form 018 (csv).csv", "ontvangstdatum":
Expand All @@ -67,7 +67,7 @@ interactions:
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ0ZXN0X2NsaWVudF9pZCIsImlhdCI6MTcyNjQ5NjM2MSwiY2xpZW50X2lkIjoidGVzdF9jbGllbnRfaWQiLCJ1c2VyX2lkIjoiIiwidXNlcl9yZXByZXNlbnRhdGlvbiI6IiJ9.0gG7t1lHg95HuBzN2WTSWrXolOHfVg9PGwtNUGW-uBw
- Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ0ZXN0X2NsaWVudF9pZCIsImlhdCI6MTczNDYxMDUyNSwiY2xpZW50X2lkIjoidGVzdF9jbGllbnRfaWQiLCJ1c2VyX2lkIjoiIiwidXNlcl9yZXByZXNlbnRhdGlvbiI6IiJ9.LY-_15pdojkK5SuQH1J1Jax_Tg_eH5hMQ6WMzqlGWQM
Connection:
- keep-alive
Content-Length:
Expand All @@ -80,9 +80,9 @@ interactions:
uri: http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten
response:
body:
string: '{"url":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/2f72e9d2-a208-4921-b6e2-fd694c84e889","identificatie":"DOCUMENT-2024-0000000068","bronorganisatie":"123456782","creatiedatum":"2024-09-16","titel":"Form
018 (csv)","vertrouwelijkheidaanduiding":"openbaar","auteur":"Aanvrager","status":"definitief","formaat":"text/csv","taal":"eng","versie":1,"beginRegistratie":"2024-09-16T14:19:21.976830Z","bestandsnaam":"open-forms-Form
018 (csv).csv","inhoud":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/2f72e9d2-a208-4921-b6e2-fd694c84e889/download?versie=1","bestandsomvang":175,"link":"","beschrijving":"Ingezonden
string: '{"url":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/3b63cf06-20fc-4e94-912e-961a85a465e9","identificatie":"DOCUMENT-2024-0000000088","bronorganisatie":"123456782","creatiedatum":"2024-12-19","titel":"Form
018 (csv)","vertrouwelijkheidaanduiding":"openbaar","auteur":"Aanvrager","status":"definitief","formaat":"text/csv","taal":"eng","versie":1,"beginRegistratie":"2024-12-19T12:15:25.986595Z","bestandsnaam":"open-forms-Form
018 (csv).csv","inhoud":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/3b63cf06-20fc-4e94-912e-961a85a465e9/download?versie=1","bestandsomvang":175,"link":"","beschrijving":"Ingezonden
formulierdata","ontvangstdatum":null,"verzenddatum":null,"indicatieGebruiksrecht":false,"verschijningsvorm":"","ondertekening":{"soort":"","datum":null},"integriteit":{"algoritme":"","waarde":"","datum":null},"informatieobjecttype":"http://localhost:8003/catalogi/api/v1/informatieobjecttypen/d1cfb1d8-8593-4814-919d-72e38e80388f","locked":false,"bestandsdelen":[],"trefwoorden":[],"lock":""}'
headers:
API-version:
Expand All @@ -96,7 +96,7 @@ interactions:
Cross-Origin-Opener-Policy:
- same-origin
Location:
- http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/2f72e9d2-a208-4921-b6e2-fd694c84e889
- http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/3b63cf06-20fc-4e94-912e-961a85a465e9
Referrer-Policy:
- same-origin
Vary:
Expand Down Expand Up @@ -139,11 +139,11 @@ interactions:
Cross-Origin-Opener-Policy:
- same-origin
Date:
- Mon, 16 Sep 2024 14:19:22 GMT
- Thu, 19 Dec 2024 12:15:26 GMT
Referrer-Policy:
- same-origin
Server:
- nginx/1.27.0
- nginx/1.27.3
Vary:
- origin
X-Content-Type-Options:
Expand All @@ -160,11 +160,11 @@ interactions:
{"test-slug": {"voornaam": "Foo", "achternaam": "Bar", "tussenvoegsel": "de",
"geboortedatum": "2000-12-31", "coordinaat": [52.36673378967122, 4.893164274470299]}},
"taal": "en", "betrokkenen": [{"inpBsn": "", "rolOmschrijvingGeneriek": "initiator"}],
"pdf": "http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/e9059611-9abf-4c21-ad11-86b6a9dcbe1e",
"csv": "http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/2f72e9d2-a208-4921-b6e2-fd694c84e889",
"pdf": "http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/f98002c7-c166-4114-9b01-897b9ab15e12",
"csv": "http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/3b63cf06-20fc-4e94-912e-961a85a465e9",
"bijlagen": [], "payment": {"completed": false, "amount": 0, "public_order_ids":
[], "payment_ids": []}}, "startAt": "2024-09-16", "geometry": {"type": "Point",
"coordinates": [52.36673378967122, 4.893164274470299]}}}'
[], "payment_ids": []}}, "startAt": "2024-12-19", "geometry": {"type": "Point",
"coordinates": [4.893164274470299, 52.36673378967122]}}}'
headers:
Accept:
- '*/*'
Expand All @@ -186,8 +186,8 @@ interactions:
uri: http://localhost:8002/api/v2/objects
response:
body:
string: '{"url":"http://objects-web:8000/api/v2/objects/1271a648-0231-4c20-8f76-3c6e63f4da9f","uuid":"1271a648-0231-4c20-8f76-3c6e63f4da9f","type":"http://objecttypes-web:8000/api/v2/objecttypes/8faed0fa-7864-4409-aa6d-533a37616a9e","record":{"index":1,"typeVersion":1,"data":{"bron":{"naam":"Open
Formulieren","kenmerk":"aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"},"type":"testproduct","aanvraaggegevens":{"test-slug":{"voornaam":"Foo","achternaam":"Bar","tussenvoegsel":"de","geboortedatum":"2000-12-31","coordinaat":[52.36673378967122,4.893164274470299]}},"taal":"en","betrokkenen":[{"inpBsn":"","rolOmschrijvingGeneriek":"initiator"}],"pdf":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/e9059611-9abf-4c21-ad11-86b6a9dcbe1e","csv":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/2f72e9d2-a208-4921-b6e2-fd694c84e889","bijlagen":[],"payment":{"completed":false,"amount":0,"public_order_ids":[],"payment_ids":[]}},"geometry":{"type":"Point","coordinates":[52.36673378967122,4.893164274470299]},"startAt":"2024-09-16","endAt":null,"registrationAt":"2024-09-16","correctionFor":null,"correctedBy":null}}'
string: '{"url":"http://objects-web:8000/api/v2/objects/8c36c481-bd08-4597-9b3a-753d6b1dfaeb","uuid":"8c36c481-bd08-4597-9b3a-753d6b1dfaeb","type":"http://objecttypes-web:8000/api/v2/objecttypes/8faed0fa-7864-4409-aa6d-533a37616a9e","record":{"index":1,"typeVersion":1,"data":{"bron":{"naam":"Open
Formulieren","kenmerk":"aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"},"type":"testproduct","aanvraaggegevens":{"test-slug":{"voornaam":"Foo","achternaam":"Bar","tussenvoegsel":"de","geboortedatum":"2000-12-31","coordinaat":[52.36673378967122,4.893164274470299]}},"taal":"en","betrokkenen":[{"inpBsn":"","rolOmschrijvingGeneriek":"initiator"}],"pdf":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/f98002c7-c166-4114-9b01-897b9ab15e12","csv":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/3b63cf06-20fc-4e94-912e-961a85a465e9","bijlagen":[],"payment":{"completed":false,"amount":0,"public_order_ids":[],"payment_ids":[]}},"geometry":{"type":"Point","coordinates":[4.893164274470299,52.36673378967122]},"startAt":"2024-12-19","endAt":null,"registrationAt":"2024-12-19","correctionFor":null,"correctedBy":null}}'
headers:
Allow:
- GET, POST, HEAD, OPTIONS
Expand All @@ -202,13 +202,13 @@ interactions:
Cross-Origin-Opener-Policy:
- same-origin
Date:
- Mon, 16 Sep 2024 14:19:22 GMT
- Thu, 19 Dec 2024 12:15:27 GMT
Location:
- http://localhost:8002/api/v2/objects/1271a648-0231-4c20-8f76-3c6e63f4da9f
- http://localhost:8002/api/v2/objects/8c36c481-bd08-4597-9b3a-753d6b1dfaeb
Referrer-Policy:
- same-origin
Server:
- nginx/1.27.0
- nginx/1.27.3
Vary:
- origin
X-Content-Type-Options:
Expand All @@ -226,18 +226,18 @@ interactions:
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ0ZXN0X2NsaWVudF9pZCIsImlhdCI6MTcyNjQ5NjM2MiwiY2xpZW50X2lkIjoidGVzdF9jbGllbnRfaWQiLCJ1c2VyX2lkIjoiIiwidXNlcl9yZXByZXNlbnRhdGlvbiI6IiJ9.i4dqstVtjRbZvXWbWvePMpZXKaJMHa46vzpIJjR3C_s
- Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ0ZXN0X2NsaWVudF9pZCIsImlhdCI6MTczNDYxMDUyNywiY2xpZW50X2lkIjoidGVzdF9jbGllbnRfaWQiLCJ1c2VyX2lkIjoiIiwidXNlcl9yZXByZXNlbnRhdGlvbiI6IiJ9.j6VBzP1jDfEDAuoUS20eT0c7QRGrZcls8n0g0uYb-2k
Connection:
- keep-alive
User-Agent:
- python-requests/2.32.2
method: GET
uri: http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/2f72e9d2-a208-4921-b6e2-fd694c84e889
uri: http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/3b63cf06-20fc-4e94-912e-961a85a465e9
response:
body:
string: '{"url":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/2f72e9d2-a208-4921-b6e2-fd694c84e889","identificatie":"DOCUMENT-2024-0000000068","bronorganisatie":"123456782","creatiedatum":"2024-09-16","titel":"Form
018 (csv)","vertrouwelijkheidaanduiding":"openbaar","auteur":"Aanvrager","status":"definitief","formaat":"text/csv","taal":"eng","versie":1,"beginRegistratie":"2024-09-16T14:19:21.976830Z","bestandsnaam":"open-forms-Form
018 (csv).csv","inhoud":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/2f72e9d2-a208-4921-b6e2-fd694c84e889/download?versie=1","bestandsomvang":175,"link":"","beschrijving":"Ingezonden
string: '{"url":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/3b63cf06-20fc-4e94-912e-961a85a465e9","identificatie":"DOCUMENT-2024-0000000088","bronorganisatie":"123456782","creatiedatum":"2024-12-19","titel":"Form
018 (csv)","vertrouwelijkheidaanduiding":"openbaar","auteur":"Aanvrager","status":"definitief","formaat":"text/csv","taal":"eng","versie":1,"beginRegistratie":"2024-12-19T12:15:25.986595Z","bestandsnaam":"open-forms-Form
018 (csv).csv","inhoud":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/3b63cf06-20fc-4e94-912e-961a85a465e9/download?versie=1","bestandsomvang":175,"link":"","beschrijving":"Ingezonden
formulierdata","ontvangstdatum":null,"verzenddatum":null,"indicatieGebruiksrecht":false,"verschijningsvorm":"","ondertekening":{"soort":"","datum":null},"integriteit":{"algoritme":"","waarde":"","datum":null},"informatieobjecttype":"http://localhost:8003/catalogi/api/v1/informatieobjecttypen/d1cfb1d8-8593-4814-919d-72e38e80388f","locked":false,"bestandsdelen":[],"trefwoorden":[]}'
headers:
API-version:
Expand All @@ -251,7 +251,7 @@ interactions:
Cross-Origin-Opener-Policy:
- same-origin
ETag:
- '"5a77c55bfa52d6509314385573170fbd"'
- '"d5d3a004e302094178153496fbd097dc"'
Referrer-Policy:
- same-origin
Vary:
Expand All @@ -271,18 +271,18 @@ interactions:
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ0ZXN0X2NsaWVudF9pZCIsImlhdCI6MTcyNjQ5NjM2MiwiY2xpZW50X2lkIjoidGVzdF9jbGllbnRfaWQiLCJ1c2VyX2lkIjoiIiwidXNlcl9yZXByZXNlbnRhdGlvbiI6IiJ9.i4dqstVtjRbZvXWbWvePMpZXKaJMHa46vzpIJjR3C_s
- Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ0ZXN0X2NsaWVudF9pZCIsImlhdCI6MTczNDYxMDUyNywiY2xpZW50X2lkIjoidGVzdF9jbGllbnRfaWQiLCJ1c2VyX2lkIjoiIiwidXNlcl9yZXByZXNlbnRhdGlvbiI6IiJ9.j6VBzP1jDfEDAuoUS20eT0c7QRGrZcls8n0g0uYb-2k
Connection:
- keep-alive
User-Agent:
- python-requests/2.32.2
method: GET
uri: http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/e9059611-9abf-4c21-ad11-86b6a9dcbe1e
uri: http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/f98002c7-c166-4114-9b01-897b9ab15e12
response:
body:
string: '{"url":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/e9059611-9abf-4c21-ad11-86b6a9dcbe1e","identificatie":"DOCUMENT-2024-0000000067","bronorganisatie":"123456782","creatiedatum":"2024-09-16","titel":"Form
018","vertrouwelijkheidaanduiding":"openbaar","auteur":"Aanvrager","status":"definitief","formaat":"application/pdf","taal":"eng","versie":1,"beginRegistratie":"2024-09-16T14:19:21.842296Z","bestandsnaam":"open-forms-Form
018.pdf","inhoud":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/e9059611-9abf-4c21-ad11-86b6a9dcbe1e/download?versie=1","bestandsomvang":0,"link":"","beschrijving":"Ingezonden
string: '{"url":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/f98002c7-c166-4114-9b01-897b9ab15e12","identificatie":"DOCUMENT-2024-0000000087","bronorganisatie":"123456782","creatiedatum":"2024-12-19","titel":"Form
018","vertrouwelijkheidaanduiding":"openbaar","auteur":"Aanvrager","status":"definitief","formaat":"application/pdf","taal":"eng","versie":1,"beginRegistratie":"2024-12-19T12:15:25.876397Z","bestandsnaam":"open-forms-Form
018.pdf","inhoud":"http://localhost:8003/documenten/api/v1/enkelvoudiginformatieobjecten/f98002c7-c166-4114-9b01-897b9ab15e12/download?versie=1","bestandsomvang":0,"link":"","beschrijving":"Ingezonden
formulier","ontvangstdatum":null,"verzenddatum":null,"indicatieGebruiksrecht":false,"verschijningsvorm":"","ondertekening":{"soort":"","datum":null},"integriteit":{"algoritme":"","waarde":"","datum":null},"informatieobjecttype":"http://localhost:8003/catalogi/api/v1/informatieobjecttypen/f2908f6f-aa07-42ef-8760-74c5234f2d25","locked":false,"bestandsdelen":[],"trefwoorden":[]}'
headers:
API-version:
Expand All @@ -296,7 +296,7 @@ interactions:
Cross-Origin-Opener-Policy:
- same-origin
ETag:
- '"90d255d07c6e708d98977b9367c8fd31"'
- '"3098fe854bbeb9ee2bf7874dfe9ea8c9"'
Referrer-Policy:
- same-origin
Vary:
Expand Down
Loading

0 comments on commit 2b6e23a

Please sign in to comment.