Component

A system component on the University of St Andrews service status page.

EducationHigher EducationUniversityResearchOpen AccessOAI-PMHScotlandUnited Kingdom

Properties

Name Type Description
id integer
state string
name string
description string
parent_id integernull
position integer
links object
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

university-of-st-andrews-component-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://status.st-andrews.ac.uk/schema/component.json",
  "title": "Component",
  "description": "A system component on the University of St Andrews service status page.",
  "type": "object",
  "properties": {
    "id": { "type": "integer" },
    "state": {
      "type": "string",
      "enum": ["operational", "degraded", "under_maintenance"]
    },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "parent_id": { "type": ["integer", "null"] },
    "position": { "type": "integer" },
    "links": {
      "type": "object",
      "properties": {
        "children": {
          "type": "object",
          "properties": {
            "href": { "type": "string" },
            "count": { "type": "integer" }
          }
        }
      }
    },
    "created_at": { "type": "string", "format": "date-time" },
    "updated_at": { "type": "string", "format": "date-time" }
  },
  "required": ["id", "state", "name"]
}