Unified.to · Schema

CityTarget

IntegrationsUnified API

Properties

Name Type Description
id string
name string
radius number
radius_unit string
View JSON Schema on GitHub

JSON Schema

unified-to-citytarget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CityTarget",
  "title": "CityTarget",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "radius": {
      "type": "number"
    },
    "radius_unit": {
      "enum": [
        "MILES",
        "KILOMETERS"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}