{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateResourceResponseDTO", "title": "UpdateResourceResponseDTO", "type": "object", "description": "Response DTO containing a list of updated resources.", "example": { "response": [ { "id": "80f49a6e-11d7-4651-b730-99ed2f726f61", "resourceType": "team", "status": 200 }, { "id": "90f49a6e-11d7-4651-b730-99ed2f726f62", "resourceType": "desktop-profile", "status": 400, "apiError": { "trackingId": "ccconfig_7113a3e7-bc11-43f2-9f2d-ded48e8685cd", "error": { "key": "400", "reason": "400 BAD_REQUEST \"Entity not found or more than one entity found on the unique fields\"", "message": [ { "description": "400 BAD_REQUEST \"Entity not found or more than one entity found on the unique fields\"" } ] } } } ] }, "properties": { "response": { "type": "array", "description": "List of updated resources.", "items": { "$ref": "#/components/schemas/UpdateResourceDTO" } } } }