Page

The overall status page object for the University of St Andrews service status API.

EducationHigher EducationUniversityResearchOpen AccessOAI-PMHScotlandUnited Kingdom

Properties

Name Type Description
id integer
name string
state string
state_text string
url string
links object
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

university-of-st-andrews-page-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://status.st-andrews.ac.uk/schema/page.json",
  "title": "Page",
  "description": "The overall status page object for the University of St Andrews service status API.",
  "type": "object",
  "properties": {
    "id": { "type": "integer" },
    "name": { "type": "string" },
    "state": {
      "type": "string",
      "enum": ["operational", "degraded", "under_maintenance"]
    },
    "state_text": { "type": "string" },
    "url": { "type": "string", "format": "uri" },
    "links": {
      "type": "object",
      "properties": {
        "components": {
          "type": "object",
          "properties": {
            "href": { "type": "string" },
            "count": { "type": "integer" }
          }
        },
        "notices": {
          "type": "object",
          "properties": {
            "href": { "type": "string" },
            "count": { "type": "integer" }
          }
        },
        "self": { "type": "string" }
      }
    },
    "created_at": { "type": "string", "format": "date-time" },
    "updated_at": { "type": "string", "format": "date-time" }
  },
  "required": ["name", "state"]
}