ETD@IISc Collection
A collection (set of items) in the ETD@IISc DSpace REST API.
EducationHigher EducationUniversityResearchOpen AccessInstitutional RepositoryOAI-PMHIndia
Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | |
| name | string | |
| handle | string | |
| type | string | |
| link | string | |
| expand | array | |
| logo | objectnull | |
| parentCommunity | objectnull | |
| parentCommunityList | array | |
| items | array | |
| license | stringnull | |
| copyrightText | string | |
| introductoryText | string | |
| shortDescription | string | |
| sidebarText | string | |
| numberItems | integer |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/iisc/main/json-schema/iisc-collection-schema.json",
"title": "ETD@IISc Collection",
"description": "A collection (set of items) in the ETD@IISc DSpace REST API.",
"type": "object",
"required": ["uuid", "name", "handle", "type"],
"properties": {
"uuid": { "type": "string", "format": "uuid" },
"name": { "type": "string" },
"handle": { "type": "string" },
"type": { "type": "string", "const": "collection" },
"link": { "type": "string" },
"expand": { "type": "array", "items": { "type": "string" } },
"logo": { "type": ["object", "null"] },
"parentCommunity": { "type": ["object", "null"] },
"parentCommunityList": { "type": "array", "items": { "type": "object" } },
"items": { "type": "array", "items": { "type": "object" } },
"license": { "type": ["string", "null"] },
"copyrightText": { "type": "string" },
"introductoryText": { "type": "string" },
"shortDescription": { "type": "string" },
"sidebarText": { "type": "string" },
"numberItems": { "type": "integer" }
}
}