Observatory

A ground-based observatory site hosting SRS instruments.

EducationHigher EducationUniversityResearchOpen DataRepositorySpace PhysicsCanada

Properties

Name Type Description
uid string Short observatory site code.
full_name string
geodetic_latitude number
geodetic_longitude number
View JSON Schema on GitHub

JSON Schema

university-of-calgary-observatory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/university-of-calgary/main/json-schema/university-of-calgary-observatory-schema.json",
  "title": "Observatory",
  "description": "A ground-based observatory site hosting SRS instruments.",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "description": "Short observatory site code."
    },
    "full_name": {
      "type": "string"
    },
    "geodetic_latitude": {
      "type": "number"
    },
    "geodetic_longitude": {
      "type": "number"
    }
  },
  "required": [
    "uid",
    "full_name",
    "geodetic_latitude",
    "geodetic_longitude"
  ]
}