University of Basel · JSON Structure

University Of Basel Project Structure

JSON Structure for a DaSCH Service Platform (DSP-API) research project, derived from the live OpenAPI 3.1 description at https://api.dasch.swiss/api/docs/docs.yaml

Type: object Properties: 12 Required: 5
EducationHigher EducationUniversitySwitzerlandResearch DataOpen AccessInstitutional RepositoryLibraryDigital Humanities

Project is a JSON Structure definition published by University of Basel, describing 12 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

id shortname shortcode longname description keywords logo ontologies status selfjoin allowedCopyrightHolders enabledLicenses

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

JSON Structure

university-of-basel-project-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/university-of-basel/main/json-structure/university-of-basel-project-structure.json",
  "name": "Project",
  "description": "JSON Structure for a DaSCH Service Platform (DSP-API) research project, derived from the live OpenAPI 3.1 description at https://api.dasch.swiss/api/docs/docs.yaml",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "IRI identifying the project."
    },
    "shortname": {
      "type": "string",
      "description": "Project shortname."
    },
    "shortcode": {
      "type": "string",
      "description": "Project shortcode (hexadecimal)."
    },
    "longname": {
      "type": "string",
      "description": "Human-readable project name."
    },
    "description": {
      "type": "array",
      "items": {
        "type": {
          "$ref": "#/definitions/StringLiteral"
        }
      }
    },
    "keywords": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "logo": {
      "type": "string"
    },
    "ontologies": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "status": {
      "type": "boolean",
      "description": "Whether the project is active."
    },
    "selfjoin": {
      "type": "boolean",
      "description": "Whether users may self-join the project."
    },
    "allowedCopyrightHolders": {
      "type": "set",
      "items": {
        "type": "string"
      }
    },
    "enabledLicenses": {
      "type": "set",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "id",
    "shortname",
    "shortcode",
    "status",
    "selfjoin"
  ],
  "definitions": {
    "StringLiteral": {
      "type": "object",
      "properties": {
        "value": {
          "type": "string"
        },
        "language": {
          "type": "string",
          "description": "Optional ISO language tag."
        }
      },
      "required": [
        "value"
      ]
    }
  }
}