ETD@IISc Community
A community (organizational unit) 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 | |
| copyrightText | string | |
| introductoryText | string | |
| shortDescription | string | |
| sidebarText | string | |
| countItems | integer | |
| collections | array | |
| subcommunities | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/iisc/main/json-schema/iisc-community-schema.json",
"title": "ETD@IISc Community",
"description": "A community (organizational unit) 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": "community" },
"link": { "type": "string" },
"expand": { "type": "array", "items": { "type": "string" } },
"logo": { "type": ["object", "null"] },
"parentCommunity": { "type": ["object", "null"] },
"copyrightText": { "type": "string" },
"introductoryText": { "type": "string" },
"shortDescription": { "type": "string" },
"sidebarText": { "type": "string" },
"countItems": { "type": "integer" },
"collections": { "type": "array", "items": { "type": "object" } },
"subcommunities": { "type": "array", "items": { "type": "object" } }
}
}