How do I map nested JSON from an external REST API in a Data Action? I’m calling a service that returns {"data": {"id": 123}}. When I try to map response.data.id in the Data Action settings, Architect throws a validation error. I’ve tried response['data']['id'] but it fails. Does the mapping syntax support dot notation for nested objects, or do I need to flatten the response first?