{ "mtlsRootUrl": "https://area120tables.mtls.googleapis.com/", "protocol": "rest", "version_module": true, "baseUrl": "https://area120tables.googleapis.com/", "auth": { "oauth2": { "scopes": { "https://www.googleapis.com/auth/spreadsheets": { "description": "See, edit, create, and delete all your Google Sheets spreadsheets" }, "https://www.googleapis.com/auth/drive": { "description": "See, edit, create, and delete all of your Google Drive files" }, "https://www.googleapis.com/auth/drive.file": { "description": "See, edit, create, and delete only the specific Google Drive files you use with this app" }, "https://www.googleapis.com/auth/tables": { "description": "See, edit, create, and delete your tables in Tables by Area 120" }, "https://www.googleapis.com/auth/drive.readonly": { "description": "See and download all your Google Drive files" }, "https://www.googleapis.com/auth/spreadsheets.readonly": { "description": "See all your Google Sheets spreadsheets" } } } }, "kind": "discovery#restDescription", "version": "v1alpha1", "title": "Area120 Tables API", "documentationLink": "https://support.google.com/area120-tables/answer/10011390", "ownerDomain": "google.com", "rootUrl": "https://area120tables.googleapis.com/", "servicePath": "", "ownerName": "Google", "schemas": { "BatchCreateRowsRequest": { "id": "BatchCreateRowsRequest", "properties": { "requests": { "type": "array", "description": "Required. The request message specifying the rows to create. A maximum of 500 rows can be created in a single batch.", "items": { "$ref": "CreateRowRequest" } } }, "description": "Request message for TablesService.BatchCreateRows.", "type": "object" }, "Workspace": { "id": "Workspace", "properties": { "updateTime": { "type": "string", "format": "google-datetime", "description": "Time when the workspace was last updated." }, "name": { "type": "string", "description": "The resource name of the workspace. Workspace names have the form `workspaces/{workspace}`." }, "displayName": { "description": "The human readable title of the workspace.", "type": "string" }, "tables": { "description": "The list of tables in the workspace.", "type": "array", "items": { "$ref": "Table" } }, "createTime": { "format": "google-datetime", "type": "string", "description": "Time when the workspace was created." } }, "description": "A single workspace.", "type": "object" }, "ListTablesResponse": { "properties": { "nextPageToken": { "type": "string", "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is empty, there are no subsequent pages." }, "tables": { "description": "The list of tables.", "type": "array", "items": { "$ref": "Table" } } }, "description": "Response message for TablesService.ListTables.", "id": "ListTablesResponse", "type": "object" }, "Row": { "properties": { "updateTime": { "description": "Time when the row was last updated.", "format": "google-datetime", "type": "string" }, "values": { "additionalProperties": { "type": "any" }, "description": "The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.", "type": "object" }, "name": { "description": "The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.", "type": "string" }, "createTime": { "description": "Time when the row was created.", "format": "google-datetime", "type": "string" } }, "type": "object", "id": "Row", "description": "A single row in a table." }, "Empty": { "properties": {}, "description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }", "type": "object", "id": "Empty" }, "CreateRowRequest": { "description": "Request message for TablesService.CreateRow.", "type": "object", "properties": { "row": { "$ref": "Row", "description": "Required. The row to create." }, "view": { "enumDescriptions": [ "Defaults to user entered text.", "Uses internally generated column id to identify values." ], "enum": [ "VIEW_UNSPECIFIED", "COLUMN_ID_VIEW" ], "type": "string", "description": "Optional. Column key to use for values in the row. Defaults to user entered name." }, "parent": { "type": "string", "description": "Required. The parent table where this row will be created. Format: tables/{table}" } }, "id": "CreateRowRequest" }, "LookupDetails": { "type": "object", "id": "LookupDetails", "properties": { "relationshipColumnId": { "type": "string", "description": "The id of the relationship column." }, "relationshipColumn": { "description": "The name of the relationship column associated with the lookup.", "type": "string" } }, "description": "Details about a lookup column whose value comes from the associated relationship." }, "ListWorkspacesResponse": { "description": "Response message for TablesService.ListWorkspaces.", "type": "object", "properties": { "workspaces": { "items": { "$ref": "Workspace" }, "description": "The list of workspaces.", "type": "array" }, "nextPageToken": { "type": "string", "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is empty, there are no subsequent pages." } }, "id": "ListWorkspacesResponse" }, "ColumnDescription": { "properties": { "relationshipDetails": { "$ref": "RelationshipDetails", "description": "Optional. Additional details about a relationship column. Specified when data_type is relationship." }, "dateDetails": { "$ref": "DateDetails", "description": "Optional. Additional details about a date column." }, "multipleValuesDisallowed": { "description": "Optional. Indicates whether or not multiple values are allowed for array types where such a restriction is possible.", "type": "boolean" }, "readonly": { "description": "Optional. Indicates that values for the column cannot be set by the user.", "type": "boolean" }, "name": { "description": "column name", "type": "string" }, "id": { "description": "Internal id for a column.", "type": "string" }, "labels": { "type": "array", "items": { "$ref": "LabeledItem" }, "description": "Optional. Range of labeled values for the column. Some columns like tags and drop-downs limit the values to a set of possible values. We return the range of values in such cases to help clients implement better user data validation." }, "lookupDetails": { "description": "Optional. Indicates that this is a lookup column whose value is derived from the relationship column specified in the details. Lookup columns can not be updated directly. To change the value you must update the associated relationship column.", "$ref": "LookupDetails" }, "dataType": { "type": "string", "description": "Data type of the column Supported types are auto_id, boolean, boolean_list, creator, create_timestamp, date, dropdown, location, integer, integer_list, number, number_list, person, person_list, tags, check_list, text, text_list, update_timestamp, updater, relationship, file_attachment_list. These types directly map to the column types supported on Tables website." } }, "type": "object", "id": "ColumnDescription", "description": "Details on a column in the table." }, "DateDetails": { "id": "DateDetails", "properties": { "hasTime": { "description": "Whether the date column includes time.", "type": "boolean" } }, "description": "Details about a date column.", "type": "object" }, "BatchUpdateRowsRequest": { "type": "object", "id": "BatchUpdateRowsRequest", "description": "Request message for TablesService.BatchUpdateRows.", "properties": { "requests": { "items": { "$ref": "UpdateRowRequest" }, "description": "Required. The request messages specifying the rows to update. A maximum of 500 rows can be modified in a single batch.", "type": "array" } } }, "LabeledItem": { "type": "object", "id": "LabeledItem", "properties": { "id": { "type": "string", "description": "Internal id associated with the item." }, "name": { "description": "Display string as entered by user.", "type": "string" } }, "description": "A single item in a labeled column." }, "BatchCreateRowsResponse": { "properties": { "rows": { "description": "The created rows.", "items": { "$ref": "Row" }, "type": "array" } }, "description": "Response message for TablesService.BatchCreateRows.", "id": "BatchCreateRowsResponse", "type": "object" }, "UpdateRowRequest": { "description": "Request message for TablesService.UpdateRow.", "id": "UpdateRowRequest", "properties": { "view": { "type": "string", "enumDescriptions": [ "Defaults to user entered text.", "Uses internally generated column id to identify values." ], "enum": [ "VIEW_UNSPECIFIED", "COLUMN_ID_VIEW" ], "description": "Optional. Column key to use for values in the row. Defaults to user entered name." }, "updateMask": { "type": "string", "format": "google-fieldmask", "description": "The list of fields to update." }, "row": { "description": "Required. The row to update.", "$ref": "Row" } }, "type": "object" }, "SavedView": { "type": "object", "description": "A saved view of a table. NextId: 3", "id": "SavedView", "properties": { "id": { "type": "string", "description": "Internal id associated with the saved view." }, "name": { "description": "Display name of the saved view.", "type": "string" } } }, "RelationshipDetails": { "description": "Details about a relationship column.", "id": "RelationshipDetails", "properties": { "linkedTable": { "description": "The name of the table this relationship is linked to.", "type": "string" } }, "type": "object" }, "Table": { "id": "Table", "type": "object", "description": "A single table. NextId: 8", "properties": { "createTime": { "format": "google-datetime", "type": "string", "description": "Time when the table was created." }, "updateTime": { "description": "Time when the table was last updated excluding updates to individual rows", "format": "google-datetime", "type": "string" }, "savedViews": { "items": { "$ref": "SavedView" }, "type": "array", "description": "Saved views for this table." }, "columns": { "items": { "$ref": "ColumnDescription" }, "type": "array", "description": "List of columns in this table. Order of columns matches the display order." }, "timeZone": { "description": "The time zone of the table. IANA Time Zone Database time zone, e.g. \"America/New_York\".", "type": "string" }, "name": { "type": "string", "description": "The resource name of the table. Table names have the form `tables/{table}`." }, "displayName": { "description": "The human readable title of the table.", "type": "string" } } }, "BatchUpdateRowsResponse": { "type": "object", "description": "Response message for TablesService.BatchUpdateRows.", "id": "BatchUpdateRowsResponse", "properties": { "rows": { "type": "array", "description": "The updated rows.", "items": { "$ref": "Row" } } } }, "BatchDeleteRowsRequest": { "type": "object", "id": "BatchDeleteRowsRequest", "properties": { "names": { "items": { "type": "string" }, "description": "Required. The names of the rows to delete. All rows must belong to the parent table or else the entire batch will fail. A maximum of 500 rows can be deleted in a batch. Format: tables/{table}/rows/{row}", "type": "array" } }, "description": "Request message for TablesService.BatchDeleteRows" }, "ListRowsResponse": { "properties": { "rows": { "items": { "$ref": "Row" }, "description": "The rows from the specified table.", "type": "array" }, "nextPageToken": { "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is empty, there are no subsequent pages.", "type": "string" } }, "description": "Response message for TablesService.ListRows.", "id": "ListRowsResponse", "type": "object" } }, "description": "", "id": "area120tables:v1alpha1", "resources": { "workspaces": { "methods": { "get": { "parameterOrder": [ "name" ], "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/spreadsheets.readonly", "https://www.googleapis.com/auth/tables" ], "response": { "$ref": "Workspace" }, "id": "area120tables.workspaces.get", "path": "v1alpha1/{+name}", "flatPath": "v1alpha1/workspaces/{workspacesId}", "parameters": { "name": { "location": "path", "pattern": "^workspaces/[^/]+$", "description": "Required. The name of the workspace to retrieve. Format: workspaces/{workspace}", "required": true, "type": "string" } }, "description": "Gets a workspace. Returns NOT_FOUND if the workspace does not exist.", "httpMethod": "GET" }, "list": { "response": { "$ref": "ListWorkspacesResponse" }, "id": "area120tables.workspaces.list", "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/spreadsheets.readonly", "https://www.googleapis.com/auth/tables" ], "flatPath": "v1alpha1/workspaces", "parameterOrder": [], "description": "Lists workspaces for the user.", "path": "v1alpha1/workspaces", "parameters": { "pageToken": { "location": "query", "type": "string", "description": "A page token, received from a previous `ListWorkspaces` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListWorkspaces` must match the call that provided the page token." }, "pageSize": { "description": "The maximum number of workspaces to return. The service may return fewer than this value. If unspecified, at most 10 workspaces are returned. The maximum value is 25; values above 25 are coerced to 25.", "type": "integer", "location": "query", "format": "int32" } }, "httpMethod": "GET" } } }, "tables": { "resources": { "rows": { "methods": { "batchDelete": { "httpMethod": "POST", "id": "area120tables.tables.rows.batchDelete", "path": "v1alpha1/{+parent}/rows:batchDelete", "parameterOrder": [ "parent" ], "flatPath": "v1alpha1/tables/{tablesId}/rows:batchDelete", "parameters": { "parent": { "type": "string", "description": "Required. The parent table shared by all rows being deleted. Format: tables/{table}", "pattern": "^tables/[^/]+$", "location": "path", "required": true } }, "description": "Deletes multiple rows.", "response": { "$ref": "Empty" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/tables" ], "request": { "$ref": "BatchDeleteRowsRequest" } }, "delete": { "httpMethod": "DELETE", "parameters": { "name": { "type": "string", "location": "path", "required": true, "pattern": "^tables/[^/]+/rows/[^/]+$", "description": "Required. The name of the row to delete. Format: tables/{table}/rows/{row}" } }, "parameterOrder": [ "name" ], "flatPath": "v1alpha1/tables/{tablesId}/rows/{rowsId}", "description": "Deletes a row.", "path": "v1alpha1/{+name}", "response": { "$ref": "Empty" }, "id": "area120tables.tables.rows.delete", "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/tables" ] }, "batchUpdate": { "id": "area120tables.tables.rows.batchUpdate", "description": "Updates multiple rows.", "parameterOrder": [ "parent" ], "response": { "$ref": "BatchUpdateRowsResponse" }, "request": { "$ref": "BatchUpdateRowsRequest" }, "parameters": { "parent": { "description": "Required. The parent table shared by all rows being updated. Format: tables/{table}", "required": true, "type": "string", "location": "path", "pattern": "^tables/[^/]+$" } }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/tables" ], "flatPath": "v1alpha1/tables/{tablesId}/rows:batchUpdate", "httpMethod": "POST", "path": "v1alpha1/{+parent}/rows:batchUpdate" }, "create": { "path": "v1alpha1/{+parent}/rows", "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/tables" ], "description": "Creates a row.", "id": "area120tables.tables.rows.create", "parameters": { "parent": { "location": "path", "pattern": "^tables/[^/]+$", "type": "string", "description": "Required. The parent table where this row will be created. Format: tables/{table}", "required": true }, "view": { "type": "string", "enumDescriptions": [ "Defaults to user entered text.", "Uses internally generated column id to identify values." ], "location": "query", "enum": [ "VIEW_UNSPECIFIED", "COLUMN_ID_VIEW" ], "description": "Optional. Column key to use for values in the row. Defaults to user entered name." } }, "response": { "$ref": "Row" }, "parameterOrder": [ "parent" ], "request": { "$ref": "Row" }, "flatPath": "v1alpha1/tables/{tablesId}/rows", "httpMethod": "POST" }, "get": { "description": "Gets a row. Returns NOT_FOUND if the row does not exist in the table.", "id": "area120tables.tables.rows.get", "path": "v1alpha1/{+name}", "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/spreadsheets.readonly", "https://www.googleapis.com/auth/tables" ], "flatPath": "v1alpha1/tables/{tablesId}/rows/{rowsId}", "response": { "$ref": "Row" }, "httpMethod": "GET", "parameterOrder": [ "name" ], "parameters": { "name": { "location": "path", "type": "string", "required": true, "description": "Required. The name of the row to retrieve. Format: tables/{table}/rows/{row}", "pattern": "^tables/[^/]+/rows/[^/]+$" }, "view": { "enum": [ "VIEW_UNSPECIFIED", "COLUMN_ID_VIEW" ], "description": "Optional. Column key to use for values in the row. Defaults to user entered name.", "enumDescriptions": [ "Defaults to user entered text.", "Uses internally generated column id to identify values." ], "type": "string", "location": "query" } } }, "batchCreate": { "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/tables" ], "id": "area120tables.tables.rows.batchCreate", "httpMethod": "POST", "parameterOrder": [ "parent" ], "parameters": { "parent": { "pattern": "^tables/[^/]+$", "location": "path", "required": true, "description": "Required. The parent table where the rows will be created. Format: tables/{table}", "type": "string" } }, "request": { "$ref": "BatchCreateRowsRequest" }, "response": { "$ref": "BatchCreateRowsResponse" }, "flatPath": "v1alpha1/tables/{tablesId}/rows:batchCreate", "description": "Creates multiple rows.", "path": "v1alpha1/{+parent}/rows:batchCreate" }, "list": { "parameterOrder": [ "parent" ], "response": { "$ref": "ListRowsResponse" }, "description": "Lists rows in a table. Returns NOT_FOUND if the table does not exist.", "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/spreadsheets.readonly", "https://www.googleapis.com/auth/tables" ], "path": "v1alpha1/{+parent}/rows", "flatPath": "v1alpha1/tables/{tablesId}/rows", "httpMethod": "GET", "id": "area120tables.tables.rows.list", "parameters": { "filter": { "location": "query", "type": "string", "description": "Optional. Filter to only include resources matching the requirements. For more information, see [Filtering list results](https://support.google.com/area120-tables/answer/10503371)." }, "view": { "enum": [ "VIEW_UNSPECIFIED", "COLUMN_ID_VIEW" ], "location": "query", "type": "string", "description": "Optional. Column key to use for values in the row. Defaults to user entered name.", "enumDescriptions": [ "Defaults to user entered text.", "Uses internally generated column id to identify values." ] }, "pageToken": { "location": "query", "type": "string", "description": "A page token, received from a previous `ListRows` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListRows` must match the call that provided the page token." }, "pageSize": { "description": "The maximum number of rows to return. The service may return fewer than this value. If unspecified, at most 50 rows are returned. The maximum value is 1,000; values above 1,000 are coerced to 1,000.", "location": "query", "type": "integer", "format": "int32" }, "parent": { "pattern": "^tables/[^/]+$", "description": "Required. The parent table. Format: tables/{table}", "type": "string", "required": true, "location": "path" }, "orderBy": { "type": "string", "description": "Optional. Sorting order for the list of rows on createTime/updateTime.", "location": "query" } } }, "patch": { "description": "Updates a row.", "flatPath": "v1alpha1/tables/{tablesId}/rows/{rowsId}", "httpMethod": "PATCH", "path": "v1alpha1/{+name}", "request": { "$ref": "Row" }, "id": "area120tables.tables.rows.patch", "parameterOrder": [ "name" ], "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/tables" ], "response": { "$ref": "Row" }, "parameters": { "name": { "location": "path", "type": "string", "description": "The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.", "required": true, "pattern": "^tables/[^/]+/rows/[^/]+$" }, "updateMask": { "format": "google-fieldmask", "description": "The list of fields to update.", "location": "query", "type": "string" }, "view": { "type": "string", "location": "query", "enumDescriptions": [ "Defaults to user entered text.", "Uses internally generated column id to identify values." ], "description": "Optional. Column key to use for values in the row. Defaults to user entered name.", "enum": [ "VIEW_UNSPECIFIED", "COLUMN_ID_VIEW" ] } } } } } }, "methods": { "list": { "description": "Lists tables for the user.", "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/spreadsheets.readonly", "https://www.googleapis.com/auth/tables" ], "parameterOrder": [], "response": { "$ref": "ListTablesResponse" }, "id": "area120tables.tables.list", "path": "v1alpha1/tables", "parameters": { "orderBy": { "description": "Optional. Sorting order for the list of tables on createTime/updateTime.", "location": "query", "type": "string" }, "pageSize": { "format": "int32", "description": "The maximum number of tables to return. The service may return fewer than this value. If unspecified, at most 20 tables are returned. The maximum value is 100; values above 100 are coerced to 100.", "type": "integer", "location": "query" }, "pageToken": { "location": "query", "type": "string", "description": "A page token, received from a previous `ListTables` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListTables` must match the call that provided the page token." } }, "flatPath": "v1alpha1/tables", "httpMethod": "GET" }, "get": { "id": "area120tables.tables.get", "description": "Gets a table. Returns NOT_FOUND if the table does not exist.", "parameterOrder": [ "name" ], "flatPath": "v1alpha1/tables/{tablesId}", "path": "v1alpha1/{+name}", "httpMethod": "GET", "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/spreadsheets.readonly", "https://www.googleapis.com/auth/tables" ], "response": { "$ref": "Table" }, "parameters": { "name": { "required": true, "type": "string", "location": "path", "pattern": "^tables/[^/]+$", "description": "Required. The name of the table to retrieve. Format: tables/{table}" } } } } } }, "fullyEncodeReservedExpansion": true, "parameters": { "oauth_token": { "location": "query", "description": "OAuth 2.0 token for the current user.", "type": "string" }, "upload_protocol": { "location": "query", "type": "string", "description": "Upload protocol for media (e.g. \"raw\", \"multipart\")." }, "callback": { "type": "string", "description": "JSONP", "location": "query" }, "prettyPrint": { "type": "boolean", "default": "true", "description": "Returns response with indentations and line breaks.", "location": "query" }, "key": { "location": "query", "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.", "type": "string" }, "fields": { "description": "Selector specifying which fields to include in a partial response.", "type": "string", "location": "query" }, "$.xgafv": { "type": "string", "description": "V1 error format.", "enum": [ "1", "2" ], "enumDescriptions": [ "v1 error format", "v2 error format" ], "location": "query" }, "quotaUser": { "description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.", "location": "query", "type": "string" }, "access_token": { "description": "OAuth access token.", "type": "string", "location": "query" }, "alt": { "enumDescriptions": [ "Responses with Content-Type of application/json", "Media download with context-dependent Content-Type", "Responses with Content-Type of application/x-protobuf" ], "location": "query", "type": "string", "default": "json", "description": "Data format for response.", "enum": [ "json", "media", "proto" ] }, "uploadType": { "location": "query", "description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").", "type": "string" } }, "canonicalName": "Area120 Tables", "icons": { "x32": "http://www.google.com/images/icons/product/search-32.gif", "x16": "http://www.google.com/images/icons/product/search-16.gif" }, "batchPath": "batch", "revision": "20220319", "basePath": "", "discoveryVersion": "v1", "name": "area120tables" }