{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CrmObjectsResponse", "title": "CrmObjectsResponse", "type": "object", "properties": { "requestId": { "type": "string", "description": "A unique identifier for the request." }, "objects": { "type": "array", "items": { "type": "object", "properties": { "objectId": { "type": "string" }, "objectType": { "type": "string" }, "fields": { "type": "object", "additionalProperties": { "type": "string" } } } }, "description": "List of CRM objects." } } }