{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.com/eindhoven-university-of-technology/json-schema/organization.json", "title": "TU/e Pure Organization", "description": "An organization in the institution", "type": "object", "properties": { "pureId": { "type": "integer", "format": "int64", "description": "Pure database ID of the object, prefer using the UUID if it is present on the entity" }, "uuid": { "type": "string", "format": "uuid", "description": "UUID, this is the primary identity of the entity" }, "createdBy": { "type": "string", "description": "Username of creator" }, "createdDate": { "type": "string", "format": "date-time", "description": "Date and time of creation" }, "modifiedBy": { "type": "string", "description": "Username of the user that performed a modification" }, "modifiedDate": { "type": "string", "format": "date-time", "description": "Date and time of last modification" }, "portalUrl": { "type": "string", "description": "URL of the content on the Pure Portal" }, "prettyUrlIdentifiers": { "type": "array", "items": { "type": "string" }, "description": "All pretty URLs" }, "previousUuids": { "type": "array", "items": { "type": "string" }, "description": "UUIDs of other content items which have been merged into this content item (or similar)" }, "version": { "type": "string", "description": "Used to guard against conflicting updates. For new content this is null, and for existing content the current value. The property should never be modified by a client, except in the rare case where the client wants to perform an update irrespective of if other clients have made updates in the meantime, also known as a \"dirty write\". A dirty write is performed by not including the property value or setting the property to null" }, "name": { "type": "object", "description": "Reference to LocalizedString" }, "type": { "type": "object", "description": "Reference to ClassificationRef" }, "identifiers": { "type": "array", "items": { "type": "object" }, "description": "IDs that this object corresponds to in external systems. Such as a Scopus ID. Used by Pure where it is necessary to identify objects to specific external systems" }, "nameVariants": { "type": "array", "items": { "type": "object" }, "description": "A list of organization name variants" }, "profileInformations": { "type": "array", "items": { "type": "object" }, "description": "A list of organization profile information entries" }, "photos": { "type": "array", "items": { "type": "object" }, "description": "A list of organization photos" }, "addresses": { "type": "array", "items": { "type": "object" }, "description": "A list of organization addresses" }, "phoneNumbers": { "type": "array", "items": { "type": "object" }, "description": "A list of organization phone numbers" }, "emails": { "type": "array", "items": { "type": "object" }, "description": "A list of organization email addresses" }, "webAddresses": { "type": "array", "items": { "type": "object" }, "description": "A list of organization web addresses" }, "lifecycle": { "type": "object", "description": "Reference to DateRange" }, "takenOverBy": { "type": "object", "description": "Reference to OrganizationRef" }, "parents": { "type": "array", "items": { "type": "object" }, "description": "A list of parent organizations" }, "contactPersons": { "type": "array", "items": { "type": "object" }, "description": "A list of organization contact persons" }, "keywordGroups": { "type": "array", "items": { "type": "object" }, "description": "A group for each type of keyword present" }, "costCenters": { "type": "array", "items": { "type": "object" }, "description": "A list of cost center classifications" }, "visibility": { "type": "object", "description": "Reference to Visibility" }, "customDefinedFields": { "type": "object", "description": "Reference to CustomDefinedFields" }, "links": { "type": "array", "items": { "type": "object" }, "description": "Links associated with this organization." }, "mainResearchArea": { "type": "object", "description": "Reference to ClassificationRef" }, "systemName": { "type": "string", "description": "The content system name" } }, "required": [ "lifecycle", "name", "type" ] }