Replica · Schema

Daily O-D Pairs

One row of Replica's "Daily O-D Pairs" dataset. Derived from the published schema table at https://documentation.replicahq.com/docs/daily-o-d-data.

CompanyDataMobilityTransportationGeospatialUrban PlanningTravel Demand ModelingGovernmentAnalyticsData Platform

Properties

Name Type Description
geoid_origin stringnull The ID of the geographic feature where the trips originate. If the feature is a Census geography, this field will contain its FIPS code.
geo_name_origin stringnull The name of the geographic feature where the trips originate.
geoid_destination stringnull The ID of the geographic feature where the trips terminate. If the feature is a Census geography, this field will contain its FIPS code.
geo_name_destination stringnull The name of the geographic feature where the trips terminate.
date stringnull The date at which OD counts are estimated in the format YYYY-MM-DD. Similar to the hour, this date is reported in local time at the centroid of the starting H3 cell.
trips stringnull The estimated daily OD count for the selected start and end geography on the estimation date.
View JSON Schema on GitHub

JSON Schema

replica-daily-o-d-data.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/replica/refs/heads/main/json-schema/replica-daily-o-d-data.json",
  "title": "Daily O-D Pairs",
  "description": "One row of Replica's \"Daily O-D Pairs\" dataset. Derived from the published schema table at https://documentation.replicahq.com/docs/daily-o-d-data.",
  "x-source": "https://documentation.replicahq.com/docs/daily-o-d-data",
  "x-generated": "2026-08-02",
  "x-method": "derived",
  "x-status": "active",
  "type": "object",
  "properties": {
    "geoid_origin": {
      "type": [
        "string",
        "null"
      ],
      "description": "The ID of the geographic feature where the trips originate. If the feature is a Census geography, this field will contain its FIPS code."
    },
    "geo_name_origin": {
      "type": [
        "string",
        "null"
      ],
      "description": "The name of the geographic feature where the trips originate."
    },
    "geoid_destination": {
      "type": [
        "string",
        "null"
      ],
      "description": "The ID of the geographic feature where the trips terminate. If the feature is a Census geography, this field will contain its FIPS code."
    },
    "geo_name_destination": {
      "type": [
        "string",
        "null"
      ],
      "description": "The name of the geographic feature where the trips terminate."
    },
    "date": {
      "type": [
        "string",
        "null"
      ],
      "description": "The date at which OD counts are estimated in the format YYYY-MM-DD. Similar to the hour, this date is reported in local time at the centroid of the starting H3 cell."
    },
    "trips": {
      "type": [
        "string",
        "null"
      ],
      "description": "The estimated daily OD count for the selected start and end geography on the estimation date."
    }
  },
  "additionalProperties": true
}