University of Warsaw · JSON Structure

University Of Warsaw Installation Structure

JSON Structure for a University of Warsaw USOS API installation object (services/apisrv/installation).

Type: object Properties: 9
EducationHigher EducationUniversityPolandAcademic DataResearch DataOpen Data

USOSInstallation is a JSON Structure definition published by University of Warsaw, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

base_url version machine_version usos_schema_version institution_name contact_emails schac_id mcards_support mobile_usos_support

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/university-of-warsaw/main/json-structure/university-of-warsaw-installation-structure.json",
  "name": "USOSInstallation",
  "description": "JSON Structure for a University of Warsaw USOS API installation object (services/apisrv/installation).",
  "type": "object",
  "properties": {
    "base_url": { "type": "string", "description": "Base URL of this installation." },
    "version": { "type": "string", "description": "Human-readable version string." },
    "machine_version": { "type": "string", "description": "Machine-readable version in 0.0.0.0-0 format." },
    "usos_schema_version": { "type": "string", "description": "USOS database schema version." },
    "institution_name": { "type": { "$ref": "#/definitions/LangDict" }, "description": "Owning institution name.", "nullable": true },
    "contact_emails": {
      "type": "array",
      "description": "Administrator email addresses.",
      "items": { "type": "string" }
    },
    "schac_id": { "type": "string", "description": "Institution ID in SCHAC format." },
    "mcards_support": { "type": "boolean" },
    "mobile_usos_support": { "type": "boolean" }
  },
  "definitions": {
    "LangDict": {
      "type": "object",
      "properties": {
        "pl": { "type": "string" },
        "en": { "type": "string" }
      }
    }
  }
}