UCL · Schema

UCL API person

JSON Schema for the UCL API 'person' object, derived from the UCL API OpenAPI 3.0 description.

EducationHigher EducationUniversityUnited KingdomOpen DataResearchLibraryTimetable

Properties

Name Type Description
name string
status string
department string
email string
View JSON Schema on GitHub

JSON Schema

ucl-person-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ucl/main/json-schema/ucl-person-schema.json",
  "title": "UCL API person",
  "description": "JSON Schema for the UCL API 'person' object, derived from the UCL API OpenAPI 3.0 description.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "examples": [
        "Jane Doe"
      ]
    },
    "status": {
      "type": "string",
      "examples": [
        "Student"
      ]
    },
    "department": {
      "type": "string",
      "examples": [
        "Depet of Med Phys & Biomedical Eng"
      ]
    },
    "email": {
      "type": "string",
      "examples": [
        "[email protected]"
      ]
    }
  }
}