University of Helsinki Forms API

The Forms API from University of Helsinki — 4 operation(s) for forms.

Operations 7

GET /forms/{id}/participants Get participants of a form. Only for form admins #
GET /forms Get a page of forms #
POST /forms Create a new form #
GET /forms/{id} Get a form by id #
PUT /forms/{id} Update an existing form #
DELETE /forms/{id} Delete a form #
POST /forms/transform Get preview of form transformed from json format to schema format #

Documentation

Specifications

Schemas & Data

📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-hy-organisation-api-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-contact-search-api-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-course-pages-cms-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-helsinki-fi-content-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-hy-building-api-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-serviceapi-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-employeeinformationapi-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-persongroup-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-general-efecte-api-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-network-registry-api-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-finbif-laji-schemas.json

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/university-of-helsinki-forms-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

university-of-helsinki-forms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Laji Forms API
  description: '## Authentication


    This API requires an **Access Token**.'
  version: '1'
  contact: {}
servers:
- url: https://api.laji.fi
tags:
- name: Forms
paths:
  /forms/{id}/participants:
    get:
      operationId: FormsController_getParticipants
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: Person-Token
        required: false
        description: Person's authentication token. It is required.
        in: header
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Participant'
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '401':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '403':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '406':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '422':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '500':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
      security:
      - Access token: []
      - Lang: []
      - Person token: []
      summary: Get participants of a form. Only for form admins
      tags:
      - Forms
  /forms:
    get:
      operationId: FormsController_getListing
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/FormListing'
                  '@context':
                    type: string
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '401':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '403':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '406':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '422':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '500':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
      security:
      - Access token: []
      - Lang: []
      - Person token: []
      summary: Get a page of forms
      tags:
      - Forms
    post:
      operationId: FormsController_create
      parameters: []
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/store-form'
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '401':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '403':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '406':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '422':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '500':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
      security:
      - Access token: []
      - Lang: []
      - Person token: []
      summary: Create a new form
      tags:
      - Forms
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/store-form'
  /forms/{id}:
    get:
      operationId: FormsController_getOne
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: format
        required: false
        in: query
        schema:
          default: schema
          type: string
          enum:
          - schema
          - json
      - name: expand
        required: false
        in: query
        description: Expand response
        schema:
          default: true
          type: boolean
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Form'
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '401':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '403':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '406':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '422':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '500':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
      security:
      - Access token: []
      - Lang: []
      - Person token: []
      summary: Get a form by id
      tags:
      - Forms
    put:
      operationId: FormsController_update
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/store-form'
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '401':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '403':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '406':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '422':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '500':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
      security:
      - Access token: []
      - Lang: []
      - Person token: []
      summary: Update an existing form
      tags:
      - Forms
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/store-form'
    delete:
      operationId: FormsController_remove
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '401':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '403':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '406':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '422':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '500':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
      security:
      - Access token: []
      - Lang: []
      - Person token: []
      summary: Delete a form
      tags:
      - Forms
  /forms/transform:
    post:
      operationId: FormsController_transform
      parameters: []
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/store-form'
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '401':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '403':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '406':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '422':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
        '500':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                  localized:
                    type: boolean
      security:
      - Access token: []
      - Lang: []
      - Person token: []
      summary: Get preview of form transformed from json format to schema format
      tags:
      - Forms
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/store-form'
components:
  schemas:
    FormListing:
      type: object
      properties:
        id:
          type: string
          title: Id for the MHL.form
        category:
          type: string
          enum:
          - ''
          - MHL.categoryGeneric
          - MHL.categorySurvey
          - MHL.categoryTaxonomicGroup
          - MHL.categoryBirdMonitoringSchemes
          - MHL.categoryCitizenScience
          - MHL.categoryBiomonCompleteLists
          title: Category
        collectionID:
          type: string
          description: Id for the collection to where observation useing this form are connected
          title: Collection ID
        description:
          type: string
          title: Description
        logo:
          type: string
          title: Logo address
        name:
          type: string
          title: Name
        options:
          $ref: '#/components/schemas/store-formOptions'
        shortDescription:
          type: string
          title: Short description
        supportedLanguage:
          type: array
          uniqueItems: false
          items:
            type: string
            enum:
            - ''
            - en
            - fi
            - sv
          minItems: 0
          title: Supported language
        title:
          type: string
          title: Title
      additionalProperties: false
      required:
      - id
      - category
      - collectionID
      - description
      - logo
      - name
      - options
      - shortDescription
      - supportedLanguage
      - title
    store-preparation:
      type: object
      properties:
        '@context':
          type: string
          title: Context for the MF.preparationClass
        id:
          type: string
          title: Id for the MF.preparationClass
        '@type':
          type: string
          title: Type for the MF.preparationClass
        preparationDate:
          type: string
          description: Date when the preparation/sample was prepared.
          title: Preparation date
        preparationMaterials:
          type: array
          uniqueItems: false
          items:
            type: string
            enum:
            - ''
            - MF.preparationMaterialsAcetone
            - MF.preparationMaterialsAmmonia
            - MF.preparationMaterialsBasyntan
            - MF.preparationMaterialsBorax
            - MF.preparationMaterialsEulan
            - MF.preparationMaterialsHydrogenPeroxide
            - MF.preparationMaterialsMethyleneChloride
            - MF.preparationMaterialsNovaltan
            - MF.preparationMaterialsPapaine
            - MF.preparationMaterialsPlaster
            - MF.preparationMaterialsPolyurethane
            - MF.preparationMaterialsPretanix
            - MF.preparationMaterialsPurifiedGasoline
            - MF.preparationMaterialsWoodWool
            - MF.preparationMaterialsCTAB
            - MF.preparationMaterialsEZNAForensicKit
            - MF.preparationMaterialsDNEasyBloodAndTissueKit
            - MF.preparationMaterialsDNEasyPlantKit
            - MF.preparationMaterialsNucleospinTissueKit
            - MF.preparationMaterialsNucleospinPlantTwo
            - MF.preparationMaterialsSaltExtraction
            - MF.preparationMaterialsDNeasyPlantMiniKit
            - MF.preparationMaterialsMagAttractHMWDNAKit
          minItems: 0
          description: Materials (chemicals, kits etc.) used in the preparation process. It is possible to choose several.
          title: Preparation process materials
        preparationProcess:
          type: array
          uniqueItems: false
          items:
            type: string
            enum:
            - ''
            - MF.preparationProcessTanning
            - MF.preparationProcessEnzymaticMaceration
            - MF.preparationProcessDegreasing
            - MF.preparationProcessBeetleCleaning
            - MF.preparationProcessPEG
            - MF.preparationProcessFreezeDrying
          minItems: 0
          description: Processes used in the preparation. It is possible to choose several.
          title: Preparation process
        preparationProcessNotes:
          type: string
          description: Additional information about the preparation process.
          title: Preparation process notes
        preparedBy:
          type: string
          description: Name of the person who prepared the preparation/sample, preferably in the format 'lastname, firstname'
          title: Prepared by
        isPartOf:
          type: string
          description: Which parent or larger collection this is part of.
          title: Is part of
      additionalProperties: false
      required:
      - '@context'
      - id
      - '@type'
      - preparationDate
      - preparationMaterials
      - preparationProcess
      - preparationProcessNotes
      - preparedBy
      - isPartOf
    store-formSeason:
      type: object
      properties:
        '@context':
          type: string
          title: Context for the MHL.formSeasonClass
        id:
          type: string
          title: Id for the MHL.formSeasonClass
        '@type':
          type: string
          title: Type for the MHL.formSeasonClass
        end:
          type: string
          description: End of season
          title: end
        start:
          type: string
          description: Start of season
          title: Start
      additionalProperties: false
      required:
      - '@context'
      - id
      - '@type'
      - end
      - start
    store-form:
      type: object
      properties:
        '@context':
          type: string
          title: Context for the MHL.form
        id:
          type: string
          title: Id for the MHL.form
        '@type':
          type: string
          title: Type for the MHL.form
        baseFormID:
          type: string
          title: Base form
        category:
          type: string
          enum:
          - ''
          - MHL.categoryGeneric
          - MHL.categorySurvey
          - MHL.categoryTaxonomicGroup
          - MHL.categoryBirdMonitoringSchemes
          - MHL.categoryCitizenScience
          - MHL.categoryBiomonCompleteLists
          title: Category
        collectionID:
          type: string
          description: Id for the collection to where observation useing this form are connected
          title: Collection ID
        context:
          type: string
          description: The schema context of the form (e.g. MY.document, MNP.namedPlace...)
          title: Context
        description:
          type: string
          title: Description
        fields:
          type: array
          items:
            $ref: '#/components/schemas/store-field'
        fieldsFormID:
          type: string
          description: Use fields, uiSchema and translations from the form
          title: Fields form ID
        language:
          type: string
          enum:
          - ''
          - en
          - fi
          - sv
          title: Form language
        logo:
          type: string
          title: Logo address
        name:
          type: string
          title: Name
        options:
          $ref: '#/components/schemas/store-formOptions'
        patch:
          type: array
          uniqueItems: false
          items:
            type: object
            additionalProperties: true
          minItems: 0
          title: Patch form data
        shortDescription:
          type: string
          title: Short description
        shortTitle:
          type: string
          description: Shown at sidebar and & as browser title
          title: Short title
        supportedLanguage:
          type: array
          uniqueItems: false
          items:
            type: string
            enum:
            - ''
            - en
            - fi
            - sv
          minItems: 0
          title: Supported language
        title:
          type: string
          title: Title
        translations:
          type: object
          additionalProperties: true
          title: Translations
        uiSchema:
          type: object
          additionalProperties: true
          title: Specification for ui schema
      additionalProperties: false
      required:
      - '@context'
      - id
      - '@type'
      - baseFormID
      - category
      - collectionID
      - context
      - description
      - fields
      - fieldsFormID
      - language
      - logo
      - name
      - options
      - patch
      - shortDescription
      - shortTitle
      - supportedLanguage
      - title
      - translations
      - uiSchema
    store-gatheringEvent:
      type: object
      properties:
        '@context':
          type: string
          title: Context for the Global gathering event
        id:
          type: string
          title: Id for the Global gathering event
        '@type':
          type: string
          title: Type for the Global gathering event
        acknowledgeNoUnitsInCensus:
          type: boolean
          title: No units in census
        artificialLight:
          type: string
          enum:
          - ''
          - MY.artificialLightEnum1
          - MY.artificialLightEnum2
          - MY.artificialLightEnum3
          - MY.artificialLightEnum4
          - MY.artificialLightEnum5
          title: Artificial light
        breaksDuringCensusInMinutes:
          type: integer
          minimum: 0
          title: Breaks kept in minutes
        censusCount:
          type: integer
          minimum: 0
          title: Number of censuses
        censusHinderedByEnviromentalFactors:
          type: boolean
          title: Weather (etc) hindered the census
        censusHinderedByFog:
          type: boolean
          title: Fog hindered the census
        censusHinderedByRain:
          type: boolean
          title: Rain hindered the census
        censusHinderedByWind:
          type: boolean
          title: Wind hindered the census
        censusPrematurelyAborted:
          type: boolean
          title: Was the census prematurely aborted?
        cloudCover:
          type: string
          enum:
          - ''
          - MY.cloudCoverOktaEnumUnknown
          - MY.cloudCoverOktaEnum0
          - MY.cloudCoverOktaEnum1
          - MY.cloudCoverOktaEnum2
          - MY.cloudCoverOktaEnum3
          - MY.cloudCoverOktaEnum4
          - MY.cloudCoverOktaEnum5
          - MY.cloudCoverOktaEnum6
          - MY.cloudCoverOktaEnum7
          - MY.cloudCoverOktaEnum8
          title: Cloudiness
        cloudCoverEnd:
          type: string
          enum:
          - ''
          - MY.cloudCoverOktaEnumUnknown
          - MY.cloudCoverOktaEnum0
          - MY.cloudCoverOktaEnum1
          - MY.cloudCoverOktaEnum2
          - MY.cloudCoverOktaEnum3
          - MY.cloudCoverOktaEnum4
          - MY.cloudCoverOktaEnum5
          - MY.cloudCoverOktaEnum6
          - MY.cloudCoverOktaEnum7
          - MY.cloudCoverOktaEnum8
          title: End cloud cover
        cloudCoverStart:
          type: string
          enum:
          - ''
          - MY.cloudCoverOktaEnumUnknown
          - MY.cloudCoverOktaEnum0
          - MY.cloudCoverOktaEnum1
          - MY.cloudCoverOktaEnum2
          - MY.cloudCoverOktaEnum3
          - MY.cloudCoverOktaEnum4
          - MY.cloudCoverOktaEnum5
          - MY.cloudCoverOktaEnum6
          - MY.cloudCoverOktaEnum7
          - MY.cloudCoverOktaEnum8
          title: Start cloud cover
        completeList:
          $ref: '#/components/schemas/store-completeList'
        dateBegin:
          type: string
          description: Collection date as exact date or start date for a time period.
          title: Start date
        dateEnd:
          type: string
          description: End date for a collection time period, if exact date is not know.
          title: End date
        gath

# --- truncated at 32 KB (227 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/openapi/university-of-helsinki-forms-api-openapi.yml