Rack elevation representing the list of rack units. Also supports rendering the elevation as an SVG.

GET /api/dcim/racks/8/elevation/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 4,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 2.5,
            "name": "U2.5",
            "face": {
                "value": "front",
                "label": "Front"
            },
            "device": null,
            "occupied": false,
            "display": "U2.5"
        },
        {
            "id": 2.0,
            "name": "U2",
            "face": {
                "value": "front",
                "label": "Front"
            },
            "device": null,
            "occupied": false,
            "display": "U2"
        },
        {
            "id": 1.5,
            "name": "U1.5",
            "face": {
                "value": "front",
                "label": "Front"
            },
            "device": {
                "id": 72,
                "url": "https://netbox.c3voc.de/api/dcim/devices/72/?format=api",
                "display": "lectern1-patch",
                "name": "lectern1-patch",
                "description": ""
            },
            "occupied": true,
            "display": "U1.5"
        },
        {
            "id": 1.0,
            "name": "U1",
            "face": {
                "value": "front",
                "label": "Front"
            },
            "device": {
                "id": 72,
                "url": "https://netbox.c3voc.de/api/dcim/devices/72/?format=api",
                "display": "lectern1-patch",
                "name": "lectern1-patch",
                "description": ""
            },
            "occupied": true,
            "display": "U1"
        }
    ]
}