{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Map", "title": "Map", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "site_id": { "type": "string", "format": "uuid" }, "name": { "type": "string" }, "type": { "type": "string", "enum": [ "image", "google" ] }, "width": { "type": "number", "description": "Width in meters" }, "height": { "type": "number", "description": "Height in meters" }, "ppm": { "type": "number", "description": "Pixels per meter" }, "url": { "type": "string", "description": "URL to the floorplan image" }, "created_time": { "type": "number" }, "modified_time": { "type": "number" } } }