| diff --git a/discovery/googleapis/firestore__v1.json b/discovery/googleapis/firestore__v1.json |
| index 80d5085b7..d97c5a411 100644 |
| --- a/discovery/googleapis/firestore__v1.json |
| +++ b/discovery/googleapis/firestore__v1.json |
| @@ -1478,27 +1478,30 @@ |
| "BatchGetDocumentsResponse": { |
| "description": "The streamed response for Firestore.BatchGetDocuments.", |
| "id": "BatchGetDocumentsResponse", |
| - "properties": { |
| - "found": { |
| - "$ref": "Document", |
| - "description": "A document that was requested." |
| + "items": { |
| + "properties": { |
| + "found": { |
| + "$ref": "Document", |
| + "description": "A document that was requested." |
| + }, |
| + "missing": { |
| + "description": "A document name that was requested but does not exist. In the format: `projects/{project_id}/databases/{database_id}/documents/{document_path}`.", |
| + "type": "string" |
| + }, |
| + "readTime": { |
| + "description": "The time at which the document was read. This may be monotically increasing, in this case the previous documents in the result stream are guaranteed not to have changed between their read_time and this one.", |
| + "format": "google-datetime", |
| + "type": "string" |
| + }, |
| + "transaction": { |
| + "description": "The transaction that was started as part of this request. Will only be set in the first response, and only if BatchGetDocumentsRequest.new_transaction was set in the request.", |
| + "format": "byte", |
| + "type": "string" |
| + } |
| }, |
| - "missing": { |
| - "description": "A document name that was requested but does not exist. In the format: `projects/{project_id}/databases/{database_id}/documents/{document_path}`.", |
| - "type": "string" |
| - }, |
| - "readTime": { |
| - "description": "The time at which the document was read. This may be monotically increasing, in this case the previous documents in the result stream are guaranteed not to have changed between their read_time and this one.", |
| - "format": "google-datetime", |
| - "type": "string" |
| - }, |
| - "transaction": { |
| - "description": "The transaction that was started as part of this request. Will only be set in the first response, and only if BatchGetDocumentsRequest.new_transaction was set in the request.", |
| - "format": "byte", |
| - "type": "string" |
| - } |
| + "type": "object" |
| }, |
| - "type": "object" |
| + "type": "array" |
| }, |
| "BatchWriteRequest": { |
| "description": "The request for Firestore.BatchWrite.", |