Building

Represents a building on the University of Maryland campus in the umd.io API.

EducationHigher EducationUniversityUnited StatesOpen DataCoursesStudent Run

Properties

Name Type Description
name string Name of the building.
code string Shortened building code. Not all buildings have these.
id string Unique building id.
long number Longitude.
lat number Latitude.
View JSON Schema on GitHub

JSON Schema

university-of-maryland-college-park-building-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.umd.io/v1/schemas/building.json",
  "title": "Building",
  "description": "Represents a building on the University of Maryland campus in the umd.io API.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the building.",
      "examples": ["Edward St. John Learning and Teaching Center"]
    },
    "code": {
      "type": "string",
      "description": "Shortened building code. Not all buildings have these.",
      "examples": ["ESJ"]
    },
    "id": {
      "type": "string",
      "description": "Unique building id.",
      "examples": ["226"]
    },
    "long": {
      "type": "number",
      "description": "Longitude.",
      "examples": [-76.941914]
    },
    "lat": {
      "type": "number",
      "description": "Latitude.",
      "examples": [38.986699]
    }
  }
}