Dartmouth College · Schema

Dartmouth Open Data OGC Item Collection

A GeoJSON FeatureCollection response from the ArcGIS Hub Search API items endpoint used by the Dartmouth Open Data portal. Derived from the OgcItemResponseDto schema of the Hub Search API OpenAPI definition.

EducationHigher EducationUniversityResearchOpen DataArtificial IntelligenceUnited StatesIvy League

Properties

Name Type Description
type string
timestamp string Time the response was generated.
numberReturned number Count of items returned in this page.
numberMatched number Total count of items matching the query.
features array
View JSON Schema on GitHub

JSON Schema

dartmouth-itemcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dartmouth/main/json-schema/dartmouth-itemcollection-schema.json",
  "title": "Dartmouth Open Data OGC Item Collection",
  "description": "A GeoJSON FeatureCollection response from the ArcGIS Hub Search API items endpoint used by the Dartmouth Open Data portal. Derived from the OgcItemResponseDto schema of the Hub Search API OpenAPI definition.",
  "type": "object",
  "required": ["type", "timestamp", "numberReturned", "numberMatched", "features"],
  "properties": {
    "type": {
      "type": "string",
      "enum": ["FeatureCollection"]
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Time the response was generated."
    },
    "numberReturned": {
      "type": "number",
      "description": "Count of items returned in this page."
    },
    "numberMatched": {
      "type": "number",
      "description": "Total count of items matching the query."
    },
    "features": {
      "type": "array",
      "items": { "$ref": "dartmouth-item-schema.json" }
    }
  }
}