Common Room · Schema

ApiLocation

A best-effort location, with each component populated when known.

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

Properties

Name Type Description
city string City name
region string State, province, or region name
country string Country name
View JSON Schema on GitHub

JSON Schema

common-room-v2-apilocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/v2/apilocation",
  "title": "ApiLocation",
  "type": "object",
  "description": "A best-effort location, with each component populated when known.",
  "properties": {
    "city": {
      "type": "string",
      "description": "City name"
    },
    "region": {
      "type": "string",
      "description": "State, province, or region name"
    },
    "country": {
      "type": "string",
      "description": "Country name"
    }
  }
}