ResponseMetadata Data Type

Information about a search query and the result set.

Properties
name data type description
query map of object Information about the search query that was executed.
resultset ResultSetMetadata Information about the result set.

Example

{
  "query" : {
    "property1" : { },
    "property2" : { }
  },
  "resultset" : {
    "count" : 10,
    "from" : 2,
    "size" : 8,
    "truncated" : true
  }
}