
$schema: http://json-schema.org/draft-07/schema#
$id: Institution
$async: true
title: Basics about an institution
type: object
properties:
  name:
    title: Name of the institution used colloquially
    type: string
  legal:
    $ref: institution-legal.schema.yml
  category:
    $ref: institution-category.schema.yml
  address:
    $ref: address.schema.yml
  founded:
    title: Date the institution as founded
    type: string
    format: date
  staff:
    title: Number of staff at the institution
    type: integer
required:
  - legal
