Emory University · Schema

Girder Item

JSON Schema for the Emory Digital Slide Archive (Girder) item resource, derived from live API responses.

EducationHigher EducationUniversityResearchLibrariesUnited StatesAtlanta

Properties

Name Type Description
_id string Girder Mongo ObjectId (24-char hex)
_modelType string
baseParentId string Girder Mongo ObjectId (24-char hex)
baseParentType string
created string
creatorId string Girder Mongo ObjectId (24-char hex)
description string
folderId string Girder Mongo ObjectId (24-char hex)
largeImage object
meta object Arbitrary user metadata.
name string
size integer
updated string
View JSON Schema on GitHub

JSON Schema

emory-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/emory/main/json-schema/emory-item-schema.json",
  "title": "Girder Item",
  "description": "JSON Schema for the Emory Digital Slide Archive (Girder) item resource, derived from live API responses.",
  "type": "object",
  "properties": {
    "_id": {
      "type": "string",
      "description": "Girder Mongo ObjectId (24-char hex)"
    },
    "_modelType": {
      "type": "string"
    },
    "baseParentId": {
      "type": "string",
      "description": "Girder Mongo ObjectId (24-char hex)"
    },
    "baseParentType": {
      "type": "string"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "creatorId": {
      "type": "string",
      "description": "Girder Mongo ObjectId (24-char hex)"
    },
    "description": {
      "type": "string"
    },
    "folderId": {
      "type": "string",
      "description": "Girder Mongo ObjectId (24-char hex)"
    },
    "largeImage": {
      "type": "object",
      "properties": {
        "fileId": {
          "type": "string"
        },
        "sourceName": {
          "type": "string"
        }
      }
    },
    "meta": {
      "type": "object",
      "description": "Arbitrary user metadata.",
      "additionalProperties": true
    },
    "name": {
      "type": "string"
    },
    "size": {
      "type": "integer"
    },
    "updated": {
      "type": "string",
      "format": "date-time"
    }
  }
}