Datafiniti · Schema

SearchResponse

Business DataData AggregationData as a ServicePeople DataProduct DataProperty Data

Properties

Name Type Description
num_found integer
num_records integer
records array
download_id string
download_url string
View JSON Schema on GitHub

JSON Schema

datafiniti-searchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchResponse",
  "title": "SearchResponse",
  "type": "object",
  "properties": {
    "num_found": {
      "type": "integer"
    },
    "num_records": {
      "type": "integer"
    },
    "records": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "download_id": {
      "type": "string"
    },
    "download_url": {
      "type": "string",
      "format": "uri"
    }
  }
}