Places

Defines a local entity answer.

APIs.ioEngineeringPlatform

Properties

Name Type Description
value array A list of local entities, such as restaurants or hotels.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-places-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Places",
  "title": "Places",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "array",
      "description": "A list of local entities, such as restaurants or hotels.",
      "items": {
        "$ref": "#/components/schemas/Thing"
      }
    }
  },
  "description": "Defines a local entity answer.",
  "allOf": [
    {
      "$ref": "#/components/schemas/SearchResultsAnswer"
    }
  ]
}