Opendatasoft · Schema

Record

Open DataDatasetsPublic DataODataRESTGovernmentCities

Properties

Name Type Description
_id string
_timestamp string
_size integer
_links array
View JSON Schema on GitHub

JSON Schema

record.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/opendatasoft/refs/heads/main/json-schema/record.json",
  "title": "Record",
  "type": "object",
  "properties": {
    "_id": {
      "type": "string"
    },
    "_timestamp": {
      "type": "string",
      "format": "dateTime"
    },
    "_size": {
      "type": "integer",
      "format": "int64"
    },
    "_links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/links"
      }
    }
  },
  "additionalProperties": {
    "type": "any"
  }
}