Juniper Networks · Schema

Map

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
id string
site_id string
name string
type string
width number Width in meters
height number Height in meters
ppm number Pixels per meter
url string URL to the floorplan image
created_time number
modified_time number
View JSON Schema on GitHub

JSON Schema

juniper-map-schema.json Raw ↑
{
  "$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"
    }
  }
}