SearchResponse
Phản hồi cho yêu cầu tìm kiếm người dùng đã xác thực, dựa trên một truy vấn.
Biểu diễn dưới dạng JSON |
{
"results": [
{
object (SearchResult )
}
]
} |
SearchResult
Kết quả của một cụm từ tìm kiếm.
Biểu diễn dưới dạng JSON |
{
"person": {
object (Person )
}
} |
Trường |
person |
object (Person )
Người trùng khớp.
|
Trừ phi có lưu ý khác, nội dung của trang này được cấp phép theo Giấy phép ghi nhận tác giả 4.0 của Creative Commons và các mẫu mã lập trình được cấp phép theo Giấy phép Apache 2.0. Để biết thông tin chi tiết, vui lòng tham khảo Chính sách trang web của Google Developers. Java là nhãn hiệu đã đăng ký của Oracle và/hoặc các đơn vị liên kết với Oracle.
Cập nhật lần gần đây nhất: 2024-08-21 UTC.
[null,null,["Cập nhật lần gần đây nhất: 2024-08-21 UTC."],[[["This documentation details the response to a search request, providing the structure of the returned data in JSON format."],["The response includes a list of search results, with each result containing information about a matched person."],["The `SearchResult` object within the response provides access to the detailed `Person` object, which contains further information about the individual."]]],["The core content defines the structure of a search response. A search request returns a JSON object containing an array of `results`. Each `result` is a `SearchResult` object, which in turn contains a `person` object. The `results` array holds the matched people found from the search query, with each person represented by their respective object. The schema is described using JSON.\n"]]