University of California, Davis · Schema
PEAKS Space
A physical space (building/floor/room) referenced by the UC Davis CAES PEAKS API.
UniversityHigher EducationEducationUnited StatesCaliforniaUC SystemPublic Research UniversityResearchResearch DataIdentity FederationDigital CollectionsLibraryHealthOpen-Source
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | System-assigned identifier for the space. |
| deptKey | stringnull | Department key. |
| bldgKey | stringnull | Building key. |
| roomKey | stringnull | Room key. |
| floorKey | stringnull | Floor key. |
| bldgName | stringnull | Building name. |
| floorName | stringnull | Floor name. |
| roomNumber | stringnull | Room number. |
| roomName | stringnull | Room name. |
| roomCategoryName | stringnull | Room category name. |
| roomCategoryCode | stringnull | Room category code. |
| chartNum | stringnull | Chart number. |
| orgId | stringnull | Organization identifier. |
| deptName | stringnull | Department name. |
| source | stringnull | Source system for the space record. |
| active | boolean | Whether the space record is active. |
| sqFt | integernull | Square footage of the space. |
| shortName | stringnull | Derived short name. |
JSON Schema
{
"x-provenance": {
"generated": "2026-08-19",
"method": "derived",
"operator": "institution",
"source": "openapi/_original/uc-davis-peaks.yaml (PEAKS API v1, https://peaks.ucdavis.edu/swagger/v1/swagger.json)",
"note": "Derived by API Evangelist tooling from the institution's own PEAKS contract. Not published by UC Davis."
},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/uc-davis/main/json-schema/uc-davis-space-schema.json",
"title": "PEAKS Space",
"description": "A physical space (building/floor/room) referenced by the UC Davis CAES PEAKS API.",
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "integer",
"format": "int32",
"description": "System-assigned identifier for the space."
},
"deptKey": {
"type": [
"string",
"null"
],
"description": "Department key."
},
"bldgKey": {
"type": [
"string",
"null"
],
"description": "Building key."
},
"roomKey": {
"type": [
"string",
"null"
],
"description": "Room key."
},
"floorKey": {
"type": [
"string",
"null"
],
"description": "Floor key."
},
"bldgName": {
"type": [
"string",
"null"
],
"description": "Building name."
},
"floorName": {
"type": [
"string",
"null"
],
"description": "Floor name."
},
"roomNumber": {
"type": [
"string",
"null"
],
"description": "Room number."
},
"roomName": {
"type": [
"string",
"null"
],
"description": "Room name."
},
"roomCategoryName": {
"type": [
"string",
"null"
],
"description": "Room category name."
},
"roomCategoryCode": {
"type": [
"string",
"null"
],
"description": "Room category code."
},
"chartNum": {
"type": [
"string",
"null"
],
"description": "Chart number."
},
"orgId": {
"type": [
"string",
"null"
],
"description": "Organization identifier."
},
"deptName": {
"type": [
"string",
"null"
],
"description": "Department name."
},
"source": {
"type": [
"string",
"null"
],
"description": "Source system for the space record."
},
"active": {
"type": "boolean",
"description": "Whether the space record is active."
},
"sqFt": {
"type": [
"integer",
"null"
],
"format": "int32",
"description": "Square footage of the space."
},
"shortName": {
"type": [
"string",
"null"
],
"readOnly": true,
"description": "Derived short name."
}
}
}