{
  "openapi": "3.1.0",
  "info": {
    "title": "",
    "version": "1.0.0"
  },
  "paths": {
    "/login": {
      "post": {
        "tags": [
          "SessionManagement"
        ],
        "operationId": "login",
        "description": "The parameters and request body are for method: login. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "sid": {
                      "type": "string"
                    },
                    "url": {
                      "type": "string"
                    },
                    "uid": {
                      "type": "string"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "last-login-was-at": {
                      "type": "object",
                      "properties": {
                        "posix": {
                          "type": "number"
                        },
                        "iso-8601": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "sid": "97BVpRfN4j81ogN-V2XqGYmw3DDwIhoSn0og8PiKDiM",
                  "url": "https://192.0.2.1:443/web_api",
                  "uid": "7a13a360-9b24-40d7-acd3-5b50247be33e",
                  "session-timeout": 600,
                  "last-login-was-at": {
                    "posix": 1430032266851,
                    "iso-8601": "2015-04-26T10:11+0300"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "string"
              },
              "example": "mybody"
            }
          }
        }
      }
    },
    "/login-to-domain": {
      "post": {
        "tags": [
          "SessionManagement"
        ],
        "operationId": "loginToDomainWithSid",
        "description": "The parameters and request body are for method: loginToDomainWithSid. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/publish": {
      "post": {
        "tags": [
          "SessionManagement"
        ],
        "operationId": "publish",
        "description": "The parameters and request body are for method: publish. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "task-id": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "task-id": "01234567-89ab-cdef-a930-8c37a59972b3"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/discard": {
      "post": {
        "tags": [
          "SessionManagement"
        ],
        "operationId": "discard",
        "description": "The parameters and request body are for method: discard. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "number-of-discarded-changes": {
                      "type": "number"
                    }
                  }
                },
                "example": {
                  "message": "OK",
                  "number-of-discarded-changes": 0
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/logout": {
      "post": {
        "tags": [
          "SessionManagement"
        ],
        "operationId": "logout",
        "description": "The parameters and request body are for method: logout. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/disconnect": {
      "post": {
        "tags": [
          "SessionManagement"
        ],
        "operationId": "disconnect",
        "description": "The parameters and request body are for method: disconnect. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/keepalive": {
      "post": {
        "tags": [
          "SessionManagement"
        ],
        "operationId": "keepalive",
        "description": "The parameters and request body are for method: keepalive. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-session": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "showSession",
        "description": "The parameters and request body are for method: showSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-session": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "setSession",
        "description": "The parameters and request body are for method: setSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/continue-session-in-smartconsole": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "continueSessionInSmartconsole",
        "description": "The parameters and request body are for method: continueSessionInSmartconsole. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-last-published-session": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "showLastPublishedSession",
        "description": "The parameters and request body are for method: showLastPublishedSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/purge-published-sessions": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "purgePublishedSessionsByCount",
        "description": "The parameters and request body are for method: purgePublishedSessionsByCount. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/switch-session": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "switchSession",
        "description": "The parameters and request body are for method: switchSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/assign-session": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "assignSession",
        "description": "The parameters and request body are for method: assignSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/take-over-session": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "takeOverSession",
        "description": "The parameters and request body are for method: takeOverSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-sessions": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "showSessions",
        "description": "The parameters and request body are for method: showSessions. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 16,
                  "total": 16,
                  "objects": [
                    "01f83a11-179a-405a-971a-50c58368f415",
                    "27aabb7e-263a-4161-b822-0e0078c72e06",
                    "2b486864-1356-4b66-ae6b-6eda09821955",
                    "3f457555-01af-49ce-a3e9-4c62432c7777",
                    "68d44bae-30b8-4348-b875-ef11ae216286",
                    "9c8345cc-50b9-466e-a608-cfcf03e7b567",
                    "9fc9aa4a-8e16-4c34-a951-5c80799dd270",
                    "a6b8c425-33b0-4b4d-914b-9f1813c423e0",
                    "b1ddc72d-d668-4a6b-8f08-1b4b75c372ab",
                    "bc2abbca-61a6-460d-9b48-b429c27dcc15",
                    "c0377672-b7b1-43ce-afdd-5d14adfe68ca",
                    "ce35609f-050d-4a21-a138-23063831ed68",
                    "e71080c0-edc8-4c98-9f17-72c5855961b6",
                    "eab7f3e2-c06f-4c5f-9e3a-175e8d7357d4",
                    "fe5936ff-8812-4716-8d87-939e855791f8",
                    "ffc5d5a3-6def-474c-b75c-d2a685b45905"
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-login-message": {
      "post": {
        "tags": [
          "LoginMessage"
        ],
        "operationId": "showLoginMessage",
        "description": "The parameters and request body are for method: showLoginMessage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-login-message": {
      "post": {
        "tags": [
          "LoginMessage"
        ],
        "operationId": "setLoginMessage",
        "description": "The parameters and request body are for method: setLoginMessage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-host": {
      "post": {
        "tags": [
          "Host"
        ],
        "operationId": "addHost",
        "description": "The parameters and request body are for method: addHost. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "name": {
                      "type": "string"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "nat-settings": {
                      "type": "object",
                      "properties": {
                        "auto-rule": {
                          "type": "boolean"
                        }
                      }
                    },
                    "ipv4-address": {
                      "type": "string"
                    },
                    "ipv6-address": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "9423d36f-2d66-4754-b9e2-e7f4493756d4",
                  "folder": {
                    "uid": "feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1429440561055,
                      "iso-8601": "2015-04-19T13:49+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1429440561055,
                      "iso-8601": "2015-04-19T13:49+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "name": "New Host 4",
                  "comments": "",
                  "color": "black",
                  "icon": "Objects/host",
                  "groups": [],
                  "nat-settings": {
                    "auto-rule": false
                  },
                  "ipv4-address": "192.0.2.1",
                  "ipv6-address": ""
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-host": {
      "post": {
        "tags": [
          "Host"
        ],
        "operationId": "showHost",
        "description": "The parameters and request body are for method: showHost. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-host": {
      "post": {
        "tags": [
          "Host"
        ],
        "operationId": "setHost",
        "description": "The parameters and request body are for method: setHost. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-host": {
      "post": {
        "tags": [
          "Host"
        ],
        "operationId": "deleteHost",
        "description": "The parameters and request body are for method: deleteHost. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-hosts": {
      "post": {
        "tags": [
          "Host"
        ],
        "operationId": "showHosts",
        "description": "The parameters and request body are for method: showHosts. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-network": {
      "post": {
        "tags": [
          "Network"
        ],
        "operationId": "addNetwork",
        "description": "The parameters and request body are for method: addNetwork. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-network": {
      "post": {
        "tags": [
          "Network"
        ],
        "operationId": "showNetwork",
        "description": "The parameters and request body are for method: showNetwork. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-network": {
      "post": {
        "tags": [
          "Network"
        ],
        "operationId": "setNetwork",
        "description": "The parameters and request body are for method: setNetwork. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-network": {
      "post": {
        "tags": [
          "Network"
        ],
        "operationId": "deleteNetwork",
        "description": "The parameters and request body are for method: deleteNetwork. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-networks": {
      "post": {
        "tags": [
          "Network"
        ],
        "operationId": "showNetworks",
        "description": "The parameters and request body are for method: showNetworks. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-wildcard": {
      "post": {
        "tags": [
          "Wildcard"
        ],
        "operationId": "addWildcard",
        "description": "The parameters and request body are for method: addWildcard. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-wildcard": {
      "post": {
        "tags": [
          "Wildcard"
        ],
        "operationId": "showWildcard",
        "description": "The parameters and request body are for method: showWildcard. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-wildcard": {
      "post": {
        "tags": [
          "Wildcard"
        ],
        "operationId": "setWildcard",
        "description": "The parameters and request body are for method: setWildcard. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-wildcard": {
      "post": {
        "tags": [
          "Wildcard"
        ],
        "operationId": "deleteWildcard",
        "description": "The parameters and request body are for method: deleteWildcard. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-wildcards": {
      "post": {
        "tags": [
          "Wildcard"
        ],
        "operationId": "showWildcards",
        "description": "The parameters and request body are for method: showWildcards. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-group": {
      "post": {
        "tags": [
          "Group"
        ],
        "operationId": "addGroupWithGroup",
        "description": "The parameters and request body are for method: addGroupWithGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "name": {
                      "type": "string"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "members": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "ed997ff8-6709-4d71-a713-99bf01711cd5",
                  "folder": {
                    "uid": "5568324a-68ed-4c6c-9aa6-553978c7e746",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1435470206821,
                      "iso-8601": "2015-06-28T08:43+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1435470206821,
                      "iso-8601": "2015-06-28T08:43+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "name": "New Group 3",
                  "comments": "",
                  "color": "black",
                  "icon": "General/group",
                  "groups": [
                    {
                      "folder": {
                        "uid": "5568324a-68ed-4c6c-9aa6-553978c7e746",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "group",
                      "name": "New Group 1",
                      "uid": "d20710f1-831c-49dd-a009-aa9e569f643a"
                    },
                    {
                      "folder": {
                        "uid": "5568324a-68ed-4c6c-9aa6-553978c7e746",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "group",
                      "name": "New Group 2",
                      "uid": "6e3e3f33-fc23-433d-ac90-d72196f9ffcf"
                    }
                  ],
                  "members": [
                    {
                      "folder": {
                        "uid": "5568324a-68ed-4c6c-9aa6-553978c7e746",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "host",
                      "name": "New Host 1",
                      "uid": "280ff2f7-2ce2-42ac-a29f-cad26a4d6de5"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-group": {
      "post": {
        "tags": [
          "Group"
        ],
        "operationId": "showGroup",
        "description": "The parameters and request body are for method: showGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-group": {
      "post": {
        "tags": [
          "Group"
        ],
        "operationId": "setGroup",
        "description": "The parameters and request body are for method: setGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-group": {
      "post": {
        "tags": [
          "Group"
        ],
        "operationId": "deleteGroup",
        "description": "The parameters and request body are for method: deleteGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-groups": {
      "post": {
        "tags": [
          "Group"
        ],
        "operationId": "showGroups",
        "description": "The parameters and request body are for method: showGroups. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-address-range": {
      "post": {
        "tags": [
          "AddressRange"
        ],
        "operationId": "addAddressRange",
        "description": "The parameters and request body are for method: addAddressRange. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-address-range": {
      "post": {
        "tags": [
          "AddressRange"
        ],
        "operationId": "showAddressRange",
        "description": "The parameters and request body are for method: showAddressRange. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-address-range": {
      "post": {
        "tags": [
          "AddressRange"
        ],
        "operationId": "setAddressRange",
        "description": "The parameters and request body are for method: setAddressRange. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-address-range": {
      "post": {
        "tags": [
          "AddressRange"
        ],
        "operationId": "deleteAddressRange",
        "description": "The parameters and request body are for method: deleteAddressRange. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-address-ranges": {
      "post": {
        "tags": [
          "AddressRange"
        ],
        "operationId": "showAddressRanges",
        "description": "The parameters and request body are for method: showAddressRanges. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-multicast-address-range": {
      "post": {
        "tags": [
          "MulticastAddressRange"
        ],
        "operationId": "addMulticastAddressRangeIpRange",
        "description": "The parameters and request body are for method: addMulticastAddressRangeIpRange. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "ipv4-address-first": {
                      "type": "string"
                    },
                    "ipv4-address-last": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "faff3fdf-01b9-4c58-97dc-176c409b5bc1",
                  "name": "New Multicast Address Range",
                  "type": "multicast-address-range",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1483966213026,
                      "iso-8601": "2017-01-09T14:50+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1483966213026,
                      "iso-8601": "2017-01-09T14:50+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Objects/ip",
                  "groups": [],
                  "ipv4-address-first": "224.0.0.1",
                  "ipv4-address-last": "224.0.0.4"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-multicast-address-range": {
      "post": {
        "tags": [
          "MulticastAddressRange"
        ],
        "operationId": "showMulticastAddressRange",
        "description": "The parameters and request body are for method: showMulticastAddressRange. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "ipv4-address-first": {
                      "type": "string"
                    },
                    "ipv4-address-last": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "81d9cfda-c7c9-4a72-9a35-10cacc2dc0a3",
                  "name": "New Multicast Address Range",
                  "type": "multicast-address-range",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1483966472100,
                      "iso-8601": "2017-01-09T14:54+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1483966470781,
                      "iso-8601": "2017-01-09T14:54+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "color": "black",
                  "icon": "Objects/ip",
                  "groups": [],
                  "ipv4-address-first": "224.0.0.7",
                  "ipv4-address-last": "224.0.0.10"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-multicast-address-range": {
      "post": {
        "tags": [
          "MulticastAddressRange"
        ],
        "operationId": "setMulticastAddressRange",
        "description": "The parameters and request body are for method: setMulticastAddressRange. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "ipv4-address-first": {
                      "type": "string"
                    },
                    "ipv4-address-last": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "77c85c47-0fff-4c36-afab-6c04fc118bc7",
                  "name": "New Multicast Address Range",
                  "type": "multicast-address-range",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1483966436311,
                      "iso-8601": "2017-01-09T14:53+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1483966435089,
                      "iso-8601": "2017-01-09T14:53+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Objects/ip",
                  "groups": [],
                  "ipv4-address-first": "224.0.0.7",
                  "ipv4-address-last": "224.0.0.10"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-multicast-address-range": {
      "post": {
        "tags": [
          "MulticastAddressRange"
        ],
        "operationId": "deleteMulticastAddressRange",
        "description": "The parameters and request body are for method: deleteMulticastAddressRange. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-multicast-address-ranges": {
      "post": {
        "tags": [
          "MulticastAddressRange"
        ],
        "operationId": "showMulticastAddressRanges",
        "description": "The parameters and request body are for method: showMulticastAddressRanges. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          },
                          "meta-info": {
                            "type": "object",
                            "properties": {
                              "lock": {
                                "type": "string"
                              },
                              "validation-state": {
                                "type": "string"
                              },
                              "last-modify-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "last-modifier": {
                                "type": "string"
                              },
                              "creation-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "creator": {
                                "type": "string"
                              }
                            }
                          },
                          "tags": {
                            "type": "object"
                          },
                          "read-only": {
                            "type": "boolean"
                          },
                          "comments": {
                            "type": "string"
                          },
                          "color": {
                            "type": "string"
                          },
                          "icon": {
                            "type": "string"
                          },
                          "groups": {
                            "type": "object"
                          },
                          "ipv4-address-first": {
                            "type": "string"
                          },
                          "ipv4-address-last": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 2,
                  "total": 2,
                  "objects": [
                    {
                      "uid": "b0f485e1-dc43-4110-bd45-644132f13027",
                      "name": "New Multicast Address Range",
                      "type": "multicast-address-range",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      },
                      "meta-info": {
                        "lock": "locked by current session",
                        "validation-state": "ok",
                        "last-modify-time": {
                          "posix": 1483966523172,
                          "iso-8601": "2017-01-09T14:55+0200"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1483966523172,
                          "iso-8601": "2017-01-09T14:55+0200"
                        },
                        "creator": "aa"
                      },
                      "tags": [],
                      "read-only": false,
                      "comments": "",
                      "color": "black",
                      "icon": "Objects/ip",
                      "groups": [],
                      "ipv4-address-first": "224.0.0.1",
                      "ipv4-address-last": "224.0.0.4"
                    },
                    {
                      "uid": "fdca71eb-0d30-4750-97d9-457da37a7a99",
                      "name": "New Multicast Address Range 2",
                      "type": "multicast-address-range",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      },
                      "meta-info": {
                        "lock": "locked by current session",
                        "validation-state": "ok",
                        "last-modify-time": {
                          "posix": 1483966524730,
                          "iso-8601": "2017-01-09T14:55+0200"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1483966524730,
                          "iso-8601": "2017-01-09T14:55+0200"
                        },
                        "creator": "aa"
                      },
                      "tags": [],
                      "read-only": false,
                      "comments": "",
                      "color": "black",
                      "icon": "Objects/ip",
                      "groups": [],
                      "ipv4-address-first": "224.0.0.19",
                      "ipv4-address-last": "224.0.0.19"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-group-with-exclusion": {
      "post": {
        "tags": [
          "GroupWithExclusion"
        ],
        "operationId": "addGroupWithExclusion",
        "description": "The parameters and request body are for method: addGroupWithExclusion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-group-with-exclusion": {
      "post": {
        "tags": [
          "GroupWithExclusion"
        ],
        "operationId": "showGroupWithExclusion",
        "description": "The parameters and request body are for method: showGroupWithExclusion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-group-with-exclusion": {
      "post": {
        "tags": [
          "GroupWithExclusion"
        ],
        "operationId": "setGroupWithExclusion",
        "description": "The parameters and request body are for method: setGroupWithExclusion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-group-with-exclusion": {
      "post": {
        "tags": [
          "GroupWithExclusion"
        ],
        "operationId": "deleteGroupWithExclusion",
        "description": "The parameters and request body are for method: deleteGroupWithExclusion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-groups-with-exclusion": {
      "post": {
        "tags": [
          "GroupWithExclusion"
        ],
        "operationId": "showGroupsWithExclusion",
        "description": "The parameters and request body are for method: showGroupsWithExclusion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-simple-gateway": {
      "post": {
        "tags": [
          "SimpleGateway"
        ],
        "operationId": "addSimpleGateway",
        "description": "The parameters and request body are for method: addSimpleGateway. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "name": {
                      "type": "string"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "ipv6-address": {
                      "type": "string"
                    },
                    "dynamic-ip": {
                      "type": "boolean"
                    },
                    "version": {
                      "type": "string"
                    },
                    "os-name": {
                      "type": "string"
                    },
                    "hardware": {
                      "type": "string"
                    },
                    "sic-name": {
                      "type": "string"
                    },
                    "sic-state": {
                      "type": "string"
                    },
                    "interfaces": {
                      "type": "object"
                    },
                    "firewall": {
                      "type": "boolean"
                    },
                    "firewall-settings": {
                      "type": "object",
                      "properties": {
                        "auto-maximum-limit-for-concurrent-connections": {
                          "type": "boolean"
                        },
                        "maximum-limit-for-concurrent-connections": {
                          "type": "number"
                        },
                        "auto-calculate-connections-hash-table-size-and-memory-pool": {
                          "type": "boolean"
                        },
                        "connections-hash-size": {
                          "type": "number"
                        },
                        "memory-pool-size": {
                          "type": "number"
                        },
                        "maximum-memory-pool-size": {
                          "type": "number"
                        }
                      }
                    },
                    "vpn": {
                      "type": "boolean"
                    },
                    "application-control": {
                      "type": "boolean"
                    },
                    "url-filtering": {
                      "type": "boolean"
                    },
                    "data-awareness": {
                      "type": "boolean"
                    },
                    "ips": {
                      "type": "boolean"
                    },
                    "anti-bot": {
                      "type": "boolean"
                    },
                    "anti-virus": {
                      "type": "boolean"
                    },
                    "threat-emulation": {
                      "type": "boolean"
                    },
                    "save-logs-locally": {
                      "type": "boolean"
                    },
                    "send-alerts-to-server": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "send-logs-to-server": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "send-logs-to-backup-server": {
                      "type": "object"
                    },
                    "logs-settings": {
                      "type": "object",
                      "properties": {
                        "rotate-log-by-file-size": {
                          "type": "boolean"
                        },
                        "rotate-log-file-size-threshold": {
                          "type": "number"
                        },
                        "rotate-log-on-schedule": {
                          "type": "boolean"
                        },
                        "alert-when-free-disk-space-below-metrics": {
                          "type": "string"
                        },
                        "alert-when-free-disk-space-below": {
                          "type": "boolean"
                        },
                        "alert-when-free-disk-space-below-threshold": {
                          "type": "number"
                        },
                        "alert-when-free-disk-space-below-type": {
                          "type": "string"
                        },
                        "delete-when-free-disk-space-below-metrics": {
                          "type": "string"
                        },
                        "delete-when-free-disk-space-below": {
                          "type": "boolean"
                        },
                        "delete-when-free-disk-space-below-threshold": {
                          "type": "number"
                        },
                        "before-delete-keep-logs-from-the-last-days": {
                          "type": "boolean"
                        },
                        "before-delete-keep-logs-from-the-last-days-threshold": {
                          "type": "number"
                        },
                        "before-delete-run-script": {
                          "type": "boolean"
                        },
                        "before-delete-run-script-command": {
                          "type": "string"
                        },
                        "stop-logging-when-free-disk-space-below-metrics": {
                          "type": "string"
                        },
                        "stop-logging-when-free-disk-space-below": {
                          "type": "boolean"
                        },
                        "stop-logging-when-free-disk-space-below-threshold": {
                          "type": "number"
                        },
                        "reject-connections-when-free-disk-space-below-threshold": {
                          "type": "boolean"
                        },
                        "reserve-for-packet-capture-metrics": {
                          "type": "string"
                        },
                        "reserve-for-packet-capture-threshold": {
                          "type": "number"
                        },
                        "delete-index-files-when-index-size-above-metrics": {
                          "type": "string"
                        },
                        "delete-index-files-when-index-size-above": {
                          "type": "boolean"
                        },
                        "delete-index-files-when-index-size-above-threshold": {
                          "type": "number"
                        },
                        "delete-index-files-older-than-days": {
                          "type": "boolean"
                        },
                        "delete-index-files-older-than-days-threshold": {
                          "type": "number"
                        },
                        "forward-logs-to-log-server": {
                          "type": "boolean"
                        },
                        "perform-log-rotate-before-log-forwarding": {
                          "type": "boolean"
                        },
                        "update-account-log-every": {
                          "type": "number"
                        },
                        "detect-new-citrix-ica-application-names": {
                          "type": "boolean"
                        },
                        "turn-on-qos-logging": {
                          "type": "boolean"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "99457705-dc26-40ce-b9cd-5633eb09b1aa",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1451485835851,
                      "iso-8601": "2015-12-30T16:30+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1451485835851,
                      "iso-8601": "2015-12-30T16:30+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "name": "gw1",
                  "comments": "",
                  "color": "black",
                  "icon": "General/globalsNa",
                  "groups": [],
                  "ipv6-address": "::0",
                  "dynamic-ip": false,
                  "version": "R80",
                  "os-name": "Gaia",
                  "hardware": "Open server",
                  "sic-name": "",
                  "sic-state": "uninitialized",
                  "interfaces": [],
                  "firewall": true,
                  "firewall-settings": {
                    "auto-maximum-limit-for-concurrent-connections": true,
                    "maximum-limit-for-concurrent-connections": 25000,
                    "auto-calculate-connections-hash-table-size-and-memory-pool": true,
                    "connections-hash-size": 131072,
                    "memory-pool-size": 6,
                    "maximum-memory-pool-size": 30
                  },
                  "vpn": false,
                  "application-control": false,
                  "url-filtering": false,
                  "data-awareness": false,
                  "ips": false,
                  "anti-bot": false,
                  "anti-virus": false,
                  "threat-emulation": false,
                  "save-logs-locally": false,
                  "send-alerts-to-server": [
                    "test_server_1"
                  ],
                  "send-logs-to-server": [
                    "test_server_2"
                  ],
                  "send-logs-to-backup-server": [],
                  "logs-settings": {
                    "rotate-log-by-file-size": false,
                    "rotate-log-file-size-threshold": 1000,
                    "rotate-log-on-schedule": false,
                    "alert-when-free-disk-space-below-metrics": "mbytes",
                    "alert-when-free-disk-space-below": true,
                    "alert-when-free-disk-space-below-threshold": 20,
                    "alert-when-free-disk-space-below-type": "popup alert",
                    "delete-when-free-disk-space-below-metrics": "mbytes",
                    "delete-when-free-disk-space-below": true,
                    "delete-when-free-disk-space-below-threshold": 5000,
                    "before-delete-keep-logs-from-the-last-days": false,
                    "before-delete-keep-logs-from-the-last-days-threshold": 0,
                    "before-delete-run-script": false,
                    "before-delete-run-script-command": "",
                    "stop-logging-when-free-disk-space-below-metrics": "mbytes",
                    "stop-logging-when-free-disk-space-below": true,
                    "stop-logging-when-free-disk-space-below-threshold": 100,
                    "reject-connections-when-free-disk-space-below-threshold": false,
                    "reserve-for-packet-capture-metrics": "mbytes",
                    "reserve-for-packet-capture-threshold": 500,
                    "delete-index-files-when-index-size-above-metrics": "mbytes",
                    "delete-index-files-when-index-size-above": false,
                    "delete-index-files-when-index-size-above-threshold": 100000,
                    "delete-index-files-older-than-days": true,
                    "delete-index-files-older-than-days-threshold": 14,
                    "forward-logs-to-log-server": false,
                    "perform-log-rotate-before-log-forwarding": false,
                    "update-account-log-every": 3600,
                    "detect-new-citrix-ica-application-names": false,
                    "turn-on-qos-logging": true
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-simple-gateway": {
      "post": {
        "tags": [
          "SimpleGateway"
        ],
        "operationId": "showSimpleGateway",
        "description": "The parameters and request body are for method: showSimpleGateway. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-simple-gateway": {
      "post": {
        "tags": [
          "SimpleGateway"
        ],
        "operationId": "setSimpleGateway",
        "description": "The parameters and request body are for method: setSimpleGateway. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-simple-gateway": {
      "post": {
        "tags": [
          "SimpleGateway"
        ],
        "operationId": "deleteSimpleGateway",
        "description": "The parameters and request body are for method: deleteSimpleGateway. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-simple-gateways": {
      "post": {
        "tags": [
          "SimpleGateway"
        ],
        "operationId": "showSimpleGateways",
        "description": "The parameters and request body are for method: showSimpleGateways. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-security-zone": {
      "post": {
        "tags": [
          "SecurityZone"
        ],
        "operationId": "addSecurityZone",
        "description": "The parameters and request body are for method: addSecurityZone. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-security-zone": {
      "post": {
        "tags": [
          "SecurityZone"
        ],
        "operationId": "showSecurityZone",
        "description": "The parameters and request body are for method: showSecurityZone. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-security-zone": {
      "post": {
        "tags": [
          "SecurityZone"
        ],
        "operationId": "setSecurityZone",
        "description": "The parameters and request body are for method: setSecurityZone. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-security-zone": {
      "post": {
        "tags": [
          "SecurityZone"
        ],
        "operationId": "deleteSecurityZone",
        "description": "The parameters and request body are for method: deleteSecurityZone. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-security-zones": {
      "post": {
        "tags": [
          "SecurityZone"
        ],
        "operationId": "showSecurityZones",
        "description": "The parameters and request body are for method: showSecurityZones. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 5,
                  "total": 5,
                  "objects": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "security-zone",
                      "name": "DMZZone",
                      "uid": "8c4041ea-ff14-4e4b-a9d9-4183d18c790a"
                    },
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "security-zone",
                      "name": "ExternalZone",
                      "uid": "237a4cbc-7fb6-4d50-872a-4904468271c4"
                    },
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "security-zone",
                      "name": "InternalZone",
                      "uid": "e8131db2-8388-42a5-924a-82de32db20f7"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "security-zone",
                      "name": "SZone1",
                      "uid": "cecd7d2e-c5bb-40d2-bd34-7afe8c37a062"
                    },
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "security-zone",
                      "name": "WirelessZone",
                      "uid": "57de3848-3675-48ed-b045-41378f4babb3"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-time": {
      "post": {
        "tags": [
          "Time"
        ],
        "operationId": "addTime",
        "description": "The parameters and request body are for method: addTime. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-time": {
      "post": {
        "tags": [
          "Time"
        ],
        "operationId": "showTime",
        "description": "The parameters and request body are for method: showTime. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-time": {
      "post": {
        "tags": [
          "Time"
        ],
        "operationId": "setTime",
        "description": "The parameters and request body are for method: setTime. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-time": {
      "post": {
        "tags": [
          "Time"
        ],
        "operationId": "deleteTime",
        "description": "The parameters and request body are for method: deleteTime. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-times": {
      "post": {
        "tags": [
          "Time"
        ],
        "operationId": "showTimes",
        "description": "The parameters and request body are for method: showTimes. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-time-group": {
      "post": {
        "tags": [
          "TimeGroup"
        ],
        "operationId": "addTimeGroup",
        "description": "The parameters and request body are for method: addTimeGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-time-group": {
      "post": {
        "tags": [
          "TimeGroup"
        ],
        "operationId": "showTimeGroup",
        "description": "The parameters and request body are for method: showTimeGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-time-group": {
      "post": {
        "tags": [
          "TimeGroup"
        ],
        "operationId": "setTimeGroup",
        "description": "The parameters and request body are for method: setTimeGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-time-group": {
      "post": {
        "tags": [
          "TimeGroup"
        ],
        "operationId": "deleteTimeGroup",
        "description": "The parameters and request body are for method: deleteTimeGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-time-groups": {
      "post": {
        "tags": [
          "TimeGroup"
        ],
        "operationId": "showTimeGroups",
        "description": "The parameters and request body are for method: showTimeGroups. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-access-role": {
      "post": {
        "tags": [
          "AccessRole"
        ],
        "operationId": "addAccessRole",
        "description": "The parameters and request body are for method: addAccessRole. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-access-role": {
      "post": {
        "tags": [
          "AccessRole"
        ],
        "operationId": "showAccessRole",
        "description": "The parameters and request body are for method: showAccessRole. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-access-role": {
      "post": {
        "tags": [
          "AccessRole"
        ],
        "operationId": "setAccessRole",
        "description": "The parameters and request body are for method: setAccessRole. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-access-role": {
      "post": {
        "tags": [
          "AccessRole"
        ],
        "operationId": "deleteAccessRole",
        "description": "The parameters and request body are for method: deleteAccessRole. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-access-roles": {
      "post": {
        "tags": [
          "AccessRole"
        ],
        "operationId": "showAccessRoles",
        "description": "The parameters and request body are for method: showAccessRoles. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-dynamic-object": {
      "post": {
        "tags": [
          "DynamicObject"
        ],
        "operationId": "addDynamicObject",
        "description": "The parameters and request body are for method: addDynamicObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "c5a7f50c-a951-45be-8b82-48441c9f48de",
                  "name": "Dynamic_Object_1",
                  "type": "dynamic-object",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1478597722485,
                      "iso-8601": "2016-11-08T11:35+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1478597722485,
                      "iso-8601": "2016-11-08T11:35+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "My Dynamic Object 1",
                  "color": "yellow",
                  "icon": "NetworkObjects/dynamicObject"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-dynamic-object": {
      "post": {
        "tags": [
          "DynamicObject"
        ],
        "operationId": "showDynamicObject",
        "description": "The parameters and request body are for method: showDynamicObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "5d98de8f-722d-4560-ae65-829ef2bffd15",
                  "name": "Dynamic_Object_1",
                  "type": "dynamic-object",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1478693712579,
                      "iso-8601": "2016-11-09T14:15+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1478693712579,
                      "iso-8601": "2016-11-09T14:15+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "My Dynamic Object 1",
                  "color": "yellow",
                  "icon": "NetworkObjects/dynamicObject"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-dynamic-object": {
      "post": {
        "tags": [
          "DynamicObject"
        ],
        "operationId": "setDynamicObject",
        "description": "The parameters and request body are for method: setDynamicObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "5d98de8f-722d-4560-ae65-829ef2bffd15",
                  "name": "Dynamic_Object_2",
                  "type": "dynamic-object",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1478693914828,
                      "iso-8601": "2016-11-09T14:18+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1478693712579,
                      "iso-8601": "2016-11-09T14:15+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "My Dynamic Object 1",
                  "color": "yellow",
                  "icon": "NetworkObjects/dynamicObject"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-dynamic-object": {
      "post": {
        "tags": [
          "DynamicObject"
        ],
        "operationId": "deleteDynamicObject",
        "description": "The parameters and request body are for method: deleteDynamicObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-dynamic-objects": {
      "post": {
        "tags": [
          "DynamicObject"
        ],
        "operationId": "showDynamicObjects",
        "description": "The parameters and request body are for method: showDynamicObjects. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 7,
                  "total": 7,
                  "objects": [
                    {
                      "uid": "cac127fb-24f5-4079-9404-be5c00d11393",
                      "name": "AuxiliaryNet",
                      "type": "dynamic-object",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "fe9b9103-f1c0-499e-985a-d15ccc7ebaab",
                      "name": "CPDShield",
                      "type": "dynamic-object",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "8a883654-cdd4-45a8-b079-d4e476a70ad6",
                      "name": "DMZNet",
                      "type": "dynamic-object",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "5d98de8f-722d-4560-ae65-829ef2bffd15",
                      "name": "Dynamic_Object_1",
                      "type": "dynamic-object",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    },
                    {
                      "uid": "5e414bec-4a61-4675-a980-4841a1f5a0be",
                      "name": "InternalNet",
                      "type": "dynamic-object",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb36b-9aea-11d5-bd16-0090272ccb30",
                      "name": "LocalMachine",
                      "type": "dynamic-object",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "d67128b1-bdba-4724-93e8-336e45853b0a",
                      "name": "LocalMachine_All_Interfaces",
                      "type": "dynamic-object",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-trusted-client": {
      "post": {
        "tags": [
          "TrustedClient"
        ],
        "operationId": "addTrustedClient",
        "description": "The parameters and request body are for method: addTrustedClient. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-trusted-client": {
      "post": {
        "tags": [
          "TrustedClient"
        ],
        "operationId": "showTrustedClient",
        "description": "The parameters and request body are for method: showTrustedClient. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-trusted-client": {
      "post": {
        "tags": [
          "TrustedClient"
        ],
        "operationId": "setTrustedClient",
        "description": "The parameters and request body are for method: setTrustedClient. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-trusted-client": {
      "post": {
        "tags": [
          "TrustedClient"
        ],
        "operationId": "deleteTrustedClient",
        "description": "The parameters and request body are for method: deleteTrustedClient. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-trusted-clients": {
      "post": {
        "tags": [
          "TrustedClient"
        ],
        "operationId": "showTrustedClients",
        "description": "The parameters and request body are for method: showTrustedClients. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-tag": {
      "post": {
        "tags": [
          "Tags"
        ],
        "operationId": "addTag",
        "description": "The parameters and request body are for method: addTag. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "name": {
                      "type": "string"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "728a4212-a521-46a2-a5a1-b6536a9aecd5",
                  "folder": {
                    "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1432132584715,
                      "iso-8601": "2015-05-20T17:36+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1432132584715,
                      "iso-8601": "2015-05-20T17:36+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "tag1",
                      "uid": "687715ca-674b-4642-981b-b6243fde04c0"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "tag2",
                      "uid": "f1ee4a33-6577-45da-9d4f-cc352a349c80"
                    }
                  ],
                  "name": "My New Tag1",
                  "comments": "",
                  "color": "black",
                  "icon": "General/globalsNa"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-tag": {
      "post": {
        "tags": [
          "Tags"
        ],
        "operationId": "showTag",
        "description": "The parameters and request body are for method: showTag. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "name": {
                      "type": "string"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "f96b37ec-e22e-4945-8bbf-d37b117914e0",
                  "folder": {
                    "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1432132263822,
                      "iso-8601": "2015-05-20T17:31+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1432132263822,
                      "iso-8601": "2015-05-20T17:31+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "name": "my tag",
                  "comments": "",
                  "color": "black",
                  "icon": "General/globalsNa"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-tag": {
      "post": {
        "tags": [
          "Tags"
        ],
        "operationId": "setTag",
        "description": "The parameters and request body are for method: setTag. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "name": {
                      "type": "string"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "728a4212-a521-46a2-a5a1-b6536a9aecd5",
                  "folder": {
                    "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1432132678015,
                      "iso-8601": "2015-05-20T17:37+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1432132584715,
                      "iso-8601": "2015-05-20T17:36+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "tag1",
                      "uid": "687715ca-674b-4642-981b-b6243fde04c0"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "tag2",
                      "uid": "f1ee4a33-6577-45da-9d4f-cc352a349c80"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "tag3",
                      "uid": "dda885bb-0d5b-4529-96eb-55b757847092"
                    }
                  ],
                  "name": "My New Tag21",
                  "comments": "",
                  "color": "black",
                  "icon": "General/globalsNa"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-tag": {
      "post": {
        "tags": [
          "Tags"
        ],
        "operationId": "deleteTag",
        "description": "The parameters and request body are for method: deleteTag. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-tags": {
      "post": {
        "tags": [
          "Tags"
        ],
        "operationId": "showTags",
        "description": "The parameters and request body are for method: showTags. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 15,
                  "total": 15,
                  "objects": [
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "tag",
                      "name": "DMZ related",
                      "uid": "bcbace1f-aead-44da-9bff-56bdb1e4c4d2"
                    },
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "tag",
                      "name": "England",
                      "uid": "50877af4-4a17-4ff0-8f77-de0784e8f1ab"
                    },
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "tag",
                      "name": "Europe",
                      "uid": "89e6ee92-d01b-48e2-98a3-626e644d6ff9"
                    },
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "tag",
                      "name": "France",
                      "uid": "de21ae82-f7d6-4a3b-b49c-dc53a51def1d"
                    },
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "tag",
                      "name": "Important assets",
                      "uid": "c9ddb2b2-40a6-422a-a6ea-6c3214f8cf4b"
                    },
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "tag",
                      "name": "London",
                      "uid": "5a7a1f46-10b1-461d-b8c0-596c380dd05d"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "My New Tag",
                      "uid": "4995cbc3-ce01-4b2e-b6ac-bb48baee89e3"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "My New Tag21",
                      "uid": "728a4212-a521-46a2-a5a1-b6536a9aecd5"
                    },
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "tag",
                      "name": "New York",
                      "uid": "771878c4-990f-47b9-9249-1838163014e6"
                    },
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "tag",
                      "name": "Paris",
                      "uid": "16058757-98a1-4ed6-9926-c5fbfa192c52"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "my tag",
                      "uid": "f96b37ec-e22e-4945-8bbf-d37b117914e0"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "my tag1",
                      "uid": "9f51e2b6-696a-4f28-9239-5b0622fce1e5"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "tag1",
                      "uid": "687715ca-674b-4642-981b-b6243fde04c0"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "tag2",
                      "uid": "f1ee4a33-6577-45da-9d4f-cc352a349c80"
                    },
                    {
                      "folder": {
                        "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "tag",
                      "name": "tag3",
                      "uid": "dda885bb-0d5b-4529-96eb-55b757847092"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-dns-domain": {
      "post": {
        "tags": [
          "DNSDomain"
        ],
        "operationId": "addDnsDomain",
        "description": "The parameters and request body are for method: addDnsDomain. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "is-sub-domain": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "ea6b168b-87d8-4ab6-9a8c-89c422dbde88",
                  "name": ".www.example.com",
                  "type": "dns-domain",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1478675596098,
                      "iso-8601": "2016-11-09T09:13+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1478675596098,
                      "iso-8601": "2016-11-09T09:13+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Objects/domain",
                  "is-sub-domain": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-dns-domain": {
      "post": {
        "tags": [
          "DNSDomain"
        ],
        "operationId": "showDnsDomain",
        "description": "The parameters and request body are for method: showDnsDomain. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "is-sub-domain": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "ab7aa902-ccac-4278-b4eb-c140c07c6170",
                  "name": ".www.example.com",
                  "type": "dns-domain",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1478675839059,
                      "iso-8601": "2016-11-09T09:17+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1478675839059,
                      "iso-8601": "2016-11-09T09:17+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "color": "black",
                  "icon": "Objects/domain",
                  "is-sub-domain": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-dns-domain": {
      "post": {
        "tags": [
          "DNSDomain"
        ],
        "operationId": "setDnsDomain",
        "description": "The parameters and request body are for method: setDnsDomain. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "is-sub-domain": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "ea6b168b-87d8-4ab6-9a8c-89c422dbde88",
                  "name": ".example.com",
                  "type": "dns-domain",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1478675752543,
                      "iso-8601": "2016-11-09T09:15+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1478675596098,
                      "iso-8601": "2016-11-09T09:13+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Objects/domain",
                  "is-sub-domain": true
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-dns-domain": {
      "post": {
        "tags": [
          "DNSDomain"
        ],
        "operationId": "deleteDnsDomain",
        "description": "The parameters and request body are for method: deleteDnsDomain. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-dns-domains": {
      "post": {
        "tags": [
          "DNSDomain"
        ],
        "operationId": "showDnsDomains",
        "description": "The parameters and request body are for method: showDnsDomains. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 1,
                  "total": 1,
                  "objects": [
                    {
                      "uid": "ab7aa902-ccac-4278-b4eb-c140c07c6170",
                      "name": ".www.example.com",
                      "type": "dns-domain",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-opsec-application": {
      "post": {
        "tags": [
          "OPSECApplication"
        ],
        "operationId": "addOpsecApplication",
        "description": "The parameters and request body are for method: addOpsecApplication. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "host": {
                      "type": "string"
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "cpmi": {
                      "type": "object",
                      "properties": {
                        "use-administrator-credentials": {
                          "type": "boolean"
                        },
                        "administrator-profile": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "1741bb6c-3b19-456c-a635-b96c8456a0e8",
                  "name": "MyOpsecApplication",
                  "type": "opsec-application",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "host": "SomeHost",
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1481003908596,
                      "iso-8601": "2016-12-06T07:58+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1481003908596,
                      "iso-8601": "2016-12-06T07:58+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "OPSECapplications/OPSEC",
                  "cpmi": {
                    "use-administrator-credentials": false,
                    "administrator-profile": "super user"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-opsec-application": {
      "post": {
        "tags": [
          "OPSECApplication"
        ],
        "operationId": "showOpsecApplication",
        "description": "The parameters and request body are for method: showOpsecApplication. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "host": {
                      "type": "string"
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "lea": {
                      "type": "object",
                      "properties": {
                        "access-permissions": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "1741bb6c-3b19-456c-a635-b96c8456a0e8",
                  "name": "MyUpdatedOpsecapplication",
                  "type": "opsec-application",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "host": "SomeHost",
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1481003965978,
                      "iso-8601": "2016-12-06T07:59+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1481003908596,
                      "iso-8601": "2016-12-06T07:58+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "color": "black",
                  "icon": "OPSECapplications/OPSEC",
                  "lea": {
                    "access-permissions": "show all"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-opsec-application": {
      "post": {
        "tags": [
          "OPSECApplication"
        ],
        "operationId": "setOpsecApplication",
        "description": "The parameters and request body are for method: setOpsecApplication. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "host": {
                      "type": "string"
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "lea": {
                      "type": "object",
                      "properties": {
                        "access-permissions": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "1741bb6c-3b19-456c-a635-b96c8456a0e8",
                  "name": "MyUpdatedOpsecapplication",
                  "type": "opsec-application",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "host": "SomeHost",
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1481003965978,
                      "iso-8601": "2016-12-06T07:59+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1481003908596,
                      "iso-8601": "2016-12-06T07:58+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "OPSECapplications/OPSEC",
                  "lea": {
                    "access-permissions": "show all"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-opsec-application": {
      "post": {
        "tags": [
          "OPSECApplication"
        ],
        "operationId": "deleteOpsecApplication",
        "description": "The parameters and request body are for method: deleteOpsecApplication. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-opsec-applications": {
      "post": {
        "tags": [
          "OPSECApplication"
        ],
        "operationId": "showOpsecApplications",
        "description": "The parameters and request body are for method: showOpsecApplications. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          },
                          "host": {
                            "type": "string"
                          },
                          "meta-info": {
                            "type": "object",
                            "properties": {
                              "lock": {
                                "type": "string"
                              },
                              "validation-state": {
                                "type": "string"
                              },
                              "last-modify-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "last-modifier": {
                                "type": "string"
                              },
                              "creation-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "creator": {
                                "type": "string"
                              }
                            }
                          },
                          "tags": {
                            "type": "object"
                          },
                          "read-only": {
                            "type": "boolean"
                          },
                          "comments": {
                            "type": "string"
                          },
                          "color": {
                            "type": "string"
                          },
                          "icon": {
                            "type": "string"
                          },
                          "lea": {
                            "type": "object",
                            "properties": {
                              "access-permissions": {
                                "type": "string"
                              },
                              "administrator-profile": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 2,
                  "total": 2,
                  "objects": [
                    {
                      "uid": "aec7ebba-38c1-4308-a080-2d74953ab3e8",
                      "name": "MySecondOpsecApplication",
                      "type": "opsec-application",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      },
                      "host": "SomeHost",
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "last-modify-time": {
                          "posix": 1481004093046,
                          "iso-8601": "2016-12-06T08:01+0200"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1481004089846,
                          "iso-8601": "2016-12-06T08:01+0200"
                        },
                        "creator": "aa"
                      },
                      "tags": [],
                      "read-only": false,
                      "comments": "",
                      "color": "black",
                      "icon": "OPSECapplications/OPSEC",
                      "lea": {
                        "access-permissions": "by profile",
                        "administrator-profile": "read only all"
                      }
                    },
                    {
                      "uid": "1741bb6c-3b19-456c-a635-b96c8456a0e8",
                      "name": "MyUpdatedOpsecapplication",
                      "type": "opsec-application",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      },
                      "host": "SomeHost",
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "last-modify-time": {
                          "posix": 1481003965998,
                          "iso-8601": "2016-12-06T07:59+0200"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1481003908607,
                          "iso-8601": "2016-12-06T07:58+0200"
                        },
                        "creator": "aa"
                      },
                      "tags": [],
                      "read-only": false,
                      "comments": "",
                      "color": "black",
                      "icon": "OPSECapplications/OPSEC",
                      "lea": {
                        "access-permissions": "show all"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-data-center-content": {
      "post": {
        "tags": [
          "DataCenter"
        ],
        "operationId": "showDataCenterContent",
        "description": "The parameters and request body are for method: showDataCenterContent. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "name-in-data-center": {
                            "type": "string"
                          },
                          "uid-in-data-center": {
                            "type": "string"
                          },
                          "type-in-data-center": {
                            "type": "string"
                          },
                          "data-center-object": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "type": {
                                "type": "string"
                              },
                              "domain": {
                                "type": "object",
                                "properties": {
                                  "name": {
                                    "type": "string"
                                  },
                                  "uid": {
                                    "type": "string"
                                  },
                                  "domain-type": {
                                    "type": "string"
                                  }
                                }
                              }
                            }
                          },
                          "additional-properties": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string"
                                },
                                "value": {
                                  "type": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    }
                  }
                },
                "example": {
                  "objects": [
                    {
                      "name": "VM1 mgmt name",
                      "name-in-data-center": "My VM1",
                      "uid-in-data-center": "vm-1",
                      "type-in-data-center": "VirtualMachine",
                      "data-center-object": {
                        "uid": "2ecbde51-0b30-4318-8ddd-bec3310540a2",
                        "name": "VM1 mgmt name",
                        "type": "data-center-object",
                        "domain": {
                          "name": "SMC User",
                          "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                          "domain-type": "domain"
                        }
                      },
                      "additional-properties": [
                        {
                          "name": "IP",
                          "value": "10.0.0.1"
                        },
                        {
                          "name": "Path",
                          "value": "/Datacenters/VMs"
                        }
                      ]
                    },
                    {
                      "name": "My VM2",
                      "name-in-data-center": "My VM2",
                      "uid-in-data-center": "vm-2",
                      "type-in-data-center": "VirtualMachine",
                      "additional-properties": [
                        {
                          "name": "IP",
                          "value": "10.0.0.2"
                        },
                        {
                          "name": "Path",
                          "value": "/Datacenters/VMs"
                        }
                      ]
                    },
                    {
                      "name": "My VM3",
                      "name-in-data-center": "My VM3",
                      "uid-in-data-center": "vm-3",
                      "type-in-data-center": "VirtualMachine",
                      "additional-properties": [
                        {
                          "name": "Path",
                          "value": "/Datacenters/VMs"
                        }
                      ]
                    }
                  ],
                  "from": 1,
                  "to": 3,
                  "total": 3
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-data-center": {
      "post": {
        "tags": [
          "DataCenter"
        ],
        "operationId": "showDataCenter",
        "description": "The parameters and request body are for method: showDataCenter. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "server-type": {
                      "type": "string"
                    },
                    "properties": {
                      "type": "object",
                      "properties": {
                        "vCenter_Username": {
                          "type": "string"
                        },
                        "vCenter_Hostname": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "d5379ada-c7d7-4678-bf55-0776f33b2326",
                  "name": "vCenter 1",
                  "type": "data-center",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1454506141609,
                      "iso-8601": "2016-02-03T08:29-0500"
                    },
                    "last-modifier": "admin",
                    "creation-time": {
                      "posix": 1454506141609,
                      "iso-8601": "2016-02-03T08:29-0500"
                    },
                    "creator": "admin"
                  },
                  "tags": [],
                  "comments": "",
                  "color": "black",
                  "icon": "NetworkObjects/ExternalDataSource",
                  "server-type": "vCenter",
                  "properties": {
                    "vCenter_Username": "user1",
                    "vCenter_Hostname": "vcenter1.host.com"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-data-centers": {
      "post": {
        "tags": [
          "DataCenter"
        ],
        "operationId": "showDataCenters",
        "description": "The parameters and request body are for method: showDataCenters. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 1,
                  "total": 1,
                  "objects": [
                    {
                      "uid": "d5379ada-c7d7-4678-bf55-0776f33b2326",
                      "name": "vCenter 1",
                      "type": "data-center",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-data-center-object": {
      "post": {
        "tags": [
          "DataCenterObject"
        ],
        "operationId": "addDataCenterObjectWithGroup",
        "description": "The parameters and request body are for method: addDataCenterObjectWithGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "additional-properties": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "value": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "data-center": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "type": {
                          "type": "string"
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    },
                    "name-in-data-center": {
                      "type": "string"
                    },
                    "data-center-object-meta-info": {
                      "type": "object",
                      "properties": {
                        "updated-on-data-center": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "63e7f3d7-f202-4149-a806-f9faf3a2d989",
                  "name": "VM1 mgmt name",
                  "type": "data-center-object",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1456733825366,
                      "iso-8601": "2016-02-29T03:17-0500"
                    },
                    "last-modifier": "admin",
                    "creation-time": {
                      "posix": 1456733825366,
                      "iso-8601": "2016-02-29T03:17-0500"
                    },
                    "creator": "admin"
                  },
                  "tags": [],
                  "comments": "",
                  "color": "none",
                  "icon": "NetworkObjects/ExternalDataObject",
                  "groups": [
                    {
                      "uid": "b74b9df2-ee3c-4480-a343-cd61e55293a8",
                      "name": "Database VMs Group",
                      "type": "group",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    }
                  ],
                  "additional-properties": [
                    {
                      "name": "IP",
                      "value": "172.23.34.68"
                    }
                  ],
                  "data-center": {
                    "uid": "656bf2e4-c510-4935-aea5-81e51e015965",
                    "name": "vCenter 1",
                    "type": "data-center",
                    "domain": {
                      "domain-type": "domain",
                      "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                      "name": "SMC User"
                    }
                  },
                  "name-in-data-center": "My VM1",
                  "data-center-object-meta-info": {
                    "updated-on-data-center": {
                      "posix": 1456732795695,
                      "iso-8601": "2016-02-29T02:59-0500"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-data-center-object": {
      "post": {
        "tags": [
          "DataCenterObject"
        ],
        "operationId": "showDataCenterObject",
        "description": "The parameters and request body are for method: showDataCenterObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "additional-properties": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "value": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "uid-in-data-center": {
                      "type": "string"
                    },
                    "data-center": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "type": {
                          "type": "string"
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    },
                    "name-in-data-center": {
                      "type": "string"
                    },
                    "data-center-object-meta-info": {
                      "type": "object",
                      "properties": {
                        "updated-on-data-center": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "63e7f3d7-f202-4149-a806-f9faf3a2d989",
                  "name": "VM1 mgmt name",
                  "type": "data-center-object",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1456733825366,
                      "iso-8601": "2016-02-29T03:17-0500"
                    },
                    "last-modifier": "admin",
                    "creation-time": {
                      "posix": 1456733825366,
                      "iso-8601": "2016-02-29T03:17-0500"
                    },
                    "creator": "admin"
                  },
                  "tags": [],
                  "comments": "",
                  "color": "none",
                  "icon": "NetworkObjects/ExternalDataObject",
                  "groups": [
                    {
                      "uid": "b74b9df2-ee3c-4480-a343-cd61e55293a8",
                      "name": "Database VMs Group",
                      "type": "group",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    }
                  ],
                  "additional-properties": [
                    {
                      "name": "IP",
                      "value": "172.23.34.68"
                    }
                  ],
                  "uid-in-data-center": "vm-1",
                  "data-center": {
                    "uid": "656bf2e4-c510-4935-aea5-81e51e015965",
                    "name": "vCenter 1",
                    "type": "data-center",
                    "domain": {
                      "domain-type": "domain",
                      "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                      "name": "SMC User"
                    }
                  },
                  "name-in-data-center": "My VM1",
                  "data-center-object-meta-info": {
                    "updated-on-data-center": {
                      "posix": 1456732795695,
                      "iso-8601": "2016-02-29T02:59-0500"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-data-center-object": {
      "post": {
        "tags": [
          "DataCenterObject"
        ],
        "operationId": "deleteDataCenterObject",
        "description": "The parameters and request body are for method: deleteDataCenterObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-data-center-objects": {
      "post": {
        "tags": [
          "DataCenterObject"
        ],
        "operationId": "showDataCenterObjects",
        "description": "The parameters and request body are for method: showDataCenterObjects. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 4,
                  "total": 4,
                  "objects": [
                    {
                      "uid": "61dcb32c-1c01-409d-bb04-f82b2faa5f00",
                      "name": "VM1 mgmt name",
                      "type": "data-center-object",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    },
                    {
                      "uid": "a0180380-2b1d-4ea8-b2be-865b76691261",
                      "name": "My VM2",
                      "type": "data-center-object",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    },
                    {
                      "uid": "115ba372-c70f-427e-ba64-6289f2fb67f9",
                      "name": "My VM3",
                      "type": "data-center-object",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    },
                    {
                      "uid": "406e7fc8-ab52-454a-9c9b-aa1cdbe97baf",
                      "name": "My VM4",
                      "type": "data-center-object",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-updatable-objects-repository-content": {
      "post": {
        "tags": [
          "UpdatableObjectsRepository"
        ],
        "operationId": "showUpdatableObjectsRepositoryContent",
        "description": "The parameters and request body are for method: showUpdatableObjectsRepositoryContent. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name-in-updatable-objects-repository": {
                            "type": "string"
                          },
                          "uid-in-updatable-objects-repository": {
                            "type": "string"
                          },
                          "additional-properties": {
                            "type": "object",
                            "properties": {
                              "description": {
                                "type": "string"
                              },
                              "info-text": {
                                "type": "string"
                              },
                              "info-url": {
                                "type": "string"
                              },
                              "uri": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 1,
                  "total": 123,
                  "objects": [
                    {
                      "name-in-updatable-objects-repository": "Amazon",
                      "uid-in-updatable-objects-repository": "9f838ccf-4376-11e7-948e-005056c0000c",
                      "additional-properties": {
                        "description": "Amazon Web Services (abbreviated AWS) is a collection of remote computing services (also called web services) that together make up a cloud computing platform, offered over the Internet by Amazon.com.",
                        "info-text": "Amazon Web Services IP address ranges info page",
                        "info-url": "http://docs.aws.amazon.com/general/latest/gr/aws-ip-ranges.html",
                        "uri": "/Updatable Objects/Amazon Web Services"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/update-updatable-objects-repository-content": {
      "post": {
        "tags": [
          "UpdatableObjectsRepository"
        ],
        "operationId": "updateUpdatableObjectsRepositoryContent",
        "description": "The parameters and request body are for method: updateUpdatableObjectsRepositoryContent. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "task-id": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "task-id": "01234567-89ab-cdef-a930-8c37a59972b3"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-updatable-object": {
      "post": {
        "tags": [
          "UpdatableObject"
        ],
        "operationId": "addUpdatableObject",
        "description": "The parameters and request body are for method: addUpdatableObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "name-in-updatable-objects-repository": {
                      "type": "string"
                    },
                    "uid-in-updatable-objects-repository": {
                      "type": "string"
                    },
                    "additional-properties": {
                      "type": "object",
                      "properties": {
                        "description": {
                          "type": "string"
                        },
                        "info-text": {
                          "type": "string"
                        },
                        "info-url": {
                          "type": "string"
                        },
                        "uri": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "updatable-object-meta-info": {
                      "type": "object",
                      "properties": {
                        "updated-on-updatable-objects-repository": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "1506cdeb-c132-4d28-bca5-95eb07e12828",
                  "name": "CodeBuild US East 1",
                  "type": "updatable-object",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "name-in-updatable-objects-repository": "CodeBuild US East 1",
                  "uid-in-updatable-objects-repository": "65fcda90-774d-3efc-8402-e814cb89aa9c",
                  "additional-properties": {
                    "description": "Amazon CodeBuild is a build service that compiles source code, runs tests, and produces software packages.",
                    "info-text": "Amazon Web Services IP address ranges info page",
                    "info-url": "http://docs.aws.amazon.com/general/latest/gr/aws-ip-ranges.html",
                    "uri": "/Updatable Objects/Amazon Web Services/CodeBuild"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1516634291420,
                      "iso-8601": "2018-01-22T17:18+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1516634291420,
                      "iso-8601": "2018-01-22T17:18+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "@app/cp_aws_codebuild",
                  "updatable-object-meta-info": {
                    "updated-on-updatable-objects-repository": {
                      "posix": 1516633264623,
                      "iso-8601": "2018-01-22T17:01+0200"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-updatable-object": {
      "post": {
        "tags": [
          "UpdatableObject"
        ],
        "operationId": "showUpdatableObject",
        "description": "The parameters and request body are for method: showUpdatableObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "name-in-updatable-objects-repository": {
                      "type": "string"
                    },
                    "uid-in-updatable-objects-repository": {
                      "type": "string"
                    },
                    "additional-properties": {
                      "type": "object",
                      "properties": {
                        "description": {
                          "type": "string"
                        },
                        "info-text": {
                          "type": "string"
                        },
                        "info-url": {
                          "type": "string"
                        },
                        "uri": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "updatable-object-meta-info": {
                      "type": "object",
                      "properties": {
                        "updated-on-updatable-objects-repository": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "1506cdeb-c132-4d28-bca5-95eb07e12828",
                  "name": "CodeBuild US East 1",
                  "type": "updatable-object",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "name-in-updatable-objects-repository": "CodeBuild US East 1",
                  "uid-in-updatable-objects-repository": "65fcda90-774d-3efc-8402-e814cb89aa9c",
                  "additional-properties": {
                    "description": "Amazon CodeBuild is a build service that compiles source code, runs tests, and produces software packages.",
                    "info-text": "Amazon Web Services IP address ranges info page",
                    "info-url": "http://docs.aws.amazon.com/general/latest/gr/aws-ip-ranges.html",
                    "uri": "/Updatable Objects/Amazon Web Services/CodeBuild"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1516634291420,
                      "iso-8601": "2018-01-22T17:18+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1516634291420,
                      "iso-8601": "2018-01-22T17:18+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "color": "black",
                  "icon": "@app/cp_aws_codebuild",
                  "updatable-object-meta-info": {
                    "updated-on-updatable-objects-repository": {
                      "posix": 1516633264623,
                      "iso-8601": "2018-01-22T17:01+0200"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-updatable-object": {
      "post": {
        "tags": [
          "UpdatableObject"
        ],
        "operationId": "deleteUpdatableObject",
        "description": "The parameters and request body are for method: deleteUpdatableObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-updatable-objects": {
      "post": {
        "tags": [
          "UpdatableObject"
        ],
        "operationId": "showUpdatableObjects",
        "description": "The parameters and request body are for method: showUpdatableObjects. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 2,
                  "total": 2,
                  "objects": [
                    {
                      "uid": "63a04b20-8e4f-4282-8224-69252c3495e1",
                      "name": "Amazon AP North-East 1",
                      "type": "updatable-object",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    },
                    {
                      "uid": "1506cdeb-c132-4d28-bca5-95eb07e12828",
                      "name": "CodeBuild US East 1",
                      "type": "updatable-object",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-service-tcp": {
      "post": {
        "tags": [
          "ServiceTCP"
        ],
        "operationId": "addServiceTcp",
        "description": "The parameters and request body are for method: addServiceTcp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "port": {
                      "type": "string"
                    },
                    "match-by-protocol-signature": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "bee785c5-998b-4a45-80e8-3fa91181aba9",
                  "name": "New_TCP_Service_1",
                  "type": "service-tcp",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479719218212,
                      "iso-8601": "2016-11-21T11:06+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1479719218212,
                      "iso-8601": "2016-11-21T11:06+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Services/TCPService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 0,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 360,
                    "use-default-timeout": false,
                    "default-timeout": 0
                  },
                  "port": "5669",
                  "match-by-protocol-signature": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-service-tcp": {
      "post": {
        "tags": [
          "ServiceTCP"
        ],
        "operationId": "showServiceTcp",
        "description": "The parameters and request body are for method: showServiceTcp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "port": {
                      "type": "string"
                    },
                    "protocol": {
                      "type": "string"
                    },
                    "match-by-protocol-signature": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "97aeb443-9aea-11d5-bd16-0090272ccb30",
                  "name": "https",
                  "type": "service-tcp",
                  "domain": {
                    "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                    "name": "Check Point Data",
                    "domain-type": "data domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479284427934,
                      "iso-8601": "2016-11-16T10:20+0200"
                    },
                    "last-modifier": "System",
                    "creation-time": {
                      "posix": 1479284427934,
                      "iso-8601": "2016-11-16T10:20+0200"
                    },
                    "creator": "System"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "HTTP protocol over TLS/SSL",
                  "color": "red",
                  "icon": "Services/TCPService",
                  "groups": [
                    {
                      "uid": "2c21ff3e-cf4a-4ffb-b1c8-eab48b8a2761",
                      "name": "Restrict_Common_Protocols_Action",
                      "type": "",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    }
                  ],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 3600,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 60,
                    "use-default-timeout": false,
                    "default-timeout": 60
                  },
                  "port": "443",
                  "protocol": "ENC-HTTP",
                  "match-by-protocol-signature": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-service-tcp": {
      "post": {
        "tags": [
          "ServiceTCP"
        ],
        "operationId": "setServiceTcp",
        "description": "The parameters and request body are for method: setServiceTcp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "port": {
                      "type": "string"
                    },
                    "match-by-protocol-signature": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "785a4a8b-8c69-4143-9646-b34ee3b830c5",
                  "name": "New_TCP_Service_2",
                  "type": "service-tcp",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479719917748,
                      "iso-8601": "2016-11-21T11:18+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1479719839437,
                      "iso-8601": "2016-11-21T11:17+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "light green",
                  "icon": "Services/TCPService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 0,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 360,
                    "use-default-timeout": false,
                    "default-timeout": 3600
                  },
                  "port": "5656",
                  "match-by-protocol-signature": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-service-tcp": {
      "post": {
        "tags": [
          "ServiceTCP"
        ],
        "operationId": "deleteServiceTcp",
        "description": "The parameters and request body are for method: deleteServiceTcp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-services-tcp": {
      "post": {
        "tags": [
          "ServiceTCP"
        ],
        "operationId": "showServicesTcp",
        "description": "The parameters and request body are for method: showServicesTcp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "port": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 10,
                  "total": 217,
                  "objects": [
                    {
                      "uid": "97aeb44f-9aea-11d5-bd16-0090272ccb30",
                      "name": "AOL",
                      "type": "service-tcp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "5190"
                    },
                    {
                      "uid": "97aeb3e9-9aea-11d5-bd16-0090272ccb30",
                      "name": "AP-Defender",
                      "type": "service-tcp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "2626"
                    },
                    {
                      "uid": "97aeb3ea-9aea-11d5-bd16-0090272ccb30",
                      "name": "AT-Defender",
                      "type": "service-tcp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "2626"
                    },
                    {
                      "uid": "96759a8d-aab8-43d9-bbfc-b459ce66ac87",
                      "name": "Backage",
                      "type": "service-tcp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "411"
                    },
                    {
                      "uid": "1fceea78-d378-44b4-8939-019b68f48518",
                      "name": "BGP",
                      "type": "service-tcp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "179"
                    },
                    {
                      "uid": "86077a7d-a8da-4b5b-919c-366fe91ad1da",
                      "name": "Bionet-Setup",
                      "type": "service-tcp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "5000"
                    },
                    {
                      "uid": "11da2773-a070-4f68-a3c2-9ce5dc158683",
                      "name": "CheckPointExchangeAgent",
                      "type": "service-tcp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "18301"
                    },
                    {
                      "uid": "986bad5a-94d2-4a8c-81aa-de98d3ecb5c6",
                      "name": "Citrix_ICA",
                      "type": "service-tcp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "1494"
                    },
                    {
                      "uid": "97aeb451-9aea-11d5-bd16-0090272ccb30",
                      "name": "ConnectedOnLine",
                      "type": "service-tcp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "16384"
                    },
                    {
                      "uid": "97aeb3ad-9aea-11d5-bd16-0090272ccb30",
                      "name": "CP_Exnet_PK",
                      "type": "service-tcp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "18262"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-service-udp": {
      "post": {
        "tags": [
          "ServiceUDP"
        ],
        "operationId": "addServiceUdp",
        "description": "The parameters and request body are for method: addServiceUdp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "port": {
                      "type": "string"
                    },
                    "match-by-protocol-signature": {
                      "type": "boolean"
                    },
                    "accept-replies": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "64a4c8d1-7fed-4320-9826-0570bbb4a5bd",
                  "name": "New_UDP_Service_1",
                  "type": "service-udp",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479720338890,
                      "iso-8601": "2016-11-21T11:25+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1479720338890,
                      "iso-8601": "2016-11-21T11:25+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Services/UDPService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 0,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 360,
                    "use-default-timeout": false,
                    "default-timeout": 0
                  },
                  "port": "5669",
                  "match-by-protocol-signature": false,
                  "accept-replies": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-service-udp": {
      "post": {
        "tags": [
          "ServiceUDP"
        ],
        "operationId": "showServiceUdp",
        "description": "The parameters and request body are for method: showServiceUdp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "port": {
                      "type": "string"
                    },
                    "match-by-protocol-signature": {
                      "type": "boolean"
                    },
                    "accept-replies": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "97aeb3eb-9aea-11d5-bd16-0090272ccb30",
                  "name": "bootp",
                  "type": "service-udp",
                  "domain": {
                    "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                    "name": "Check Point Data",
                    "domain-type": "data domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479284426972,
                      "iso-8601": "2016-11-16T10:20+0200"
                    },
                    "last-modifier": "System",
                    "creation-time": {
                      "posix": 1479284426972,
                      "iso-8601": "2016-11-16T10:20+0200"
                    },
                    "creator": "System"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "Bootstrap Protocol Server, users automatically configured ",
                  "color": "black",
                  "icon": "Services/UDPService",
                  "groups": [
                    {
                      "uid": "0f27e52f-8540-4bd0-9cc8-cba000d9979d",
                      "name": "Allow_Trusted_IP_Action",
                      "type": "",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    }
                  ],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 40,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 15,
                    "use-default-timeout": true,
                    "default-timeout": 0
                  },
                  "port": "67",
                  "match-by-protocol-signature": false,
                  "accept-replies": true
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-service-udp": {
      "post": {
        "tags": [
          "ServiceUDP"
        ],
        "operationId": "setServiceUdp",
        "description": "The parameters and request body are for method: setServiceUdp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "port": {
                      "type": "string"
                    },
                    "protocol": {
                      "type": "string"
                    },
                    "match-by-protocol-signature": {
                      "type": "boolean"
                    },
                    "accept-replies": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "ae4e3c2e-8368-4b98-9846-6391770a81aa",
                  "name": "New_UDP_Service_4",
                  "type": "service-udp",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479720763706,
                      "iso-8601": "2016-11-21T11:32+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1479720519849,
                      "iso-8601": "2016-11-21T11:28+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "light green",
                  "icon": "Protocols/FTP",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 0,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 360,
                    "use-default-timeout": false,
                    "default-timeout": 3600
                  },
                  "port": "5656",
                  "protocol": "TFTP",
                  "match-by-protocol-signature": true,
                  "accept-replies": true
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-service-udp": {
      "post": {
        "tags": [
          "ServiceUDP"
        ],
        "operationId": "deleteServiceUdp",
        "description": "The parameters and request body are for method: deleteServiceUdp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-services-udp": {
      "post": {
        "tags": [
          "ServiceUDP"
        ],
        "operationId": "showServicesUdp",
        "description": "The parameters and request body are for method: showServicesUdp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "port": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 10,
                  "total": 93,
                  "objects": [
                    {
                      "uid": "97aeb3d6-9aea-11d5-bd16-0090272ccb30",
                      "name": "archie",
                      "type": "service-udp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "1525"
                    },
                    {
                      "uid": "97aeb3e6-9aea-11d5-bd16-0090272ccb30",
                      "name": "biff",
                      "type": "service-udp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "512"
                    },
                    {
                      "uid": "c86f055d-31ad-4430-b12c-1094a86c673c",
                      "name": "Blubster",
                      "type": "service-udp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "41170"
                    },
                    {
                      "uid": "97aeb3eb-9aea-11d5-bd16-0090272ccb30",
                      "name": "bootp",
                      "type": "service-udp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "67"
                    },
                    {
                      "uid": "e8c5ab78-f08d-437c-a9b1-be4a8679d766",
                      "name": "Citrix_ICA_Browsing",
                      "type": "service-udp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "1604"
                    },
                    {
                      "uid": "d8cb6abc-1a8b-4fc0-8be1-3255e51decd1",
                      "name": "CP_SecureAgent-udp",
                      "type": "service-udp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "19194-19195"
                    },
                    {
                      "uid": "97aeb44b-9aea-11d5-bd16-0090272ccb30",
                      "name": "CU-SeeMe",
                      "type": "service-udp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "7648-7652"
                    },
                    {
                      "uid": "97aeb402-9aea-11d5-bd16-0090272ccb30",
                      "name": "daytime-udp",
                      "type": "service-udp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "13"
                    },
                    {
                      "uid": "5217a0a1-e919-45ad-b8ce-e8cfdf0d35ad",
                      "name": "dhcp",
                      "type": "service-udp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "67"
                    },
                    {
                      "uid": "32ce3ea8-b561-4cfc-b215-8e754017bc96",
                      "name": "dhcp-relay",
                      "type": "service-udp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "port": "67"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-service-icmp": {
      "post": {
        "tags": [
          "ServiceICMP"
        ],
        "operationId": "addServiceIcmp",
        "description": "The parameters and request body are for method: addServiceIcmp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "icmp-type": {
                      "type": "number"
                    },
                    "icmp-code": {
                      "type": "number"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    }
                  }
                },
                "example": {
                  "uid": "22c8faba-3a24-4e99-ae6f-e798014facc2",
                  "name": "Icmp1",
                  "type": "service-icmp",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "icmp-type": 5,
                  "icmp-code": 7,
                  "keep-connections-open-after-policy-installation": false,
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1475051751286,
                      "iso-8601": "2016-09-28T11:35+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1475051751286,
                      "iso-8601": "2016-09-28T11:35+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Services/ICMPService",
                  "groups": []
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-service-icmp": {
      "post": {
        "tags": [
          "ServiceICMP"
        ],
        "operationId": "showServiceIcmp",
        "description": "The parameters and request body are for method: showServiceIcmp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "icmp-type": {
                      "type": "number"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "97aeb40f-9aea-11d5-bd16-0090272ccb30",
                  "name": "info-req",
                  "type": "service-icmp",
                  "domain": {
                    "domain-type": "data domain",
                    "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                    "name": "Check Point Data"
                  },
                  "icmp-type": 15,
                  "keep-connections-open-after-policy-installation": false,
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1474568177103,
                      "iso-8601": "2016-09-22T21:16+0300"
                    },
                    "last-modifier": "System",
                    "creation-time": {
                      "posix": 1474568177103,
                      "iso-8601": "2016-09-22T21:16+0300"
                    },
                    "creator": "System"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "ICMP, info request",
                  "color": "orchid",
                  "icon": "Services/ICMPService",
                  "groups": [
                    {
                      "uid": "97aeb413-9aea-11d5-bd16-0090272ccb30",
                      "name": "icmp-requests",
                      "type": "service-group",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-service-icmp": {
      "post": {
        "tags": [
          "ServiceICMP"
        ],
        "operationId": "setServiceIcmp",
        "description": "The parameters and request body are for method: setServiceIcmp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "icmp-type": {
                      "type": "number"
                    },
                    "icmp-code": {
                      "type": "number"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    }
                  }
                },
                "example": {
                  "uid": "22c8faba-3a24-4e99-ae6f-e798014facc2",
                  "name": "icmp3",
                  "type": "service-icmp",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "icmp-type": 45,
                  "icmp-code": 13,
                  "keep-connections-open-after-policy-installation": false,
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1475051875083,
                      "iso-8601": "2016-09-28T11:37+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1475051751286,
                      "iso-8601": "2016-09-28T11:35+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Services/ICMPService",
                  "groups": []
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-service-icmp": {
      "post": {
        "tags": [
          "ServiceICMP"
        ],
        "operationId": "deleteServiceIcmp",
        "description": "The parameters and request body are for method: deleteServiceIcmp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-services-icmp": {
      "post": {
        "tags": [
          "ServiceICMP"
        ],
        "operationId": "showServicesIcmp",
        "description": "The parameters and request body are for method: showServicesIcmp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 4,
                  "to": 7,
                  "total": 14,
                  "objects": [
                    {
                      "uid": "22c8faba-3a24-4e99-ae6f-e798014facc2",
                      "name": "icmp3",
                      "type": "service-icmp",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    },
                    {
                      "uid": "97aeb410-9aea-11d5-bd16-0090272ccb30",
                      "name": "info-reply",
                      "type": "service-icmp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb40f-9aea-11d5-bd16-0090272ccb30",
                      "name": "info-req",
                      "type": "service-icmp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb412-9aea-11d5-bd16-0090272ccb30",
                      "name": "mask-reply",
                      "type": "service-icmp",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-service-icmp6": {
      "post": {
        "tags": [
          "ServiceICMP6"
        ],
        "operationId": "addServiceIcmp6",
        "description": "The parameters and request body are for method: addServiceIcmp6. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "icmp-type": {
                      "type": "number"
                    },
                    "icmp-code": {
                      "type": "number"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    }
                  }
                },
                "example": {
                  "uid": "d9dcb753-1aa7-4e65-b5ff-b4878f8b3890",
                  "name": "Icmp2",
                  "type": "service-icmp6",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "icmp-type": 5,
                  "icmp-code": 7,
                  "keep-connections-open-after-policy-installation": false,
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1475051823316,
                      "iso-8601": "2016-09-28T11:37+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1475051823316,
                      "iso-8601": "2016-09-28T11:37+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Services/ICMPV6Service",
                  "groups": []
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-service-icmp6": {
      "post": {
        "tags": [
          "ServiceICMP6"
        ],
        "operationId": "showServiceIcmp6",
        "description": "The parameters and request body are for method: showServiceIcmp6. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "icmp-type": {
                      "type": "number"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    }
                  }
                },
                "example": {
                  "uid": "ac85a522-916a-4ce0-8411-32d1d0016348",
                  "name": "echo-reply6",
                  "type": "service-icmp6",
                  "domain": {
                    "domain-type": "data domain",
                    "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                    "name": "Check Point Data"
                  },
                  "icmp-type": 129,
                  "keep-connections-open-after-policy-installation": false,
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1474568177091,
                      "iso-8601": "2016-09-22T21:16+0300"
                    },
                    "last-modifier": "System",
                    "creation-time": {
                      "posix": 1474568177091,
                      "iso-8601": "2016-09-22T21:16+0300"
                    },
                    "creator": "System"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "color": "blue",
                  "icon": "Services/ICMPV6Service",
                  "groups": []
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-service-icmp6": {
      "post": {
        "tags": [
          "ServiceICMP6"
        ],
        "operationId": "setServiceIcmp6",
        "description": "The parameters and request body are for method: setServiceIcmp6. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "icmp-type": {
                      "type": "number"
                    },
                    "icmp-code": {
                      "type": "number"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    }
                  }
                },
                "example": {
                  "uid": "d9dcb753-1aa7-4e65-b5ff-b4878f8b3890",
                  "name": "icmp4",
                  "type": "service-icmp6",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "icmp-type": 45,
                  "icmp-code": 13,
                  "keep-connections-open-after-policy-installation": false,
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1475051901631,
                      "iso-8601": "2016-09-28T11:38+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1475051823316,
                      "iso-8601": "2016-09-28T11:37+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Services/ICMPV6Service",
                  "groups": []
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-service-icmp6": {
      "post": {
        "tags": [
          "ServiceICMP6"
        ],
        "operationId": "deleteServiceIcmp6",
        "description": "The parameters and request body are for method: deleteServiceIcmp6. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-services-icmp6": {
      "post": {
        "tags": [
          "ServiceICMP6"
        ],
        "operationId": "showServicesIcmp6",
        "description": "The parameters and request body are for method: showServicesIcmp6. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 5,
                  "to": 6,
                  "total": 25,
                  "objects": [
                    {
                      "uid": "6f23dae7-0b9a-44f6-8515-b24690cd996c",
                      "name": "home-agent-address-discovery2",
                      "type": "service-icmp6",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "f645e71b-27cd-43ac-8512-619867ac0c79",
                      "name": "ICMP-node-information-query",
                      "type": "service-icmp6",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-service-sctp": {
      "post": {
        "tags": [
          "ServiceSCTP"
        ],
        "operationId": "addServiceSctp",
        "description": "The parameters and request body are for method: addServiceSctp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "port": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "d0385c6d-72dd-4981-b951-4783b7100343",
                  "name": "New_SCTP_Service_1",
                  "type": "service-sctp",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479720948687,
                      "iso-8601": "2016-11-21T11:35+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1479720948687,
                      "iso-8601": "2016-11-21T11:35+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Services/SCTPService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 0,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 360,
                    "use-default-timeout": false,
                    "default-timeout": 0
                  },
                  "port": "5669"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-service-sctp": {
      "post": {
        "tags": [
          "ServiceSCTP"
        ],
        "operationId": "showServiceSctp",
        "description": "The parameters and request body are for method: showServiceSctp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "port": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "f04b754f-f190-4c79-afb1-d72821478d3a",
                  "name": "New_SCTP_Service_1",
                  "type": "service-sctp",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479721214735,
                      "iso-8601": "2016-11-21T11:40+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1479721214735,
                      "iso-8601": "2016-11-21T11:40+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "color": "black",
                  "icon": "Services/SCTPService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 0,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 360,
                    "use-default-timeout": false,
                    "default-timeout": 0
                  },
                  "port": "5669"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-service-sctp": {
      "post": {
        "tags": [
          "ServiceSCTP"
        ],
        "operationId": "setServiceSctp",
        "description": "The parameters and request body are for method: setServiceSctp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "port": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "d0385c6d-72dd-4981-b951-4783b7100343",
                  "name": "New_SCTP_Service_2",
                  "type": "service-sctp",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479721010926,
                      "iso-8601": "2016-11-21T11:36+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1479720948687,
                      "iso-8601": "2016-11-21T11:35+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "light green",
                  "icon": "Services/SCTPService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 0,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 360,
                    "use-default-timeout": false,
                    "default-timeout": 3600
                  },
                  "port": "5656"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-service-sctp": {
      "post": {
        "tags": [
          "ServiceSCTP"
        ],
        "operationId": "deleteServiceSctp",
        "description": "The parameters and request body are for method: deleteServiceSctp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-services-sctp": {
      "post": {
        "tags": [
          "ServiceSCTP"
        ],
        "operationId": "showServicesSctp",
        "description": "The parameters and request body are for method: showServicesSctp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 1,
                  "total": 1,
                  "objects": [
                    {
                      "uid": "855ef7a1-b44f-4587-9c36-3f4a8c5d12b9",
                      "name": "New_SCTP_Service_5",
                      "type": "service-sctp",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-service-other": {
      "post": {
        "tags": [
          "ServiceOther"
        ],
        "operationId": "addServiceOther",
        "description": "The parameters and request body are for method: addServiceOther. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "ip-protocol": {
                      "type": "number"
                    },
                    "accept-replies": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "42f2b86e-09ee-415c-a6ae-75556c6c70e0",
                  "name": "New_Service_1",
                  "type": "service-other",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479721379028,
                      "iso-8601": "2016-11-21T11:42+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1479721379028,
                      "iso-8601": "2016-11-21T11:42+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "Services/OtherService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 0,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 360,
                    "use-default-timeout": false,
                    "default-timeout": 0
                  },
                  "ip-protocol": 51,
                  "accept-replies": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-service-other": {
      "post": {
        "tags": [
          "ServiceOther"
        ],
        "operationId": "showServiceOther",
        "description": "The parameters and request body are for method: showServiceOther. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "ip-protocol": {
                      "type": "number"
                    },
                    "accept-replies": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "25141d14-3e1d-447f-8bc7-a4fe862202be",
                  "name": "New_Service_1",
                  "type": "service-other",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479721534511,
                      "iso-8601": "2016-11-21T11:45+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1479721534511,
                      "iso-8601": "2016-11-21T11:45+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "color": "black",
                  "icon": "Services/OtherService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 0,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 360,
                    "use-default-timeout": false,
                    "default-timeout": 0
                  },
                  "ip-protocol": 51,
                  "accept-replies": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-service-other": {
      "post": {
        "tags": [
          "ServiceOther"
        ],
        "operationId": "setServiceOther",
        "description": "The parameters and request body are for method: setServiceOther. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "session-timeout": {
                      "type": "number"
                    },
                    "use-default-session-timeout": {
                      "type": "boolean"
                    },
                    "match-for-any": {
                      "type": "boolean"
                    },
                    "sync-connections-on-cluster": {
                      "type": "boolean"
                    },
                    "aggressive-aging": {
                      "type": "object",
                      "properties": {
                        "enable": {
                          "type": "boolean"
                        },
                        "timeout": {
                          "type": "number"
                        },
                        "use-default-timeout": {
                          "type": "boolean"
                        },
                        "default-timeout": {
                          "type": "number"
                        }
                      }
                    },
                    "ip-protocol": {
                      "type": "number"
                    },
                    "accept-replies": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "25141d14-3e1d-447f-8bc7-a4fe862202be",
                  "name": "New_Service_3",
                  "type": "service-other",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1479721664806,
                      "iso-8601": "2016-11-21T11:47+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1479721534511,
                      "iso-8601": "2016-11-21T11:45+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "light green",
                  "icon": "Services/OtherService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "session-timeout": 0,
                  "use-default-session-timeout": true,
                  "match-for-any": true,
                  "sync-connections-on-cluster": true,
                  "aggressive-aging": {
                    "enable": true,
                    "timeout": 360,
                    "use-default-timeout": false,
                    "default-timeout": 3600
                  },
                  "ip-protocol": 51,
                  "accept-replies": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-service-other": {
      "post": {
        "tags": [
          "ServiceOther"
        ],
        "operationId": "deleteServiceOther",
        "description": "The parameters and request body are for method: deleteServiceOther. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-services-other": {
      "post": {
        "tags": [
          "ServiceOther"
        ],
        "operationId": "showServicesOther",
        "description": "The parameters and request body are for method: showServicesOther. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 42,
                  "total": 42,
                  "objects": [
                    {
                      "uid": "97aeb422-9aea-11d5-bd16-0090272ccb30",
                      "name": "AH",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "ed761b22-2925-43e9-afa4-fa89dd9e93b3",
                      "name": "AdamSerivce",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    },
                    {
                      "uid": "97aeb423-9aea-11d5-bd16-0090272ccb30",
                      "name": "ESP",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb447-9aea-11d5-bd16-0090272ccb30",
                      "name": "FW1_Encapsulation",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3f6-9aea-11d5-bd16-0090272ccb30",
                      "name": "FreeTel-incoming",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3f4-9aea-11d5-bd16-0090272ccb30",
                      "name": "FreeTel-outgoing-client",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "636782bb-9181-402e-b0cf-c1af653937bb",
                      "name": "HTTP_wo_SCV",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "be250879-9288-407a-b8d4-0a5b80cd0b2b",
                      "name": "MGCP_dynamic_ports",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "7527142e-554e-4b1d-9639-6f800764dbcf",
                      "name": "Mobility_Header",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "2b612f18-20d0-476b-bca1-c096d448beed",
                      "name": "New_Service_3",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    },
                    {
                      "uid": "cca09894-6a11-4063-9d2c-15191fc8758e",
                      "name": "New_Service_7",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    },
                    {
                      "uid": "3cc63160-8949-4482-8f4e-20272b539590",
                      "name": "Partial-Destination-v6",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "c81be1c0-d147-437b-aa8f-11a6b0665d2d",
                      "name": "Partial-Source-v6",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "840666af-ce3d-47b4-923a-7e32e642033d",
                      "name": "SIT",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "6e289c30-76d8-4823-b9f2-c767c2ad69c3",
                      "name": "SIT_with_Intra_Tunnel_Inspection",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb421-9aea-11d5-bd16-0090272ccb30",
                      "name": "SKIP",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb430-9aea-11d5-bd16-0090272ccb30",
                      "name": "Sitara",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "bb2d50dc-61e2-430e-aa92-0d527dd3b0e9",
                      "name": "Snmp-Read-Only",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3d8-9aea-11d5-bd16-0090272ccb30",
                      "name": "X11-verify",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "2e6d3f79-cb0c-4600-acf2-2cf1a3704d10",
                      "name": "ZSP",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb449-9aea-11d5-bd16-0090272ccb30",
                      "name": "backweb",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "3ef69b0c-3ccc-4ac8-9dd0-d792dc1f34de",
                      "name": "dhcp-reply",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "7e8246fb-cdc5-4896-b7cd-cb5c6ba85980",
                      "name": "dhcp-request",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3ca-9aea-11d5-bd16-0090272ccb30",
                      "name": "egp",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "da123897-b250-11d5-a47a-0006294583c7",
                      "name": "ftp_mapped",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3c8-9aea-11d5-bd16-0090272ccb30",
                      "name": "ggp",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb424-9aea-11d5-bd16-0090272ccb30",
                      "name": "gre",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "35029b62-16b1-4d34-8004-410710dfd492",
                      "name": "gtp_v0_path_mgmt",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "6106ffdd-a8fe-4b2e-8270-cb3435217427",
                      "name": "gtp_v1_path_mgmt",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "7dd1933b-94e8-4770-9d45-f52b77faafb4",
                      "name": "high_udp_for_secure_SCCP",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "da123892-b250-11d5-a47a-0006294583c7",
                      "name": "http_mapped",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb405-9aea-11d5-bd16-0090272ccb30",
                      "name": "icmp-proto",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3cb-9aea-11d5-bd16-0090272ccb30",
                      "name": "igmp",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3c9-9aea-11d5-bd16-0090272ccb30",
                      "name": "igrp",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3c7-9aea-11d5-bd16-0090272ccb30",
                      "name": "ospf",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "2f98c148-5884-44b2-a587-787361658d76",
                      "name": "pim",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3ce-9aea-11d5-bd16-0090272ccb30",
                      "name": "rip-response",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "77d73484-9d79-497d-bbf6-4ca0eafd4d88",
                      "name": "sip_dynamic_ports",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "da12389a-b250-11d5-a47a-0006294583c7",
                      "name": "smtp_mapped",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3e7-9aea-11d5-bd16-0090272ccb30",
                      "name": "traceroute",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "38a8af07-d990-4178-aa8c-82e32066959c",
                      "name": "tunnel_test_mapped",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3cc-9aea-11d5-bd16-0090272ccb30",
                      "name": "vrrp",
                      "type": "service-other",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-service-group": {
      "post": {
        "tags": [
          "ServiceGroup"
        ],
        "operationId": "addServiceGroup",
        "description": "The parameters and request body are for method: addServiceGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-service-group": {
      "post": {
        "tags": [
          "ServiceGroup"
        ],
        "operationId": "showServiceGroup",
        "description": "The parameters and request body are for method: showServiceGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-service-group": {
      "post": {
        "tags": [
          "ServiceGroup"
        ],
        "operationId": "setServiceGroup",
        "description": "The parameters and request body are for method: setServiceGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-service-group": {
      "post": {
        "tags": [
          "ServiceGroup"
        ],
        "operationId": "deleteServiceGroup",
        "description": "The parameters and request body are for method: deleteServiceGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-service-groups": {
      "post": {
        "tags": [
          "ServiceGroup"
        ],
        "operationId": "showServiceGroups",
        "description": "The parameters and request body are for method: showServiceGroups. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-application-site": {
      "post": {
        "tags": [
          "Application"
        ],
        "operationId": "addApplicationSite",
        "description": "The parameters and request body are for method: addApplicationSite. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-application-site": {
      "post": {
        "tags": [
          "Application"
        ],
        "operationId": "showApplicationSite",
        "description": "The parameters and request body are for method: showApplicationSite. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-application-site": {
      "post": {
        "tags": [
          "Application"
        ],
        "operationId": "setApplicationSite",
        "description": "The parameters and request body are for method: setApplicationSite. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-application-site": {
      "post": {
        "tags": [
          "Application"
        ],
        "operationId": "deleteApplicationSite",
        "description": "The parameters and request body are for method: deleteApplicationSite. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-application-sites": {
      "post": {
        "tags": [
          "Application"
        ],
        "operationId": "showApplicationSites",
        "description": "The parameters and request body are for method: showApplicationSites. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-application-site-category": {
      "post": {
        "tags": [
          "ApplicationCategory"
        ],
        "operationId": "addApplicationSiteCategory",
        "description": "The parameters and request body are for method: addApplicationSiteCategory. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-application-site-category": {
      "post": {
        "tags": [
          "ApplicationCategory"
        ],
        "operationId": "showApplicationSiteCategory",
        "description": "The parameters and request body are for method: showApplicationSiteCategory. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-application-site-category": {
      "post": {
        "tags": [
          "ApplicationCategory"
        ],
        "operationId": "setApplicationSiteCategory",
        "description": "The parameters and request body are for method: setApplicationSiteCategory. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-application-site-category": {
      "post": {
        "tags": [
          "ApplicationCategory"
        ],
        "operationId": "deleteApplicationSiteCategory",
        "description": "The parameters and request body are for method: deleteApplicationSiteCategory. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-application-site-categories": {
      "post": {
        "tags": [
          "ApplicationCategory"
        ],
        "operationId": "showApplicationSiteCategories",
        "description": "The parameters and request body are for method: showApplicationSiteCategories. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-application-site-group": {
      "post": {
        "tags": [
          "ApplicationGroup"
        ],
        "operationId": "addApplicationSiteGroup",
        "description": "The parameters and request body are for method: addApplicationSiteGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-application-site-group": {
      "post": {
        "tags": [
          "ApplicationGroup"
        ],
        "operationId": "showApplicationSiteGroup",
        "description": "The parameters and request body are for method: showApplicationSiteGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-application-site-group": {
      "post": {
        "tags": [
          "ApplicationGroup"
        ],
        "operationId": "setApplicationSiteGroup",
        "description": "The parameters and request body are for method: setApplicationSiteGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-application-site-group": {
      "post": {
        "tags": [
          "ApplicationGroup"
        ],
        "operationId": "deleteApplicationSiteGroup",
        "description": "The parameters and request body are for method: deleteApplicationSiteGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-application-site-groups": {
      "post": {
        "tags": [
          "ApplicationGroup"
        ],
        "operationId": "showApplicationSiteGroups",
        "description": "The parameters and request body are for method: showApplicationSiteGroups. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-service-dce-rpc": {
      "post": {
        "tags": [
          "ServiceDCERPC"
        ],
        "operationId": "addServiceDceRpc",
        "description": "The parameters and request body are for method: addServiceDceRpc. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "interface-uuid": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "b02db15d-c8e9-408c-a789-095b6d76db02",
                  "name": "New_DCE-RPC_Service_1",
                  "type": "service-dce-rpc",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1453627297760,
                      "iso-8601": "2016-01-24T11:21+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1453627297760,
                      "iso-8601": "2016-01-24T11:21+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "comments": "",
                  "color": "black",
                  "icon": "Services/DCEService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "interface-uuid": "97aeb460-9aea-11d5-bd16-0090272ccb30"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-service-dce-rpc": {
      "post": {
        "tags": [
          "ServiceDCERPC"
        ],
        "operationId": "showServiceDceRpc",
        "description": "The parameters and request body are for method: showServiceDceRpc. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "interface-uuid": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "97aeb460-9aea-11d5-bd16-0090272ccb30",
                  "name": "HP-OpCdistm",
                  "type": "service-dce-rpc",
                  "domain": {
                    "domain-type": "data domain",
                    "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                    "name": "Check Point Data"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1453368096819,
                      "iso-8601": "2016-01-21T11:21+0200"
                    },
                    "last-modifier": "System",
                    "creation-time": {
                      "posix": 1453368096819,
                      "iso-8601": "2016-01-21T11:21+0200"
                    },
                    "creator": "System"
                  },
                  "tags": [],
                  "comments": "HP-OV OpC Distribution Manager",
                  "color": "blue",
                  "icon": "Services/DCEService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "interface-uuid": "5df3dc6f-a568-0000-020f-887805000000"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-service-dce-rpc": {
      "post": {
        "tags": [
          "ServiceDCERPC"
        ],
        "operationId": "setServiceDceRpc",
        "description": "The parameters and request body are for method: setServiceDceRpc. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "interface-uuid": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "b0a07e2a-87d9-4ded-a17b-e83d61611f64",
                  "name": "New_DCE-RPC_Service_3",
                  "type": "service-dce-rpc",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1453627648931,
                      "iso-8601": "2016-01-24T11:27+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1453627571910,
                      "iso-8601": "2016-01-24T11:26+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "comments": "",
                  "color": "green",
                  "icon": "Services/DCEService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "interface-uuid": "44aeb460-9aea-11d5-bd16-009027266b30"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-service-dce-rpc": {
      "post": {
        "tags": [
          "ServiceDCERPC"
        ],
        "operationId": "deleteServiceDceRpc",
        "description": "The parameters and request body are for method: deleteServiceDceRpc. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-services-dce-rpc": {
      "post": {
        "tags": [
          "ServiceDCERPC"
        ],
        "operationId": "showServicesDceRpc",
        "description": "The parameters and request body are for method: showServicesDceRpc. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 42,
                  "total": 42,
                  "objects": [
                    {
                      "uid": "3d0d46b6-4ddb-43e0-9faa-c969dbc3e19f",
                      "name": "ALL_DCE_RPC",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "f11e31f1-0127-1e46-a838-4401232ee78b",
                      "name": "DCOM-IRemUnknown",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "0e61be34-2b17-894d-b155-471b2119c309",
                      "name": "DCOM-IWbemLevel1Login",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "024291a5-bc3e-4c96-8d82-513f3336a9f6",
                      "name": "DCOM-OXID_Resolver",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "4e68ca9c-c624-47a5-b2bc-02f1197c8e35",
                      "name": "DCOM-RemUnknown2",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "5c66b970-e289-4b39-89ea-4f0f19a389d7",
                      "name": "DCOM-RemoteActivation",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "38910079-ea24-4df6-bd98-d1c67f90df4a",
                      "name": "DCOM-SystemActivation",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "ed771ab7-acd8-4a40-ba23-de37f1275d0c",
                      "name": "EndPointMapper",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "97aeb464-9aea-11d5-bd16-0090272ccb30",
                      "name": "HP-OpCctla",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb466-9aea-11d5-bd16-0090272ccb30",
                      "name": "HP-OpCctla-bulk",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb465-9aea-11d5-bd16-0090272ccb30",
                      "name": "HP-OpCctla-cfgpush",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb460-9aea-11d5-bd16-0090272ccb30",
                      "name": "HP-OpCdistm",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb463-9aea-11d5-bd16-0090272ccb30",
                      "name": "HP-OpCmsgrd-coa",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb462-9aea-11d5-bd16-0090272ccb30",
                      "name": "HP-OpCmsgrd-m2m",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb461-9aea-11d5-bd16-0090272ccb30",
                      "name": "HP-OpCmsgrd-std",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "617c3a2c-41ac-6a4a-8272-8f00ec5258dd",
                      "name": "IWbemFetchSmartEnum",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "363b46f7-3291-6d4e-b8c9-11c17e19827a",
                      "name": "IWbemServices",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "7591fc8a-1e03-ae40-819b-cec6a659c066",
                      "name": "IWbemWCOSmartEnum",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "73ee702f-46bc-7842-ab62-4914930fadfd",
                      "name": "IenumWbemClassObject",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "97aeb457-9aea-11d5-bd16-0090272ccb30",
                      "name": "MSExchangeADL",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb452-9aea-11d5-bd16-0090272ccb30",
                      "name": "MSExchangeDSNSPI",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb453-9aea-11d5-bd16-0090272ccb30",
                      "name": "MSExchangeDSRep",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb454-9aea-11d5-bd16-0090272ccb30",
                      "name": "MSExchangeDSXDS",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "e4253ee5-95c8-1742-b4fe-550f6ff43e70",
                      "name": "MSExchangeDatabase",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "01693eed-3f81-44d3-b498-51696722cc32",
                      "name": "MSExchangeDirRef",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb458-9aea-11d5-bd16-0090272ccb30",
                      "name": "MSExchangeDirRep",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb455-9aea-11d5-bd16-0090272ccb30",
                      "name": "MSExchangeIS",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "592a5d9e-06be-d241-953f-b2663f30ffc9",
                      "name": "MSExchangeIS_Async",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "9a4425f1-2cd2-984d-9760-6b1383beaeaa",
                      "name": "MSExchangeInformationStore1",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "0215f412-d0c9-6541-a83a-07b99b993b0c",
                      "name": "MSExchangeInformationStore2",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "712eb227-3e98-f240-a937-a817eba9e4d2",
                      "name": "MSExchangeInformationStore3",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "97aeb456-9aea-11d5-bd16-0090272ccb30",
                      "name": "MSExchangeMTA",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "d4ae57d8-83c8-9a45-a3a1-a18ee4fd75d2",
                      "name": "MSExchangeQAdmin",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "e7885981-2de7-4044-ad4f-d146825edd80",
                      "name": "MSExchangeSTOREAsyncEMSMDB",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "97aeb45b-9aea-11d5-bd16-0090272ccb30",
                      "name": "MSExchangeStoreAdm",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "01cbe864-8881-564d-8b85-17cda468ba4e",
                      "name": "MSExchangeStoreAdmin1",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "ad267c2c-8b26-9c40-92d9-4f46c47d1b5c",
                      "name": "MSExchangeStoreAdmin3",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "97aeb459-9aea-11d5-bd16-0090272ccb30",
                      "name": "MSExchangeSysAtt",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb45a-9aea-11d5-bd16-0090272ccb30",
                      "name": "MSExchangeSysAttPriv",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "e736a918-a7be-fb4e-80bf-066daebec607",
                      "name": "MSMQ",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    },
                    {
                      "uid": "7d19e3dd-8da5-48a1-b0e0-533fcc0b8dfe",
                      "name": "New_DCE-RPC_Service_2",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    },
                    {
                      "uid": "d7d41198-4aa4-d044-a756-434e9694723b",
                      "name": "RPCManagement",
                      "type": "service-dce-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-cebcebcebceb",
                        "name": "IPS Data"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-service-rpc": {
      "post": {
        "tags": [
          "ServiceRPC"
        ],
        "operationId": "addServiceRpc",
        "description": "The parameters and request body are for method: addServiceRpc. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "code": {
                      "type": "string"
                    },
                    "errors": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "message": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "message": "Validation failed with 1 error",
                  "code": "generic_error",
                  "errors": [
                    {
                      "message": "More than one object named 'New_RPC_Service_1' exists."
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-service-rpc": {
      "post": {
        "tags": [
          "ServiceRPC"
        ],
        "operationId": "showServiceRpc",
        "description": "The parameters and request body are for method: showServiceRpc. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "program-number": {
                      "type": "number"
                    }
                  }
                },
                "example": {
                  "uid": "97aeb3c6-9aea-11d5-bd16-0090272ccb30",
                  "name": "nisplus",
                  "type": "service-rpc",
                  "domain": {
                    "domain-type": "data domain",
                    "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                    "name": "Check Point Data"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1453368095037,
                      "iso-8601": "2016-01-21T11:21+0200"
                    },
                    "last-modifier": "System",
                    "creation-time": {
                      "posix": 1453368095037,
                      "iso-8601": "2016-01-21T11:21+0200"
                    },
                    "creator": "System"
                  },
                  "tags": [],
                  "comments": "NIS+ later version provides additional security and other facilities",
                  "color": "navy blue",
                  "icon": "Services/RPCService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "program-number": 100300
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-service-rpc": {
      "post": {
        "tags": [
          "ServiceRPC"
        ],
        "operationId": "setServiceRpc",
        "description": "The parameters and request body are for method: setServiceRpc. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "groups": {
                      "type": "object"
                    },
                    "keep-connections-open-after-policy-installation": {
                      "type": "boolean"
                    },
                    "program-number": {
                      "type": "number"
                    }
                  }
                },
                "example": {
                  "uid": "55023213-9bdd-4f7c-9a41-342938de74ba",
                  "name": "New_RPC_Service_5",
                  "type": "service-rpc",
                  "domain": {
                    "domain-type": "domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1453627813327,
                      "iso-8601": "2016-01-24T11:30+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1453627724762,
                      "iso-8601": "2016-01-24T11:28+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "comments": "",
                  "color": "green",
                  "icon": "Services/RPCService",
                  "groups": [],
                  "keep-connections-open-after-policy-installation": false,
                  "program-number": 5656
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-service-rpc": {
      "post": {
        "tags": [
          "ServiceRPC"
        ],
        "operationId": "deleteServiceRpc",
        "description": "The parameters and request body are for method: deleteServiceRpc. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-services-rpc": {
      "post": {
        "tags": [
          "ServiceRPC"
        ],
        "operationId": "showServicesRpc",
        "description": "The parameters and request body are for method: showServicesRpc. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 19,
                  "total": 19,
                  "objects": [
                    {
                      "uid": "66333250-0680-46c3-a894-ebe1fef657f4",
                      "name": "New_RPC_Service_2",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      }
                    },
                    {
                      "uid": "f4c95e3e-a820-4b35-b35e-0afb703eb11e",
                      "name": "cachefsd",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "968c527c-2191-4bea-abf3-f41da07f20dc",
                      "name": "cmsd",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3ba-9aea-11d5-bd16-0090272ccb30",
                      "name": "mountd",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3b7-9aea-11d5-bd16-0090272ccb30",
                      "name": "nfsprog",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3c6-9aea-11d5-bd16-0090272ccb30",
                      "name": "nisplus",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3bc-9aea-11d5-bd16-0090272ccb30",
                      "name": "nlockmgr",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3bb-9aea-11d5-bd16-0090272ccb30",
                      "name": "pcnfsd",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3e4-9aea-11d5-bd16-0090272ccb30",
                      "name": "rstat",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3e3-9aea-11d5-bd16-0090272ccb30",
                      "name": "rwall",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "5ff55d69-74f8-46e0-9d21-a2163a906d76",
                      "name": "sadmind",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "953dfc46-7ead-4d97-9ade-6560d79db563",
                      "name": "snmpXdmid",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "fc4e8697-6c1f-4152-94f1-c9a2ae21ef6e",
                      "name": "statd",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "320adbc3-f4f0-4254-a7a4-79dee1726b8c",
                      "name": "ttdbserverd",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3c2-9aea-11d5-bd16-0090272ccb30",
                      "name": "ypbind",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3c3-9aea-11d5-bd16-0090272ccb30",
                      "name": "yppasswd",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3c1-9aea-11d5-bd16-0090272ccb30",
                      "name": "ypserv",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3c4-9aea-11d5-bd16-0090272ccb30",
                      "name": "ypupdated",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    },
                    {
                      "uid": "97aeb3c5-9aea-11d5-bd16-0090272ccb30",
                      "name": "ypxfrd",
                      "type": "service-rpc",
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-access-rule": {
      "post": {
        "tags": [
          "AccessRule"
        ],
        "operationId": "addAccessRule",
        "description": "The parameters and request body are for method: addAccessRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "enabled": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "install-on": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "source": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "source-negate": {
                      "type": "boolean"
                    },
                    "destination": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "destination-negate": {
                      "type": "boolean"
                    },
                    "service": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          },
                          "port": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "service-negate": {
                      "type": "boolean"
                    },
                    "vpn": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "action": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "type": {
                          "type": "string"
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            },
                            "domain-type": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    },
                    "action-settings": {
                      "type": "object",
                      "properties": {
                        "enable-identity-captive-portal": {
                          "type": "boolean"
                        }
                      }
                    },
                    "content": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "content-negate": {
                      "type": "boolean"
                    },
                    "content-direction": {
                      "type": "string"
                    },
                    "track": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "type": {
                          "type": "string"
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            },
                            "domain-type": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    },
                    "track-alert": {
                      "type": "string"
                    },
                    "time": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "custom-fields": {
                      "type": "object",
                      "properties": {
                        "field-1": {
                          "type": "string"
                        },
                        "field-2": {
                          "type": "string"
                        },
                        "field-3": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "1df8a4b0-fa8b-428b-b649-626b74bf7f81",
                  "name": "Rule 1",
                  "type": "access-rule",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "enabled": true,
                  "comments": "",
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1482659046483,
                      "iso-8601": "2016-12-25T11:44+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1482659046483,
                      "iso-8601": "2016-12-25T11:44+0200"
                    },
                    "creator": "aa"
                  },
                  "install-on": [
                    {
                      "uid": "6c488338-8eec-4103-ad21-cd461ac2c476",
                      "name": "Policy Targets",
                      "type": "Global",
                      "domain": {
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data",
                        "domain-type": "data domain"
                      }
                    }
                  ],
                  "source": [
                    {
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                      "name": "Any",
                      "type": "CpmiAnyObject",
                      "domain": {
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data",
                        "domain-type": "data domain"
                      }
                    }
                  ],
                  "source-negate": false,
                  "destination": [
                    {
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                      "name": "Any",
                      "type": "CpmiAnyObject",
                      "domain": {
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data",
                        "domain-type": "data domain"
                      }
                    }
                  ],
                  "destination-negate": false,
                  "service": [
                    {
                      "uid": "97aeb3d9-9aea-11d5-bd16-0090272ccb30",
                      "name": "smtp",
                      "type": "service-tcp",
                      "domain": {
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data",
                        "domain-type": "data domain"
                      },
                      "port": "25"
                    },
                    {
                      "uid": "97aeb44f-9aea-11d5-bd16-0090272ccb30",
                      "name": "AOL",
                      "type": "service-tcp",
                      "domain": {
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data",
                        "domain-type": "data domain"
                      },
                      "port": "5190"
                    }
                  ],
                  "service-negate": false,
                  "vpn": [
                    {
                      "uid": "8fcd975f-33b1-4322-b033-6fb251554d45",
                      "name": "MyIntranet",
                      "type": "vpn-community-meshed",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    }
                  ],
                  "action": {
                    "uid": "6c488338-8eec-4103-ad21-cd461ac2c473",
                    "name": "Drop",
                    "type": "RulebaseAction",
                    "domain": {
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data",
                      "domain-type": "data domain"
                    }
                  },
                  "action-settings": {
                    "enable-identity-captive-portal": false
                  },
                  "content": [
                    {
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                      "name": "Any",
                      "type": "CpmiAnyObject",
                      "domain": {
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data",
                        "domain-type": "data domain"
                      }
                    }
                  ],
                  "content-negate": false,
                  "content-direction": "any",
                  "track": {
                    "uid": "29e53e3d-23bf-48fe-b6b1-d59bd88036f9",
                    "name": "None",
                    "type": "Track",
                    "domain": {
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data",
                      "domain-type": "data domain"
                    }
                  },
                  "track-alert": "none",
                  "time": [
                    {
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                      "name": "Any",
                      "type": "CpmiAnyObject",
                      "domain": {
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data",
                        "domain-type": "data domain"
                      }
                    }
                  ],
                  "custom-fields": {
                    "field-1": "",
                    "field-2": "",
                    "field-3": ""
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-access-rulebase": {
      "post": {
        "tags": [
          "AccessRule"
        ],
        "operationId": "showAccessRulebase",
        "description": "The parameters and request body are for method: showAccessRulebase. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "name": {
                      "type": "string"
                    },
                    "uid": {
                      "type": "string"
                    },
                    "rulebase": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "from": {
                            "type": "number"
                          },
                          "to": {
                            "type": "number"
                          },
                          "rulebase": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "uid": {
                                  "type": "string"
                                },
                                "enabled": {
                                  "type": "boolean"
                                },
                                "comments": {
                                  "type": "string"
                                },
                                "domain": {
                                  "type": "object",
                                  "properties": {
                                    "domain-type": {
                                      "type": "string"
                                    },
                                    "uid": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "meta-info": {
                                  "type": "object",
                                  "properties": {
                                    "lock": {
                                      "type": "string"
                                    },
                                    "validation-state": {
                                      "type": "string"
                                    },
                                    "read-only": {
                                      "type": "boolean"
                                    },
                                    "last-modify-time": {
                                      "type": "object",
                                      "properties": {
                                        "posix": {
                                          "type": "number"
                                        },
                                        "iso-8601": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "last-modifier": {
                                      "type": "string"
                                    },
                                    "creation-time": {
                                      "type": "object",
                                      "properties": {
                                        "posix": {
                                          "type": "number"
                                        },
                                        "iso-8601": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "creator": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "install-on": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "domainId": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          },
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "color": {
                                        "type": "string"
                                      },
                                      "xmlType": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "folder": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "meta-info": {
                                        "type": "object",
                                        "properties": {
                                          "validation-state": {
                                            "type": "string"
                                          },
                                          "last-modify-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "last-modifier": {
                                            "type": "string"
                                          },
                                          "creation-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "creator": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "tags": {
                                        "type": "object"
                                      },
                                      "name": {
                                        "type": "string"
                                      },
                                      "icon": {
                                        "type": "string"
                                      },
                                      "comments": {
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "name": {
                                  "type": "string"
                                },
                                "source": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "domainId": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          },
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "color": {
                                        "type": "string"
                                      },
                                      "xmlType": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "folder": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "meta-info": {
                                        "type": "object",
                                        "properties": {
                                          "validation-state": {
                                            "type": "string"
                                          },
                                          "last-modify-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "last-modifier": {
                                            "type": "string"
                                          },
                                          "creation-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "creator": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "tags": {
                                        "type": "object"
                                      },
                                      "name": {
                                        "type": "string"
                                      },
                                      "icon": {
                                        "type": "string"
                                      },
                                      "comments": {
                                        "type": "string"
                                      },
                                      "display-name": {
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "source-negate": {
                                  "type": "boolean"
                                },
                                "destination": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "domainId": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          },
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "color": {
                                        "type": "string"
                                      },
                                      "xmlType": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "folder": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "meta-info": {
                                        "type": "object",
                                        "properties": {
                                          "validation-state": {
                                            "type": "string"
                                          },
                                          "last-modify-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "last-modifier": {
                                            "type": "string"
                                          },
                                          "creation-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "creator": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "tags": {
                                        "type": "object"
                                      },
                                      "name": {
                                        "type": "string"
                                      },
                                      "icon": {
                                        "type": "string"
                                      },
                                      "display-name": {
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "destination-negate": {
                                  "type": "boolean"
                                },
                                "service": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "domainId": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          },
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "color": {
                                        "type": "string"
                                      },
                                      "xmlType": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "folder": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "meta-info": {
                                        "type": "object",
                                        "properties": {
                                          "validation-state": {
                                            "type": "string"
                                          },
                                          "last-modify-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "last-modifier": {
                                            "type": "string"
                                          },
                                          "creation-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "creator": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "tags": {
                                        "type": "object"
                                      },
                                      "name": {
                                        "type": "string"
                                      },
                                      "icon": {
                                        "type": "string"
                                      },
                                      "display-name": {
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "service-negate": {
                                  "type": "boolean"
                                },
                                "vpn": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "domainId": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          },
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "color": {
                                        "type": "string"
                                      },
                                      "xmlType": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "folder": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "meta-info": {
                                        "type": "object",
                                        "properties": {
                                          "validation-state": {
                                            "type": "string"
                                          },
                                          "last-modify-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "last-modifier": {
                                            "type": "string"
                                          },
                                          "creation-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "creator": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "tags": {
                                        "type": "object"
                                      },
                                      "name": {
                                        "type": "string"
                                      },
                                      "icon": {
                                        "type": "string"
                                      },
                                      "display-name": {
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "action": {
                                  "type": "object",
                                  "properties": {
                                    "domainId": {
                                      "type": "object",
                                      "properties": {
                                        "uid": {
                                          "type": "string"
                                        },
                                        "name": {
                                          "type": "string"
                                        },
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "color": {
                                      "type": "string"
                                    },
                                    "xmlType": {
                                      "type": "string"
                                    },
                                    "uid": {
                                      "type": "string"
                                    },
                                    "folder": {
                                      "type": "object",
                                      "properties": {
                                        "uid": {
                                          "type": "string"
                                        },
                                        "name": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "meta-info": {
                                      "type": "object",
                                      "properties": {
                                        "validation-state": {
                                          "type": "string"
                                        },
                                        "last-modify-time": {
                                          "type": "object",
                                          "properties": {
                                            "posix": {
                                              "type": "number"
                                            },
                                            "iso-8601": {
                                              "type": "string"
                                            }
                                          }
                                        },
                                        "last-modifier": {
                                          "type": "string"
                                        },
                                        "creation-time": {
                                          "type": "object",
                                          "properties": {
                                            "posix": {
                                              "type": "number"
                                            },
                                            "iso-8601": {
                                              "type": "string"
                                            }
                                          }
                                        },
                                        "creator": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "tags": {
                                      "type": "object"
                                    },
                                    "name": {
                                      "type": "string"
                                    },
                                    "icon": {
                                      "type": "string"
                                    },
                                    "comments": {
                                      "type": "string"
                                    },
                                    "display-name": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "action-settings": {
                                  "type": "object",
                                  "properties": {
                                    "enable-identity-captive-portal": {
                                      "type": "boolean"
                                    }
                                  }
                                },
                                "data": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "domainId": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          },
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "color": {
                                        "type": "string"
                                      },
                                      "xmlType": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "folder": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "meta-info": {
                                        "type": "object",
                                        "properties": {
                                          "validation-state": {
                                            "type": "string"
                                          },
                                          "last-modify-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "last-modifier": {
                                            "type": "string"
                                          },
                                          "creation-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "creator": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "tags": {
                                        "type": "object"
                                      },
                                      "name": {
                                        "type": "string"
                                      },
                                      "icon": {
                                        "type": "string"
                                      },
                                      "display-name": {
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "data-negate": {
                                  "type": "boolean"
                                },
                                "data-direction": {
                                  "type": "string"
                                },
                                "track": {
                                  "type": "object",
                                  "properties": {
                                    "domainId": {
                                      "type": "object",
                                      "properties": {
                                        "uid": {
                                          "type": "string"
                                        },
                                        "name": {
                                          "type": "string"
                                        },
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "color": {
                                      "type": "string"
                                    },
                                    "xmlType": {
                                      "type": "string"
                                    },
                                    "uid": {
                                      "type": "string"
                                    },
                                    "folder": {
                                      "type": "object",
                                      "properties": {
                                        "uid": {
                                          "type": "string"
                                        },
                                        "name": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "meta-info": {
                                      "type": "object",
                                      "properties": {
                                        "validation-state": {
                                          "type": "string"
                                        },
                                        "last-modify-time": {
                                          "type": "object",
                                          "properties": {
                                            "posix": {
                                              "type": "number"
                                            },
                                            "iso-8601": {
                                              "type": "string"
                                            }
                                          }
                                        },
                                        "last-modifier": {
                                          "type": "string"
                                        },
                                        "creation-time": {
                                          "type": "object",
                                          "properties": {
                                            "posix": {
                                              "type": "number"
                                            },
                                            "iso-8601": {
                                              "type": "string"
                                            }
                                          }
                                        },
                                        "creator": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "tags": {
                                      "type": "object"
                                    },
                                    "name": {
                                      "type": "string"
                                    },
                                    "icon": {
                                      "type": "string"
                                    },
                                    "comments": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "track-alert": {
                                  "type": "string"
                                },
                                "time": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "domainId": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          },
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "color": {
                                        "type": "string"
                                      },
                                      "xmlType": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "folder": {
                                        "type": "object",
                                        "properties": {
                                          "uid": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "meta-info": {
                                        "type": "object",
                                        "properties": {
                                          "validation-state": {
                                            "type": "string"
                                          },
                                          "last-modify-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "last-modifier": {
                                            "type": "string"
                                          },
                                          "creation-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "creator": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "tags": {
                                        "type": "object"
                                      },
                                      "name": {
                                        "type": "string"
                                      },
                                      "icon": {
                                        "type": "string"
                                      },
                                      "display-name": {
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "custom-fields": {
                                  "type": "object",
                                  "properties": {
                                    "field-1": {
                                      "type": "string"
                                    },
                                    "field-2": {
                                      "type": "string"
                                    },
                                    "field-3": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "rule-number": {
                                  "type": "number"
                                },
                                "type": {
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 4,
                  "to": 5,
                  "total": 1,
                  "name": "string",
                  "uid": "string",
                  "rulebase": [
                    {
                      "from": 1,
                      "to": 1,
                      "rulebase": [
                        {
                          "uid": "cb20e1cc-0343-4e22-a6bb-30b92e97675c",
                          "enabled": true,
                          "comments": "",
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "meta-info": {
                            "lock": "unlocked",
                            "validation-state": "ok",
                            "read-only": false,
                            "last-modify-time": {
                              "posix": 1445504073840,
                              "iso-8601": "2015-10-22T11:54+0300"
                            },
                            "last-modifier": "aa",
                            "creation-time": {
                              "posix": 1445245489542,
                              "iso-8601": "2015-10-19T12:04+0300"
                            },
                            "creator": "aa"
                          },
                          "install-on": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "none",
                              "xmlType": "Global",
                              "uid": "6c488338-8eec-4103-ad21-cd461ac2c476",
                              "folder": {
                                "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                                "name": "Check Point Settings"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711969368,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711969368,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Policy Targets",
                              "icon": "General/globalsAny",
                              "comments": "The policy target gateways"
                            }
                          ],
                          "name": "Rule1",
                          "source": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "red",
                              "xmlType": "dynamic-object",
                              "uid": "fe9b9103-f1c0-499e-985a-d15ccc7ebaab",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711955857,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711955857,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "CPDShield",
                              "icon": "NetworkObjects/dynamicObject",
                              "comments": "DSHIELD IP blocklist",
                              "display-name": ""
                            }
                          ],
                          "source-negate": false,
                          "destination": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "destination-negate": false,
                          "service": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "service-negate": false,
                          "vpn": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "action": {
                            "domainId": {
                              "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                              "name": "Check Point Data",
                              "type": "data domain"
                            },
                            "color": "none",
                            "xmlType": "RulebaseAction",
                            "uid": "6c488338-8eec-4103-ad21-cd461ac2c473",
                            "folder": {
                              "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                              "name": "Check Point Settings"
                            },
                            "meta-info": {
                              "validation-state": "ok",
                              "last-modify-time": {
                                "posix": 1444711969650,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "last-modifier": "System",
                              "creation-time": {
                                "posix": 1444711969650,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "creator": "System"
                            },
                            "tags": [],
                            "name": "Drop",
                            "icon": "Actions/actionsDrop",
                            "comments": "Drop",
                            "display-name": "Drop"
                          },
                          "action-settings": {
                            "enable-identity-captive-portal": false
                          },
                          "data": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "data-negate": false,
                          "data-direction": "any",
                          "track": {
                            "domainId": {
                              "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                              "name": "Check Point Data",
                              "type": "data domain"
                            },
                            "color": "none",
                            "xmlType": "Track",
                            "uid": "29e53e3d-23bf-48fe-b6b1-d59bd88036f9",
                            "folder": {
                              "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                              "name": "Check Point Settings"
                            },
                            "meta-info": {
                              "validation-state": "ok",
                              "last-modify-time": {
                                "posix": 1444711969451,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "last-modifier": "System",
                              "creation-time": {
                                "posix": 1444711969451,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "creator": "System"
                            },
                            "tags": [],
                            "name": "None",
                            "icon": "General/globalsNone",
                            "comments": "Extended Log used in Application Site rulebase"
                          },
                          "track-alert": "none",
                          "time": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "custom-fields": {
                            "field-1": "",
                            "field-2": "",
                            "field-3": ""
                          },
                          "rule-number": 1,
                          "type": "rule"
                        }
                      ],
                      "name": "Section1",
                      "uid": "c53d4aac-6c1b-4c75-aea2-3105612c302c",
                      "type": "section"
                    },
                    {
                      "from": 1,
                      "to": 1,
                      "rulebase": [
                        {
                          "uid": "cb20e1cc-0343-4e22-a6bb-30b92e97675c",
                          "enabled": true,
                          "comments": "",
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "meta-info": {
                            "lock": "unlocked",
                            "validation-state": "ok",
                            "read-only": false,
                            "last-modify-time": {
                              "posix": 1445504073840,
                              "iso-8601": "2015-10-22T11:54+0300"
                            },
                            "last-modifier": "aa",
                            "creation-time": {
                              "posix": 1445245489542,
                              "iso-8601": "2015-10-19T12:04+0300"
                            },
                            "creator": "aa"
                          },
                          "install-on": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "none",
                              "xmlType": "Global",
                              "uid": "6c488338-8eec-4103-ad21-cd461ac2c476",
                              "folder": {
                                "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                                "name": "Check Point Settings"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711969368,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711969368,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Policy Targets",
                              "icon": "General/globalsAny",
                              "comments": "The policy target gateways"
                            }
                          ],
                          "name": "Rule1",
                          "source": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "red",
                              "xmlType": "dynamic-object",
                              "uid": "fe9b9103-f1c0-499e-985a-d15ccc7ebaab",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711955857,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711955857,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "CPDShield",
                              "icon": "NetworkObjects/dynamicObject",
                              "comments": "DSHIELD IP blocklist",
                              "display-name": ""
                            }
                          ],
                          "source-negate": false,
                          "destination": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "destination-negate": false,
                          "service": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "service-negate": false,
                          "vpn": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "action": {
                            "domainId": {
                              "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                              "name": "Check Point Data",
                              "type": "data domain"
                            },
                            "color": "none",
                            "xmlType": "RulebaseAction",
                            "uid": "6c488338-8eec-4103-ad21-cd461ac2c473",
                            "folder": {
                              "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                              "name": "Check Point Settings"
                            },
                            "meta-info": {
                              "validation-state": "ok",
                              "last-modify-time": {
                                "posix": 1444711969650,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "last-modifier": "System",
                              "creation-time": {
                                "posix": 1444711969650,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "creator": "System"
                            },
                            "tags": [],
                            "name": "Drop",
                            "icon": "Actions/actionsDrop",
                            "comments": "Drop",
                            "display-name": "Drop"
                          },
                          "action-settings": {
                            "enable-identity-captive-portal": false
                          },
                          "data": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "data-negate": false,
                          "data-direction": "any",
                          "track": {
                            "domainId": {
                              "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                              "name": "Check Point Data",
                              "type": "data domain"
                            },
                            "color": "none",
                            "xmlType": "Track",
                            "uid": "29e53e3d-23bf-48fe-b6b1-d59bd88036f9",
                            "folder": {
                              "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                              "name": "Check Point Settings"
                            },
                            "meta-info": {
                              "validation-state": "ok",
                              "last-modify-time": {
                                "posix": 1444711969451,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "last-modifier": "System",
                              "creation-time": {
                                "posix": 1444711969451,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "creator": "System"
                            },
                            "tags": [],
                            "name": "None",
                            "icon": "General/globalsNone",
                            "comments": "Extended Log used in Application Site rulebase"
                          },
                          "track-alert": "none",
                          "time": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "custom-fields": {
                            "field-1": "",
                            "field-2": "",
                            "field-3": ""
                          },
                          "rule-number": 1,
                          "type": "rule"
                        }
                      ],
                      "name": "Section1",
                      "uid": "c53d4aac-6c1b-4c75-aea2-3105612c302c",
                      "type": "section"
                    },
                    {
                      "from": 1,
                      "to": 1,
                      "rulebase": [
                        {
                          "uid": "cb20e1cc-0343-4e22-a6bb-30b92e97675c",
                          "enabled": true,
                          "comments": "",
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "meta-info": {
                            "lock": "unlocked",
                            "validation-state": "ok",
                            "read-only": false,
                            "last-modify-time": {
                              "posix": 1445504073840,
                              "iso-8601": "2015-10-22T11:54+0300"
                            },
                            "last-modifier": "aa",
                            "creation-time": {
                              "posix": 1445245489542,
                              "iso-8601": "2015-10-19T12:04+0300"
                            },
                            "creator": "aa"
                          },
                          "install-on": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "none",
                              "xmlType": "Global",
                              "uid": "6c488338-8eec-4103-ad21-cd461ac2c476",
                              "folder": {
                                "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                                "name": "Check Point Settings"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711969368,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711969368,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Policy Targets",
                              "icon": "General/globalsAny",
                              "comments": "The policy target gateways"
                            }
                          ],
                          "name": "Rule1",
                          "source": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "red",
                              "xmlType": "dynamic-object",
                              "uid": "fe9b9103-f1c0-499e-985a-d15ccc7ebaab",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711955857,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711955857,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "CPDShield",
                              "icon": "NetworkObjects/dynamicObject",
                              "comments": "DSHIELD IP blocklist",
                              "display-name": ""
                            }
                          ],
                          "source-negate": false,
                          "destination": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "destination-negate": false,
                          "service": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "service-negate": false,
                          "vpn": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "action": {
                            "domainId": {
                              "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                              "name": "Check Point Data",
                              "type": "data domain"
                            },
                            "color": "none",
                            "xmlType": "RulebaseAction",
                            "uid": "6c488338-8eec-4103-ad21-cd461ac2c473",
                            "folder": {
                              "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                              "name": "Check Point Settings"
                            },
                            "meta-info": {
                              "validation-state": "ok",
                              "last-modify-time": {
                                "posix": 1444711969650,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "last-modifier": "System",
                              "creation-time": {
                                "posix": 1444711969650,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "creator": "System"
                            },
                            "tags": [],
                            "name": "Drop",
                            "icon": "Actions/actionsDrop",
                            "comments": "Drop",
                            "display-name": "Drop"
                          },
                          "action-settings": {
                            "enable-identity-captive-portal": false
                          },
                          "data": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "data-negate": false,
                          "data-direction": "any",
                          "track": {
                            "domainId": {
                              "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                              "name": "Check Point Data",
                              "type": "data domain"
                            },
                            "color": "none",
                            "xmlType": "Track",
                            "uid": "29e53e3d-23bf-48fe-b6b1-d59bd88036f9",
                            "folder": {
                              "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                              "name": "Check Point Settings"
                            },
                            "meta-info": {
                              "validation-state": "ok",
                              "last-modify-time": {
                                "posix": 1444711969451,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "last-modifier": "System",
                              "creation-time": {
                                "posix": 1444711969451,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "creator": "System"
                            },
                            "tags": [],
                            "name": "None",
                            "icon": "General/globalsNone",
                            "comments": "Extended Log used in Application Site rulebase"
                          },
                          "track-alert": "none",
                          "time": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "custom-fields": {
                            "field-1": "",
                            "field-2": "",
                            "field-3": ""
                          },
                          "rule-number": 1,
                          "type": "rule"
                        }
                      ],
                      "name": "Section1",
                      "uid": "c53d4aac-6c1b-4c75-aea2-3105612c302c",
                      "type": "section"
                    },
                    {
                      "from": 1,
                      "to": 1,
                      "rulebase": [
                        {
                          "uid": "cb20e1cc-0343-4e22-a6bb-30b92e97675c",
                          "enabled": true,
                          "comments": "",
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "meta-info": {
                            "lock": "unlocked",
                            "validation-state": "ok",
                            "read-only": false,
                            "last-modify-time": {
                              "posix": 1445504073840,
                              "iso-8601": "2015-10-22T11:54+0300"
                            },
                            "last-modifier": "aa",
                            "creation-time": {
                              "posix": 1445245489542,
                              "iso-8601": "2015-10-19T12:04+0300"
                            },
                            "creator": "aa"
                          },
                          "install-on": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "none",
                              "xmlType": "Global",
                              "uid": "6c488338-8eec-4103-ad21-cd461ac2c476",
                              "folder": {
                                "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                                "name": "Check Point Settings"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711969368,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711969368,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Policy Targets",
                              "icon": "General/globalsAny",
                              "comments": "The policy target gateways"
                            }
                          ],
                          "name": "Rule1",
                          "source": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "red",
                              "xmlType": "dynamic-object",
                              "uid": "fe9b9103-f1c0-499e-985a-d15ccc7ebaab",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711955857,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711955857,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "CPDShield",
                              "icon": "NetworkObjects/dynamicObject",
                              "comments": "DSHIELD IP blocklist",
                              "display-name": ""
                            }
                          ],
                          "source-negate": false,
                          "destination": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "destination-negate": false,
                          "service": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "service-negate": false,
                          "vpn": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "action": {
                            "domainId": {
                              "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                              "name": "Check Point Data",
                              "type": "data domain"
                            },
                            "color": "none",
                            "xmlType": "RulebaseAction",
                            "uid": "6c488338-8eec-4103-ad21-cd461ac2c473",
                            "folder": {
                              "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                              "name": "Check Point Settings"
                            },
                            "meta-info": {
                              "validation-state": "ok",
                              "last-modify-time": {
                                "posix": 1444711969650,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "last-modifier": "System",
                              "creation-time": {
                                "posix": 1444711969650,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "creator": "System"
                            },
                            "tags": [],
                            "name": "Drop",
                            "icon": "Actions/actionsDrop",
                            "comments": "Drop",
                            "display-name": "Drop"
                          },
                          "action-settings": {
                            "enable-identity-captive-portal": false
                          },
                          "data": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "data-negate": false,
                          "data-direction": "any",
                          "track": {
                            "domainId": {
                              "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                              "name": "Check Point Data",
                              "type": "data domain"
                            },
                            "color": "none",
                            "xmlType": "Track",
                            "uid": "29e53e3d-23bf-48fe-b6b1-d59bd88036f9",
                            "folder": {
                              "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                              "name": "Check Point Settings"
                            },
                            "meta-info": {
                              "validation-state": "ok",
                              "last-modify-time": {
                                "posix": 1444711969451,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "last-modifier": "System",
                              "creation-time": {
                                "posix": 1444711969451,
                                "iso-8601": "2015-10-13T07:52+0300"
                              },
                              "creator": "System"
                            },
                            "tags": [],
                            "name": "None",
                            "icon": "General/globalsNone",
                            "comments": "Extended Log used in Application Site rulebase"
                          },
                          "track-alert": "none",
                          "time": [
                            {
                              "domainId": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "type": "data domain"
                              },
                              "color": "black",
                              "xmlType": "CpmiAnyObject",
                              "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                              "folder": {
                                "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                                "name": "Global Objects"
                              },
                              "meta-info": {
                                "validation-state": "ok",
                                "last-modify-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "last-modifier": "System",
                                "creation-time": {
                                  "posix": 1444711951589,
                                  "iso-8601": "2015-10-13T07:52+0300"
                                },
                                "creator": "System"
                              },
                              "tags": [],
                              "name": "Any",
                              "icon": "General/globalsAny",
                              "display-name": ""
                            }
                          ],
                          "custom-fields": {
                            "field-1": "",
                            "field-2": "",
                            "field-3": ""
                          },
                          "rule-number": 1,
                          "type": "rule"
                        }
                      ],
                      "name": "Section1",
                      "uid": "c53d4aac-6c1b-4c75-aea2-3105612c302c",
                      "type": "section"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-access-rule": {
      "post": {
        "tags": [
          "AccessRule"
        ],
        "operationId": "showAccessRule",
        "description": "The parameters and request body are for method: showAccessRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-access-rule": {
      "post": {
        "tags": [
          "AccessRule"
        ],
        "operationId": "setAccessRule",
        "description": "The parameters and request body are for method: setAccessRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-access-rule": {
      "post": {
        "tags": [
          "AccessRule"
        ],
        "operationId": "deleteAccessRule",
        "description": "The parameters and request body are for method: deleteAccessRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-access-section": {
      "post": {
        "tags": [
          "AccessSection"
        ],
        "operationId": "addAccessSection",
        "description": "The parameters and request body are for method: addAccessSection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-access-section": {
      "post": {
        "tags": [
          "AccessSection"
        ],
        "operationId": "showAccessSection",
        "description": "The parameters and request body are for method: showAccessSection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-access-section": {
      "post": {
        "tags": [
          "AccessSection"
        ],
        "operationId": "setAccessSection",
        "description": "The parameters and request body are for method: setAccessSection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-access-section": {
      "post": {
        "tags": [
          "AccessSection"
        ],
        "operationId": "deleteAccessSection",
        "description": "The parameters and request body are for method: deleteAccessSection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-access-layer": {
      "post": {
        "tags": [
          "AccessLayer"
        ],
        "operationId": "addAccessLayer",
        "description": "The parameters and request body are for method: addAccessLayer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "name": {
                      "type": "string"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "applications-and-url-filtering": {
                      "type": "boolean"
                    },
                    "content-awareness": {
                      "type": "boolean"
                    },
                    "mobile-access": {
                      "type": "boolean"
                    },
                    "show-parent-rule": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "81530aad-bc98-4e8f-a62d-079424ddd955",
                  "folder": {
                    "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1435737909731,
                      "iso-8601": "2015-07-01T11:05+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1435737908063,
                      "iso-8601": "2015-07-01T11:05+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "name": "New Layer 1",
                  "comments": "",
                  "color": "black",
                  "icon": "ApplicationFirewall/rulebase",
                  "applications-and-url-filtering": false,
                  "content-awareness": false,
                  "mobile-access": false,
                  "show-parent-rule": true
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-access-layer": {
      "post": {
        "tags": [
          "AccessLayer"
        ],
        "operationId": "showAccessLayer",
        "description": "The parameters and request body are for method: showAccessLayer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-access-layer": {
      "post": {
        "tags": [
          "AccessLayer"
        ],
        "operationId": "setAccessLayer",
        "description": "The parameters and request body are for method: setAccessLayer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "name": {
                      "type": "string"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "applications-and-url-filtering": {
                      "type": "boolean"
                    },
                    "content-awareness": {
                      "type": "boolean"
                    },
                    "mobile-access": {
                      "type": "boolean"
                    },
                    "show-parent-rule": {
                      "type": "boolean"
                    },
                    "detect-using-x-forward-for": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "81530aad-bc98-4e8f-a62d-079424ddd955",
                  "folder": {
                    "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1435738096905,
                      "iso-8601": "2015-07-01T11:08+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1435737908063,
                      "iso-8601": "2015-07-01T11:05+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "name": "New Layer 2",
                  "comments": "",
                  "color": "black",
                  "icon": "ApplicationFirewall/rulebase",
                  "applications-and-url-filtering": false,
                  "content-awareness": true,
                  "mobile-access": false,
                  "show-parent-rule": false,
                  "detect-using-x-forward-for": true
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-access-layer": {
      "post": {
        "tags": [
          "AccessLayer"
        ],
        "operationId": "deleteAccessLayer",
        "description": "The parameters and request body are for method: deleteAccessLayer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-access-layers": {
      "post": {
        "tags": [
          "AccessLayer"
        ],
        "operationId": "showAccessLayers",
        "description": "The parameters and request body are for method: showAccessLayers. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-nat-rule": {
      "post": {
        "tags": [
          "NATRule"
        ],
        "operationId": "addNatRule",
        "description": "The parameters and request body are for method: addNatRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-nat-rulebase": {
      "post": {
        "tags": [
          "NATRule"
        ],
        "operationId": "showNatRulebase",
        "description": "The parameters and request body are for method: showNatRulebase. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "uid": {
                      "type": "string"
                    },
                    "rulebase": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "enabled": {
                            "type": "boolean"
                          },
                          "comments": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "meta-info": {
                            "type": "object",
                            "properties": {
                              "lock": {
                                "type": "string"
                              },
                              "validation-state": {
                                "type": "string"
                              },
                              "read-only": {
                                "type": "boolean"
                              },
                              "last-modify-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "last-modifier": {
                                "type": "string"
                              },
                              "creation-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "creator": {
                                "type": "string"
                              }
                            }
                          },
                          "install-on": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "auto-generated": {
                            "type": "boolean"
                          },
                          "original-destination": {
                            "type": "string"
                          },
                          "translated-destination": {
                            "type": "string"
                          },
                          "original-source": {
                            "type": "string"
                          },
                          "translated-source": {
                            "type": "string"
                          },
                          "original-service": {
                            "type": "string"
                          },
                          "translated-service": {
                            "type": "string"
                          },
                          "method": {
                            "type": "string"
                          },
                          "rule-number": {
                            "type": "number"
                          },
                          "type": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "objects-dictionary": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 4,
                  "total": 4,
                  "uid": "17dd4fab-1940-4760-9a93-9dba4fca9265",
                  "rulebase": [
                    {
                      "uid": "5b149268-1396-4d16-93c9-79d69a49de18",
                      "enabled": true,
                      "comments": "",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "read-only": false,
                        "last-modify-time": {
                          "posix": 1445246631813,
                          "iso-8601": "2015-10-19T12:23+0300"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1445246624363,
                          "iso-8601": "2015-10-19T12:23+0300"
                        },
                        "creator": "aa"
                      },
                      "install-on": [
                        "6c488338-8eec-4103-ad21-cd461ac2c476"
                      ],
                      "auto-generated": false,
                      "original-destination": "57de3848-3675-48ed-b045-41378f4babb3",
                      "translated-destination": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                      "original-source": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                      "translated-source": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                      "original-service": "97aeb44f-9aea-11d5-bd16-0090272ccb30",
                      "translated-service": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                      "method": "static",
                      "rule-number": 1,
                      "type": "rule"
                    },
                    {
                      "uid": "c35c7d9f-0730-437a-af0e-ec161284f2e8",
                      "enabled": true,
                      "comments": "",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "read-only": false,
                        "last-modify-time": {
                          "posix": 1445246621205,
                          "iso-8601": "2015-10-19T12:23+0300"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1445246609436,
                          "iso-8601": "2015-10-19T12:23+0300"
                        },
                        "creator": "aa"
                      },
                      "install-on": [
                        "6c488338-8eec-4103-ad21-cd461ac2c476"
                      ],
                      "auto-generated": false,
                      "original-destination": "8a883654-cdd4-45a8-b079-d4e476a70ad6",
                      "translated-destination": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                      "original-source": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                      "translated-source": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                      "original-service": "97aeb3d6-9aea-11d5-bd16-0090272ccb30",
                      "translated-service": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                      "method": "static",
                      "rule-number": 2,
                      "type": "rule"
                    },
                    {
                      "rulebase": [],
                      "name": "Automatic Generated Rules : Machine Static NAT",
                      "uid": "785f43ba-efb5-43bb-b196-4e539bb4d014",
                      "type": "section"
                    },
                    {
                      "rulebase": [],
                      "name": "Automatic Generated Rules : Machine Hide NAT",
                      "uid": "50755a21-ca90-4a26-a285-21179e233e7b",
                      "type": "section"
                    },
                    {
                      "rulebase": [],
                      "name": "Automatic Generated Rules : Address Range Static NAT",
                      "uid": "22d6b639-ce3b-4d20-b1a7-d96ac6df5d6d",
                      "type": "section"
                    },
                    {
                      "rulebase": [],
                      "name": "Automatic Generated Rules : Network Static NAT",
                      "uid": "232ec587-cd3f-454e-a400-26a7fa16233c",
                      "type": "section"
                    },
                    {
                      "rulebase": [],
                      "name": "Automatic Generated Rules : Address Range Hide NAT",
                      "uid": "d6379e8a-ee2b-48f6-8096-e5d58443829e",
                      "type": "section"
                    },
                    {
                      "from": 3,
                      "to": 4,
                      "rulebase": [
                        {
                          "uid": "f49dcfe4-3788-450f-91a0-c884a75c51df",
                          "enabled": true,
                          "comments": "",
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "meta-info": {
                            "lock": "unlocked",
                            "validation-state": "ok",
                            "read-only": false,
                            "last-modify-time": {
                              "posix": 1444712139520,
                              "iso-8601": "2015-10-13T07:55+0300"
                            },
                            "last-modifier": "System",
                            "creation-time": {
                              "posix": 1444712139520,
                              "iso-8601": "2015-10-13T07:55+0300"
                            },
                            "creator": "System"
                          },
                          "install-on": [
                            "97aeb368-9aea-11d5-bd16-0090272ccb30"
                          ],
                          "auto-generated": true,
                          "original-destination": "7559e93f-a5d1-4d77-991e-33e99ce2db71",
                          "translated-destination": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                          "original-source": "7559e93f-a5d1-4d77-991e-33e99ce2db71",
                          "translated-source": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                          "original-service": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                          "translated-service": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                          "method": "hide",
                          "rule-number": 3,
                          "type": "rule"
                        },
                        {
                          "uid": "5ba26dc2-dded-4c5f-8c73-7b1b0d5c7922",
                          "enabled": true,
                          "comments": "",
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "meta-info": {
                            "lock": "unlocked",
                            "validation-state": "ok",
                            "read-only": false,
                            "last-modify-time": {
                              "posix": 1444712139533,
                              "iso-8601": "2015-10-13T07:55+0300"
                            },
                            "last-modifier": "System",
                            "creation-time": {
                              "posix": 1444712139533,
                              "iso-8601": "2015-10-13T07:55+0300"
                            },
                            "creator": "System"
                          },
                          "install-on": [
                            "97aeb368-9aea-11d5-bd16-0090272ccb30"
                          ],
                          "auto-generated": true,
                          "original-destination": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                          "translated-destination": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                          "original-source": "7559e93f-a5d1-4d77-991e-33e99ce2db71",
                          "translated-source": "7559e93f-a5d1-4d77-991e-33e99ce2db71",
                          "original-service": "97aeb369-9aea-11d5-bd16-0090272ccb30",
                          "translated-service": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c",
                          "method": "hide",
                          "rule-number": 4,
                          "type": "rule"
                        }
                      ],
                      "name": "Automatic Generated Rules : Network Hide NAT",
                      "uid": "3c7d9a48-0b52-4325-b073-dbce47839f64",
                      "type": "section"
                    },
                    {
                      "rulebase": [],
                      "name": "Manual Lower Rules",
                      "uid": "9ddb00ec-b9c7-481d-af85-d435eaba1947",
                      "type": "section"
                    }
                  ],
                  "objects-dictionary": [
                    {
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "service-tcp",
                      "name": "AOL",
                      "uid": "97aeb44f-9aea-11d5-bd16-0090272ccb30"
                    },
                    {
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "All",
                      "uid": "97aeb368-9aea-11d5-bd16-0090272ccb30"
                    },
                    {
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    },
                    {
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "network",
                      "name": "CP_default_Office_Mode_addresses_pool",
                      "uid": "7559e93f-a5d1-4d77-991e-33e99ce2db71"
                    },
                    {
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "dynamic-object",
                      "name": "DMZNet",
                      "uid": "8a883654-cdd4-45a8-b079-d4e476a70ad6"
                    },
                    {
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "Global",
                      "name": "Original",
                      "uid": "85c0f50f-6d8a-4528-88ab-5fb11d8fe16c"
                    },
                    {
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "Global",
                      "name": "Policy Targets",
                      "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                    },
                    {
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "security-zone",
                      "name": "WirelessZone",
                      "uid": "57de3848-3675-48ed-b045-41378f4babb3"
                    },
                    {
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "service-udp",
                      "name": "archie",
                      "uid": "97aeb3d6-9aea-11d5-bd16-0090272ccb30"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-nat-rule": {
      "post": {
        "tags": [
          "NATRule"
        ],
        "operationId": "showNatRule",
        "description": "The parameters and request body are for method: showNatRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-nat-rule": {
      "post": {
        "tags": [
          "NATRule"
        ],
        "operationId": "setNatRule",
        "description": "The parameters and request body are for method: setNatRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-nat-rule": {
      "post": {
        "tags": [
          "NATRule"
        ],
        "operationId": "deleteNatRule",
        "description": "The parameters and request body are for method: deleteNatRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-nat-section": {
      "post": {
        "tags": [
          "NATSection"
        ],
        "operationId": "addNatSection",
        "description": "The parameters and request body are for method: addNatSection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-nat-section": {
      "post": {
        "tags": [
          "NATSection"
        ],
        "operationId": "showNatSection",
        "description": "The parameters and request body are for method: showNatSection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-nat-section": {
      "post": {
        "tags": [
          "NATSection"
        ],
        "operationId": "setNatSection",
        "description": "The parameters and request body are for method: setNatSection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-nat-section": {
      "post": {
        "tags": [
          "NATSection"
        ],
        "operationId": "deleteNatSection",
        "description": "The parameters and request body are for method: deleteNatSection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-vpn-community-meshed": {
      "post": {
        "tags": [
          "VPNCommunityMeshed"
        ],
        "operationId": "addVpnCommunityMeshed",
        "description": "The parameters and request body are for method: addVpnCommunityMeshed. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "use-shared-secret": {
                      "type": "boolean"
                    },
                    "encryption-method": {
                      "type": "string"
                    },
                    "encryption-suite": {
                      "type": "string"
                    },
                    "ike-phase-1": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "diffie-hellman-group": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "ike-phase-2": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "gateways": {
                      "type": "object"
                    }
                  }
                },
                "example": {
                  "uid": "283a3c73-0760-4876-8907-f8b4a14c0d76",
                  "name": "New_VPN_Community_Meshed_1",
                  "type": "vpn-community-meshed",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1482234126842,
                      "iso-8601": "2016-12-20T13:42+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1482234126842,
                      "iso-8601": "2016-12-20T13:42+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "VPNCommunities/Meshed",
                  "use-shared-secret": false,
                  "encryption-method": "prefer ikev2 but support ikev1",
                  "encryption-suite": "custom",
                  "ike-phase-1": {
                    "encryption-algorithm": "aes-128",
                    "diffie-hellman-group": "group 19",
                    "data-integrity": "sha1"
                  },
                  "ike-phase-2": {
                    "encryption-algorithm": "aes-gcm-128",
                    "data-integrity": "aes-xcbc"
                  },
                  "gateways": []
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-vpn-community-meshed": {
      "post": {
        "tags": [
          "VPNCommunityMeshed"
        ],
        "operationId": "showVpnCommunityMeshed",
        "description": "The parameters and request body are for method: showVpnCommunityMeshed. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "use-shared-secret": {
                      "type": "boolean"
                    },
                    "encryption-method": {
                      "type": "string"
                    },
                    "encryption-suite": {
                      "type": "string"
                    },
                    "ike-phase-1": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "diffie-hellman-group": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "ike-phase-2": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "gateways": {
                      "type": "object"
                    }
                  }
                },
                "example": {
                  "uid": "283a3c73-0760-4876-8907-f8b4a14c0d76",
                  "name": "New_VPN_Community_Meshed_1",
                  "type": "vpn-community-meshed",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1482234163988,
                      "iso-8601": "2016-12-20T13:42+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1482234126842,
                      "iso-8601": "2016-12-20T13:42+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "color": "black",
                  "icon": "VPNCommunities/Meshed",
                  "use-shared-secret": false,
                  "encryption-method": "ikev2 only",
                  "encryption-suite": "custom",
                  "ike-phase-1": {
                    "encryption-algorithm": "aes-128",
                    "diffie-hellman-group": "group 19",
                    "data-integrity": "sha1"
                  },
                  "ike-phase-2": {
                    "encryption-algorithm": "aes-gcm-128",
                    "data-integrity": "aes-xcbc"
                  },
                  "gateways": []
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-vpn-community-meshed": {
      "post": {
        "tags": [
          "VPNCommunityMeshed"
        ],
        "operationId": "setVpnCommunityMeshed",
        "description": "The parameters and request body are for method: setVpnCommunityMeshed. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "use-shared-secret": {
                      "type": "boolean"
                    },
                    "encryption-method": {
                      "type": "string"
                    },
                    "encryption-suite": {
                      "type": "string"
                    },
                    "ike-phase-1": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "diffie-hellman-group": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "ike-phase-2": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "gateways": {
                      "type": "object"
                    }
                  }
                },
                "example": {
                  "uid": "283a3c73-0760-4876-8907-f8b4a14c0d76",
                  "name": "New_VPN_Community_Meshed_1",
                  "type": "vpn-community-meshed",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1482234163988,
                      "iso-8601": "2016-12-20T13:42+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1482234126842,
                      "iso-8601": "2016-12-20T13:42+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "VPNCommunities/Meshed",
                  "use-shared-secret": false,
                  "encryption-method": "ikev2 only",
                  "encryption-suite": "custom",
                  "ike-phase-1": {
                    "encryption-algorithm": "aes-128",
                    "diffie-hellman-group": "group 19",
                    "data-integrity": "sha1"
                  },
                  "ike-phase-2": {
                    "encryption-algorithm": "aes-gcm-128",
                    "data-integrity": "aes-xcbc"
                  },
                  "gateways": []
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-vpn-community-meshed": {
      "post": {
        "tags": [
          "VPNCommunityMeshed"
        ],
        "operationId": "deleteVpnCommunityMeshed",
        "description": "The parameters and request body are for method: deleteVpnCommunityMeshed. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-vpn-communities-meshed": {
      "post": {
        "tags": [
          "VPNCommunityMeshed"
        ],
        "operationId": "showVpnCommunitiesMeshed",
        "description": "The parameters and request body are for method: showVpnCommunitiesMeshed. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          },
                          "meta-info": {
                            "type": "object",
                            "properties": {
                              "lock": {
                                "type": "string"
                              },
                              "validation-state": {
                                "type": "string"
                              },
                              "last-modify-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "last-modifier": {
                                "type": "string"
                              },
                              "creation-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "creator": {
                                "type": "string"
                              }
                            }
                          },
                          "tags": {
                            "type": "object"
                          },
                          "read-only": {
                            "type": "boolean"
                          },
                          "comments": {
                            "type": "string"
                          },
                          "color": {
                            "type": "string"
                          },
                          "icon": {
                            "type": "string"
                          },
                          "use-shared-secret": {
                            "type": "boolean"
                          },
                          "encryption-method": {
                            "type": "string"
                          },
                          "encryption-suite": {
                            "type": "string"
                          },
                          "ike-phase-1": {
                            "type": "object",
                            "properties": {
                              "encryption-algorithm": {
                                "type": "string"
                              },
                              "diffie-hellman-group": {
                                "type": "string"
                              },
                              "data-integrity": {
                                "type": "string"
                              }
                            }
                          },
                          "ike-phase-2": {
                            "type": "object",
                            "properties": {
                              "encryption-algorithm": {
                                "type": "string"
                              },
                              "data-integrity": {
                                "type": "string"
                              }
                            }
                          },
                          "gateways": {
                            "type": "object"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 2,
                  "total": 2,
                  "objects": [
                    {
                      "uid": "8f5e1d4c-14c1-47fe-9986-05a1d9adb955",
                      "name": "MyIntranet",
                      "type": "vpn-community-meshed",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "last-modify-time": {
                          "posix": 1481781545182,
                          "iso-8601": "2016-12-15T07:59+0200"
                        },
                        "last-modifier": "System",
                        "creation-time": {
                          "posix": 1481781545182,
                          "iso-8601": "2016-12-15T07:59+0200"
                        },
                        "creator": "System"
                      },
                      "tags": [],
                      "read-only": false,
                      "comments": "",
                      "color": "black",
                      "icon": "VPNCommunities/Meshed",
                      "use-shared-secret": false,
                      "encryption-method": "ikev1 for ipv4 and ikev2 for ipv6 only",
                      "encryption-suite": "custom",
                      "ike-phase-1": {
                        "encryption-algorithm": "aes-256",
                        "diffie-hellman-group": "group 2",
                        "data-integrity": "sha1"
                      },
                      "ike-phase-2": {
                        "encryption-algorithm": "aes-128",
                        "data-integrity": "sha1"
                      },
                      "gateways": []
                    },
                    {
                      "uid": "283a3c73-0760-4876-8907-f8b4a14c0d76",
                      "name": "New_VPN_Community_Meshed_1",
                      "type": "vpn-community-meshed",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      },
                      "meta-info": {
                        "lock": "locked by current session",
                        "validation-state": "ok",
                        "last-modify-time": {
                          "posix": 1482234163988,
                          "iso-8601": "2016-12-20T13:42+0200"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1482234126842,
                          "iso-8601": "2016-12-20T13:42+0200"
                        },
                        "creator": "aa"
                      },
                      "tags": [],
                      "read-only": false,
                      "comments": "",
                      "color": "black",
                      "icon": "VPNCommunities/Meshed",
                      "use-shared-secret": false,
                      "encryption-method": "ikev2 only",
                      "encryption-suite": "custom",
                      "ike-phase-1": {
                        "encryption-algorithm": "aes-128",
                        "diffie-hellman-group": "group 19",
                        "data-integrity": "sha1"
                      },
                      "ike-phase-2": {
                        "encryption-algorithm": "aes-gcm-128",
                        "data-integrity": "aes-xcbc"
                      },
                      "gateways": []
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-vpn-community-star": {
      "post": {
        "tags": [
          "VPNCommunityStar"
        ],
        "operationId": "addVpnCommunityStar",
        "description": "The parameters and request body are for method: addVpnCommunityStar. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "use-shared-secret": {
                      "type": "boolean"
                    },
                    "encryption-method": {
                      "type": "string"
                    },
                    "encryption-suite": {
                      "type": "string"
                    },
                    "ike-phase-1": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "diffie-hellman-group": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "ike-phase-2": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "center-gateways": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "satellite-gateways": {
                      "type": "object"
                    },
                    "mesh-center-gateways": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "a8c25199-7893-45d7-800d-57a2c18a3c7c",
                  "name": "New_VPN_Community_Star_1",
                  "type": "vpn-community-star",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1482228564753,
                      "iso-8601": "2016-12-20T12:09+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1482228564753,
                      "iso-8601": "2016-12-20T12:09+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "VPNCommunities/Star",
                  "use-shared-secret": false,
                  "encryption-method": "prefer ikev2 but support ikev1",
                  "encryption-suite": "custom",
                  "ike-phase-1": {
                    "encryption-algorithm": "aes-128",
                    "diffie-hellman-group": "group 19",
                    "data-integrity": "sha1"
                  },
                  "ike-phase-2": {
                    "encryption-algorithm": "aes-gcm-128",
                    "data-integrity": "aes-xcbc"
                  },
                  "center-gateways": [
                    {
                      "uid": "049bbebf-46cf-454a-999c-45bf80a29075",
                      "name": "Second_Security_Gateway",
                      "type": "simple-gateway",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    }
                  ],
                  "satellite-gateways": [],
                  "mesh-center-gateways": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-vpn-community-star": {
      "post": {
        "tags": [
          "VPNCommunityStar"
        ],
        "operationId": "showVpnCommunityStar",
        "description": "The parameters and request body are for method: showVpnCommunityStar. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "use-shared-secret": {
                      "type": "boolean"
                    },
                    "encryption-method": {
                      "type": "string"
                    },
                    "encryption-suite": {
                      "type": "string"
                    },
                    "ike-phase-1": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "diffie-hellman-group": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "ike-phase-2": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "center-gateways": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "satellite-gateways": {
                      "type": "object"
                    },
                    "mesh-center-gateways": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "a8c25199-7893-45d7-800d-57a2c18a3c7c",
                  "name": "New_VPN_Community_Star_1",
                  "type": "vpn-community-star",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1482231173231,
                      "iso-8601": "2016-12-20T12:52+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1482228564753,
                      "iso-8601": "2016-12-20T12:09+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "color": "black",
                  "icon": "VPNCommunities/Star",
                  "use-shared-secret": false,
                  "encryption-method": "ikev2 only",
                  "encryption-suite": "custom",
                  "ike-phase-1": {
                    "encryption-algorithm": "aes-128",
                    "diffie-hellman-group": "group 19",
                    "data-integrity": "sha1"
                  },
                  "ike-phase-2": {
                    "encryption-algorithm": "aes-gcm-128",
                    "data-integrity": "aes-xcbc"
                  },
                  "center-gateways": [
                    {
                      "uid": "049bbebf-46cf-454a-999c-45bf80a29075",
                      "name": "Second_Security_Gateway",
                      "type": "simple-gateway",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    }
                  ],
                  "satellite-gateways": [],
                  "mesh-center-gateways": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-vpn-community-star": {
      "post": {
        "tags": [
          "VPNCommunityStar"
        ],
        "operationId": "setVpnCommunityStar",
        "description": "The parameters and request body are for method: setVpnCommunityStar. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "use-shared-secret": {
                      "type": "boolean"
                    },
                    "encryption-method": {
                      "type": "string"
                    },
                    "encryption-suite": {
                      "type": "string"
                    },
                    "ike-phase-1": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "diffie-hellman-group": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "ike-phase-2": {
                      "type": "object",
                      "properties": {
                        "encryption-algorithm": {
                          "type": "string"
                        },
                        "data-integrity": {
                          "type": "string"
                        }
                      }
                    },
                    "center-gateways": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "satellite-gateways": {
                      "type": "object"
                    },
                    "mesh-center-gateways": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "uid": "a8c25199-7893-45d7-800d-57a2c18a3c7c",
                  "name": "New_VPN_Community_Star_1",
                  "type": "vpn-community-star",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1482231173231,
                      "iso-8601": "2016-12-20T12:52+0200"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1482228564753,
                      "iso-8601": "2016-12-20T12:09+0200"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": true,
                  "comments": "",
                  "color": "black",
                  "icon": "VPNCommunities/Star",
                  "use-shared-secret": false,
                  "encryption-method": "ikev2 only",
                  "encryption-suite": "custom",
                  "ike-phase-1": {
                    "encryption-algorithm": "aes-128",
                    "diffie-hellman-group": "group 19",
                    "data-integrity": "sha1"
                  },
                  "ike-phase-2": {
                    "encryption-algorithm": "aes-gcm-128",
                    "data-integrity": "aes-xcbc"
                  },
                  "center-gateways": [
                    {
                      "uid": "049bbebf-46cf-454a-999c-45bf80a29075",
                      "name": "Second_Security_Gateway",
                      "type": "simple-gateway",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    }
                  ],
                  "satellite-gateways": [],
                  "mesh-center-gateways": false
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-vpn-community-star": {
      "post": {
        "tags": [
          "VPNCommunityStar"
        ],
        "operationId": "deleteVpnCommunityStar",
        "description": "The parameters and request body are for method: deleteVpnCommunityStar. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-vpn-communities-star": {
      "post": {
        "tags": [
          "VPNCommunityStar"
        ],
        "operationId": "showVpnCommunitiesStar",
        "description": "The parameters and request body are for method: showVpnCommunitiesStar. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          },
                          "meta-info": {
                            "type": "object",
                            "properties": {
                              "lock": {
                                "type": "string"
                              },
                              "validation-state": {
                                "type": "string"
                              },
                              "last-modify-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "last-modifier": {
                                "type": "string"
                              },
                              "creation-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "creator": {
                                "type": "string"
                              }
                            }
                          },
                          "tags": {
                            "type": "object"
                          },
                          "read-only": {
                            "type": "boolean"
                          },
                          "comments": {
                            "type": "string"
                          },
                          "color": {
                            "type": "string"
                          },
                          "icon": {
                            "type": "string"
                          },
                          "use-shared-secret": {
                            "type": "boolean"
                          },
                          "encryption-method": {
                            "type": "string"
                          },
                          "encryption-suite": {
                            "type": "string"
                          },
                          "ike-phase-1": {
                            "type": "object",
                            "properties": {
                              "encryption-algorithm": {
                                "type": "string"
                              },
                              "diffie-hellman-group": {
                                "type": "string"
                              },
                              "data-integrity": {
                                "type": "string"
                              }
                            }
                          },
                          "ike-phase-2": {
                            "type": "object",
                            "properties": {
                              "encryption-algorithm": {
                                "type": "string"
                              },
                              "data-integrity": {
                                "type": "string"
                              }
                            }
                          },
                          "center-gateways": {
                            "type": "object"
                          },
                          "satellite-gateways": {
                            "type": "object"
                          },
                          "mesh-center-gateways": {
                            "type": "boolean"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 2,
                  "total": 2,
                  "objects": [
                    {
                      "uid": "e66826a5-f659-4493-af90-7a6256e45416",
                      "name": "AdamStar",
                      "type": "vpn-community-star",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      },
                      "meta-info": {
                        "lock": "locked by other session",
                        "validation-state": "ok",
                        "last-modify-time": {
                          "posix": 1482228216345,
                          "iso-8601": "2016-12-20T12:03+0200"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1482218708467,
                          "iso-8601": "2016-12-20T09:25+0200"
                        },
                        "creator": "aa"
                      },
                      "tags": [],
                      "read-only": false,
                      "comments": "",
                      "color": "black",
                      "icon": "VPNCommunities/Star",
                      "use-shared-secret": false,
                      "encryption-method": "prefer ikev2, support ikev1",
                      "encryption-suite": "vpn b",
                      "ike-phase-1": {
                        "encryption-algorithm": "aes-256",
                        "diffie-hellman-group": "group 2",
                        "data-integrity": "sha1"
                      },
                      "ike-phase-2": {
                        "encryption-algorithm": "aes-128",
                        "data-integrity": "sha1"
                      },
                      "center-gateways": [],
                      "satellite-gateways": [],
                      "mesh-center-gateways": false
                    },
                    {
                      "uid": "a8c25199-7893-45d7-800d-57a2c18a3c7c",
                      "name": "New_VPN_Community_Star_1",
                      "type": "vpn-community-star",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      },
                      "meta-info": {
                        "lock": "locked by current session",
                        "validation-state": "ok",
                        "last-modify-time": {
                          "posix": 1482231173231,
                          "iso-8601": "2016-12-20T12:52+0200"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1482228564753,
                          "iso-8601": "2016-12-20T12:09+0200"
                        },
                        "creator": "aa"
                      },
                      "tags": [],
                      "read-only": false,
                      "comments": "",
                      "color": "black",
                      "icon": "VPNCommunities/Star",
                      "use-shared-secret": false,
                      "encryption-method": "ikev2 only",
                      "encryption-suite": "custom",
                      "ike-phase-1": {
                        "encryption-algorithm": "aes-128",
                        "diffie-hellman-group": "group 19",
                        "data-integrity": "sha1"
                      },
                      "ike-phase-2": {
                        "encryption-algorithm": "aes-gcm-128",
                        "data-integrity": "aes-xcbc"
                      },
                      "center-gateways": [
                        {
                          "uid": "049bbebf-46cf-454a-999c-45bf80a29075",
                          "name": "Second_Security_Gateway",
                          "type": "simple-gateway",
                          "domain": {
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User",
                            "domain-type": "domain"
                          },
                          "meta-info": {
                            "lock": "locked by current session",
                            "validation-state": "ok",
                            "last-modify-time": {
                              "posix": 1482228560514,
                              "iso-8601": "2016-12-20T12:09+0200"
                            },
                            "last-modifier": "aa",
                            "creation-time": {
                              "posix": 1482228169047,
                              "iso-8601": "2016-12-20T12:02+0200"
                            },
                            "creator": "aa"
                          },
                          "tags": [],
                          "read-only": false,
                          "comments": "",
                          "color": "black",
                          "icon": "NetworkObjects/CheckPoint/GWs/xGW_CP",
                          "groups": [],
                          "ipv4-address": "1.1.1.1",
                          "dynamic-ip": false,
                          "version": "R80",
                          "os-name": "Gaia",
                          "hardware": "Open server",
                          "sic-name": "",
                          "sic-state": "uninitialized",
                          "interfaces": [],
                          "firewall": true,
                          "firewall-settings": {
                            "auto-maximum-limit-for-concurrent-connections": true,
                            "maximum-limit-for-concurrent-connections": 25000,
                            "auto-calculate-connections-hash-table-size-and-memory-pool": true,
                            "connections-hash-size": 131072,
                            "memory-pool-size": 6,
                            "maximum-memory-pool-size": 30
                          },
                          "vpn": true,
                          "vpn-settings": {
                            "maximum-concurrent-ike-negotiations": 1000,
                            "maximum-concurrent-tunnels": 10000
                          },
                          "application-control": false,
                          "url-filtering": false,
                          "data-awareness": false,
                          "ips": false,
                          "anti-bot": false,
                          "anti-virus": false,
                          "threat-emulation": false,
                          "save-logs-locally": false,
                          "send-alerts-to-server": [
                            "hugo1-take-264"
                          ],
                          "send-logs-to-server": [
                            "hugo1-take-264"
                          ],
                          "send-logs-to-backup-server": [],
                          "logs-settings": {
                            "rotate-log-by-file-size": false,
                            "rotate-log-file-size-threshold": 1000,
                            "rotate-log-on-schedule": false,
                            "alert-when-free-disk-space-below-metrics": "mbytes",
                            "alert-when-free-disk-space-below": true,
                            "alert-when-free-disk-space-below-threshold": 20,
                            "alert-when-free-disk-space-below-type": "popup alert",
                            "delete-when-free-disk-space-below-metrics": "mbytes",
                            "delete-when-free-disk-space-below": true,
                            "delete-when-free-disk-space-below-threshold": 5000,
                            "before-delete-keep-logs-from-the-last-days": false,
                            "before-delete-keep-logs-from-the-last-days-threshold": 0,
                            "before-delete-run-script": false,
                            "before-delete-run-script-command": "",
                            "stop-logging-when-free-disk-space-below-metrics": "mbytes",
                            "stop-logging-when-free-disk-space-below": false,
                            "stop-logging-when-free-disk-space-below-threshold": 100,
                            "reject-connections-when-free-disk-space-below-threshold": false,
                            "reserve-for-packet-capture-metrics": "mbytes",
                            "reserve-for-packet-capture-threshold": 500,
                            "delete-index-files-when-index-size-above-metrics": "mbytes",
                            "delete-index-files-when-index-size-above": false,
                            "delete-index-files-when-index-size-above-threshold": 100000,
                            "delete-index-files-older-than-days": false,
                            "delete-index-files-older-than-days-threshold": 14,
                            "forward-logs-to-log-server": false,
                            "perform-log-rotate-before-log-forwarding": false,
                            "update-account-log-every": 3600,
                            "detect-new-citrix-ica-application-names": false,
                            "turn-on-qos-logging": true
                          }
                        }
                      ],
                      "satellite-gateways": [],
                      "mesh-center-gateways": false
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-threat-rule": {
      "post": {
        "tags": [
          "ThreatRule"
        ],
        "operationId": "addThreatRule",
        "description": "The parameters and request body are for method: addThreatRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "enabled": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "install-on": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "source": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "source-negate": {
                      "type": "boolean"
                    },
                    "destination": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "destination-negate": {
                      "type": "boolean"
                    },
                    "service": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "service-negate": {
                      "type": "boolean"
                    },
                    "protected-scope": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "protected-scope-negate": {
                      "type": "boolean"
                    },
                    "name": {
                      "type": "string"
                    },
                    "track": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    },
                    "track-settings": {
                      "type": "object",
                      "properties": {
                        "packet-capture": {
                          "type": "boolean"
                        }
                      }
                    },
                    "action": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "30c77c86-42ca-401a-a550-b5e49f5b1fff",
                  "enabled": true,
                  "comments": "",
                  "folder": {
                    "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1435739620963,
                      "iso-8601": "2015-07-01T11:33+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1435739620187,
                      "iso-8601": "2015-07-01T11:33+0300"
                    },
                    "creator": "aa"
                  },
                  "install-on": [
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "Global",
                      "name": "Policy Targets",
                      "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                    }
                  ],
                  "source": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "source-negate": false,
                  "destination": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "destination-negate": false,
                  "service": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "service-negate": false,
                  "protected-scope": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "address-range",
                      "name": "All_Internet",
                      "uid": "62c2030b-d590-4f47-b274-c3a76ed18376"
                    }
                  ],
                  "protected-scope-negate": false,
                  "name": "First threat rule",
                  "track": {
                    "folder": {
                      "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                      "name": "Global Objects"
                    },
                    "domain": {
                      "domain-type": "data domain",
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data"
                    },
                    "type": "",
                    "name": "None",
                    "uid": "fb4e70c5-f8dc-4ab4-aa58-3613b3827826"
                  },
                  "track-settings": {
                    "packet-capture": true
                  },
                  "action": {
                    "folder": {
                      "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                      "name": "Global Objects"
                    },
                    "domain": {
                      "domain-type": "data domain",
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data"
                    },
                    "type": "threat-profile",
                    "name": "Recommended_Profile",
                    "uid": "44b83c65-e73c-4d63-aa55-4cdcea4a6d4b"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-rulebase": {
      "post": {
        "tags": [
          "ThreatRule"
        ],
        "operationId": "showThreatRulebase",
        "description": "The parameters and request body are for method: showThreatRulebase. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "name": {
                      "type": "string"
                    },
                    "uid": {
                      "type": "string"
                    },
                    "rulebase": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "enabled": {
                            "type": "boolean"
                          },
                          "comments": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "meta-info": {
                            "type": "object",
                            "properties": {
                              "lock": {
                                "type": "string"
                              },
                              "validation-state": {
                                "type": "string"
                              },
                              "read-only": {
                                "type": "boolean"
                              },
                              "last-modify-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "last-modifier": {
                                "type": "string"
                              },
                              "creation-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "creator": {
                                "type": "string"
                              }
                            }
                          },
                          "install-on": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "domain": {
                                  "type": "object",
                                  "properties": {
                                    "domain-type": {
                                      "type": "string"
                                    },
                                    "uid": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "type": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": "string"
                                },
                                "uid": {
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "source": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "domain": {
                                  "type": "object",
                                  "properties": {
                                    "domain-type": {
                                      "type": "string"
                                    },
                                    "uid": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "type": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": "string"
                                },
                                "uid": {
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "source-negate": {
                            "type": "boolean"
                          },
                          "destination": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "domain": {
                                  "type": "object",
                                  "properties": {
                                    "domain-type": {
                                      "type": "string"
                                    },
                                    "uid": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "type": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": "string"
                                },
                                "uid": {
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "destination-negate": {
                            "type": "boolean"
                          },
                          "service": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "domain": {
                                  "type": "object",
                                  "properties": {
                                    "domain-type": {
                                      "type": "string"
                                    },
                                    "uid": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "type": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": "string"
                                },
                                "uid": {
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "service-negate": {
                            "type": "boolean"
                          },
                          "protected-scope": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "domain": {
                                  "type": "object",
                                  "properties": {
                                    "domain-type": {
                                      "type": "string"
                                    },
                                    "uid": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "type": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": "string"
                                },
                                "uid": {
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "protected-scope-negate": {
                            "type": "boolean"
                          },
                          "name": {
                            "type": "string"
                          },
                          "track": {
                            "type": "object",
                            "properties": {
                              "domain": {
                                "type": "object",
                                "properties": {
                                  "domain-type": {
                                    "type": "string"
                                  },
                                  "uid": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": "string"
                                  }
                                }
                              },
                              "type": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              }
                            }
                          },
                          "track-settings": {
                            "type": "object",
                            "properties": {
                              "packet-capture": {
                                "type": "boolean"
                              }
                            }
                          },
                          "action": {
                            "type": "object",
                            "properties": {
                              "domain": {
                                "type": "object",
                                "properties": {
                                  "domain-type": {
                                    "type": "string"
                                  },
                                  "uid": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": "string"
                                  }
                                }
                              },
                              "type": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              }
                            }
                          },
                          "exceptions": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "domain": {
                                  "type": "object",
                                  "properties": {
                                    "domain-type": {
                                      "type": "string"
                                    },
                                    "uid": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "type": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": "string"
                                },
                                "uid": {
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "rule-number": {
                            "type": "number"
                          },
                          "type": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 4,
                  "to": 5,
                  "total": 6,
                  "name": "string",
                  "uid": "string",
                  "rulebase": [
                    {
                      "uid": "e348f8f5-ef7c-4824-9b85-4000ce0df964",
                      "enabled": true,
                      "comments": "",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "read-only": false,
                        "last-modify-time": {
                          "posix": 1445233508467,
                          "iso-8601": "2015-10-19T08:45+0300"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1444909091900,
                          "iso-8601": "2015-10-15T14:38+0300"
                        },
                        "creator": "aa"
                      },
                      "install-on": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "Global",
                          "name": "Policy Targets",
                          "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                        }
                      ],
                      "source": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "source-negate": false,
                      "destination": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "destination-negate": false,
                      "service": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "service-negate": false,
                      "protected-scope": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "protected-scope-negate": false,
                      "name": "rule1",
                      "track": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "Global",
                        "name": "Log",
                        "uid": "6c488338-8eec-4103-ad21-cd461ac2c477"
                      },
                      "track-settings": {
                        "packet-capture": true
                      },
                      "action": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "CpmiArmadaNewProfile",
                        "name": "Recommended_Profile",
                        "uid": "44b83c65-e73c-4d63-aa55-4cdcea4a6d4b"
                      },
                      "exceptions": [
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "abc",
                          "uid": "54ed2702-9184-477b-ba35-bb162733f3dc"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception1",
                          "uid": "f99f6d59-e018-4bd6-be15-e385b549e79e"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception2",
                          "uid": "aa42fa65-5eee-4b3d-a532-e1218e5e9326"
                        }
                      ],
                      "rule-number": 1,
                      "type": "rule"
                    },
                    {
                      "uid": "e348f8f5-ef7c-4824-9b85-4000ce0df964",
                      "enabled": true,
                      "comments": "",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "read-only": false,
                        "last-modify-time": {
                          "posix": 1445233508467,
                          "iso-8601": "2015-10-19T08:45+0300"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1444909091900,
                          "iso-8601": "2015-10-15T14:38+0300"
                        },
                        "creator": "aa"
                      },
                      "install-on": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "Global",
                          "name": "Policy Targets",
                          "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                        }
                      ],
                      "source": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "source-negate": false,
                      "destination": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "destination-negate": false,
                      "service": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "service-negate": false,
                      "protected-scope": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "protected-scope-negate": false,
                      "name": "rule1",
                      "track": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "Global",
                        "name": "Log",
                        "uid": "6c488338-8eec-4103-ad21-cd461ac2c477"
                      },
                      "track-settings": {
                        "packet-capture": true
                      },
                      "action": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "CpmiArmadaNewProfile",
                        "name": "Recommended_Profile",
                        "uid": "44b83c65-e73c-4d63-aa55-4cdcea4a6d4b"
                      },
                      "exceptions": [
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "abc",
                          "uid": "54ed2702-9184-477b-ba35-bb162733f3dc"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception1",
                          "uid": "f99f6d59-e018-4bd6-be15-e385b549e79e"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception2",
                          "uid": "aa42fa65-5eee-4b3d-a532-e1218e5e9326"
                        }
                      ],
                      "rule-number": 1,
                      "type": "rule"
                    },
                    {
                      "uid": "e348f8f5-ef7c-4824-9b85-4000ce0df964",
                      "enabled": true,
                      "comments": "",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "read-only": false,
                        "last-modify-time": {
                          "posix": 1445233508467,
                          "iso-8601": "2015-10-19T08:45+0300"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1444909091900,
                          "iso-8601": "2015-10-15T14:38+0300"
                        },
                        "creator": "aa"
                      },
                      "install-on": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "Global",
                          "name": "Policy Targets",
                          "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                        }
                      ],
                      "source": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "source-negate": false,
                      "destination": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "destination-negate": false,
                      "service": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "service-negate": false,
                      "protected-scope": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "protected-scope-negate": false,
                      "name": "rule1",
                      "track": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "Global",
                        "name": "Log",
                        "uid": "6c488338-8eec-4103-ad21-cd461ac2c477"
                      },
                      "track-settings": {
                        "packet-capture": true
                      },
                      "action": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "CpmiArmadaNewProfile",
                        "name": "Recommended_Profile",
                        "uid": "44b83c65-e73c-4d63-aa55-4cdcea4a6d4b"
                      },
                      "exceptions": [
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "abc",
                          "uid": "54ed2702-9184-477b-ba35-bb162733f3dc"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception1",
                          "uid": "f99f6d59-e018-4bd6-be15-e385b549e79e"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception2",
                          "uid": "aa42fa65-5eee-4b3d-a532-e1218e5e9326"
                        }
                      ],
                      "rule-number": 1,
                      "type": "rule"
                    },
                    {
                      "uid": "e348f8f5-ef7c-4824-9b85-4000ce0df964",
                      "enabled": true,
                      "comments": "",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "read-only": false,
                        "last-modify-time": {
                          "posix": 1445233508467,
                          "iso-8601": "2015-10-19T08:45+0300"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1444909091900,
                          "iso-8601": "2015-10-15T14:38+0300"
                        },
                        "creator": "aa"
                      },
                      "install-on": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "Global",
                          "name": "Policy Targets",
                          "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                        }
                      ],
                      "source": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "source-negate": false,
                      "destination": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "destination-negate": false,
                      "service": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "service-negate": false,
                      "protected-scope": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "protected-scope-negate": false,
                      "name": "rule1",
                      "track": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "Global",
                        "name": "Log",
                        "uid": "6c488338-8eec-4103-ad21-cd461ac2c477"
                      },
                      "track-settings": {
                        "packet-capture": true
                      },
                      "action": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "CpmiArmadaNewProfile",
                        "name": "Recommended_Profile",
                        "uid": "44b83c65-e73c-4d63-aa55-4cdcea4a6d4b"
                      },
                      "exceptions": [
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "abc",
                          "uid": "54ed2702-9184-477b-ba35-bb162733f3dc"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception1",
                          "uid": "f99f6d59-e018-4bd6-be15-e385b549e79e"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception2",
                          "uid": "aa42fa65-5eee-4b3d-a532-e1218e5e9326"
                        }
                      ],
                      "rule-number": 1,
                      "type": "rule"
                    },
                    {
                      "uid": "e348f8f5-ef7c-4824-9b85-4000ce0df964",
                      "enabled": true,
                      "comments": "",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "read-only": false,
                        "last-modify-time": {
                          "posix": 1445233508467,
                          "iso-8601": "2015-10-19T08:45+0300"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1444909091900,
                          "iso-8601": "2015-10-15T14:38+0300"
                        },
                        "creator": "aa"
                      },
                      "install-on": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "Global",
                          "name": "Policy Targets",
                          "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                        }
                      ],
                      "source": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "source-negate": false,
                      "destination": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "destination-negate": false,
                      "service": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "service-negate": false,
                      "protected-scope": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "protected-scope-negate": false,
                      "name": "rule1",
                      "track": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "Global",
                        "name": "Log",
                        "uid": "6c488338-8eec-4103-ad21-cd461ac2c477"
                      },
                      "track-settings": {
                        "packet-capture": true
                      },
                      "action": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "CpmiArmadaNewProfile",
                        "name": "Recommended_Profile",
                        "uid": "44b83c65-e73c-4d63-aa55-4cdcea4a6d4b"
                      },
                      "exceptions": [
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "abc",
                          "uid": "54ed2702-9184-477b-ba35-bb162733f3dc"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception1",
                          "uid": "f99f6d59-e018-4bd6-be15-e385b549e79e"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception2",
                          "uid": "aa42fa65-5eee-4b3d-a532-e1218e5e9326"
                        }
                      ],
                      "rule-number": 1,
                      "type": "rule"
                    },
                    {
                      "uid": "e348f8f5-ef7c-4824-9b85-4000ce0df964",
                      "enabled": true,
                      "comments": "",
                      "domain": {
                        "domain-type": "domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "read-only": false,
                        "last-modify-time": {
                          "posix": 1445233508467,
                          "iso-8601": "2015-10-19T08:45+0300"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1444909091900,
                          "iso-8601": "2015-10-15T14:38+0300"
                        },
                        "creator": "aa"
                      },
                      "install-on": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "Global",
                          "name": "Policy Targets",
                          "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                        }
                      ],
                      "source": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "source-negate": false,
                      "destination": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "destination-negate": false,
                      "service": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "service-negate": false,
                      "protected-scope": [
                        {
                          "domain": {
                            "domain-type": "data domain",
                            "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                            "name": "Check Point Data"
                          },
                          "type": "CpmiAnyObject",
                          "name": "Any",
                          "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                        }
                      ],
                      "protected-scope-negate": false,
                      "name": "rule1",
                      "track": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "Global",
                        "name": "Log",
                        "uid": "6c488338-8eec-4103-ad21-cd461ac2c477"
                      },
                      "track-settings": {
                        "packet-capture": true
                      },
                      "action": {
                        "domain": {
                          "domain-type": "data domain",
                          "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                          "name": "Check Point Data"
                        },
                        "type": "CpmiArmadaNewProfile",
                        "name": "Recommended_Profile",
                        "uid": "44b83c65-e73c-4d63-aa55-4cdcea4a6d4b"
                      },
                      "exceptions": [
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "abc",
                          "uid": "54ed2702-9184-477b-ba35-bb162733f3dc"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception1",
                          "uid": "f99f6d59-e018-4bd6-be15-e385b549e79e"
                        },
                        {
                          "domain": {
                            "domain-type": "domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "threat-exception",
                          "name": "exception2",
                          "uid": "aa42fa65-5eee-4b3d-a532-e1218e5e9326"
                        }
                      ],
                      "rule-number": 1,
                      "type": "rule"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-rule": {
      "post": {
        "tags": [
          "ThreatRule"
        ],
        "operationId": "showThreatRule",
        "description": "The parameters and request body are for method: showThreatRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-threat-rule": {
      "post": {
        "tags": [
          "ThreatRule"
        ],
        "operationId": "setThreatRule",
        "description": "The parameters and request body are for method: setThreatRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "enabled": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "install-on": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "source": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "source-negate": {
                      "type": "boolean"
                    },
                    "destination": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "destination-negate": {
                      "type": "boolean"
                    },
                    "service": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "service-negate": {
                      "type": "boolean"
                    },
                    "protected-scope": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "protected-scope-negate": {
                      "type": "boolean"
                    },
                    "name": {
                      "type": "string"
                    },
                    "track": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    },
                    "track-settings": {
                      "type": "object",
                      "properties": {
                        "packet-capture": {
                          "type": "boolean"
                        }
                      }
                    },
                    "action": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "8c929c98-8e69-4dcd-a4aa-208b72ac5cd0",
                  "enabled": true,
                  "comments": "commnet for the first rule",
                  "folder": {
                    "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1435739653026,
                      "iso-8601": "2015-07-01T11:34+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1435739579944,
                      "iso-8601": "2015-07-01T11:32+0300"
                    },
                    "creator": "aa"
                  },
                  "install-on": [
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "Global",
                      "name": "Policy Targets",
                      "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                    }
                  ],
                  "source": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "source-negate": false,
                  "destination": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "destination-negate": false,
                  "service": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "service-negate": false,
                  "protected-scope": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "address-range",
                      "name": "All_Internet",
                      "uid": "62c2030b-d590-4f47-b274-c3a76ed18376"
                    }
                  ],
                  "protected-scope-negate": false,
                  "name": "First threat rule",
                  "track": {
                    "folder": {
                      "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                      "name": "Global Objects"
                    },
                    "domain": {
                      "domain-type": "data domain",
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data"
                    },
                    "type": "",
                    "name": "None",
                    "uid": "fb4e70c5-f8dc-4ab4-aa58-3613b3827826"
                  },
                  "track-settings": {
                    "packet-capture": true
                  },
                  "action": {
                    "folder": {
                      "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                      "name": "/Global Objects"
                    },
                    "domain": {
                      "domain-type": "local domain",
                      "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                      "name": "SMC User"
                    },
                    "type": "threat-profile",
                    "name": "New Profile 1",
                    "uid": "6e2a300e-466b-4fc0-b5ec-7850806b68cb"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-threat-rule": {
      "post": {
        "tags": [
          "ThreatRule"
        ],
        "operationId": "deleteThreatRule",
        "description": "The parameters and request body are for method: deleteThreatRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-threat-exception": {
      "post": {
        "tags": [
          "ThreatException"
        ],
        "operationId": "addThreatException",
        "description": "The parameters and request body are for method: addThreatException. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "enabled": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "install-on": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "source": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "source-negate": {
                      "type": "boolean"
                    },
                    "destination": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "destination-negate": {
                      "type": "boolean"
                    },
                    "service": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "service-negate": {
                      "type": "boolean"
                    },
                    "protected-scope": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "protected-scope-negate": {
                      "type": "boolean"
                    },
                    "protection-or-site": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "name": {
                      "type": "string"
                    },
                    "track": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    },
                    "action": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "73905761-34f2-44f2-9797-d89e4663b806",
                  "enabled": true,
                  "comments": "",
                  "folder": {
                    "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1435739723909,
                      "iso-8601": "2015-07-01T11:35+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1435739723909,
                      "iso-8601": "2015-07-01T11:35+0300"
                    },
                    "creator": "aa"
                  },
                  "install-on": [
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "Global",
                      "name": "Policy Targets",
                      "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                    }
                  ],
                  "source": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "source-negate": false,
                  "destination": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "destination-negate": false,
                  "service": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "service-negate": false,
                  "protected-scope": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "address-range",
                      "name": "All_Internet",
                      "uid": "62c2030b-d590-4f47-b274-c3a76ed18376"
                    }
                  ],
                  "protected-scope-negate": false,
                  "protection-or-site": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "ProtectionShadowObject",
                      "name": "Adware.a",
                      "uid": "4cac7b32-704c-419f-a6e2-a3d2af6836d9"
                    }
                  ],
                  "name": "Exception Rule",
                  "track": {
                    "folder": {
                      "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                      "name": "Check Point Settings"
                    },
                    "domain": {
                      "domain-type": "data domain",
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data"
                    },
                    "type": "Global",
                    "name": "Log",
                    "uid": "6c488338-8eec-4103-ad21-cd461ac2c477"
                  },
                  "action": {
                    "folder": {
                      "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                      "name": "Global Objects"
                    },
                    "domain": {
                      "domain-type": "data domain",
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data"
                    },
                    "type": "CpmiAntimalwareAction",
                    "name": "Detect",
                    "uid": "5d5500c7-bdcb-42eb-bb49-ad4ee802f62c"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-rule-exception-rulebase": {
      "post": {
        "tags": [
          "ThreatException"
        ],
        "operationId": "showThreatRuleExceptionRulebase",
        "description": "The parameters and request body are for method: showThreatRuleExceptionRulebase. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "rulebase": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "rulebase": {
                            "type": "object"
                          }
                        }
                      }
                    },
                    "total": {
                      "type": "number"
                    }
                  }
                },
                "example": {
                  "uid": "36d13425-3be6-427f-a7bd-7ddec5248cc1",
                  "name": "ThreatStandardSubRulebase",
                  "rulebase": [
                    {
                      "uid": "685ebbb2-8d9d-4908-9af4-77a823e22e76",
                      "name": "Global Exceptions",
                      "type": "threat-section",
                      "rulebase": []
                    }
                  ],
                  "total": 0
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-exception": {
      "post": {
        "tags": [
          "ThreatException"
        ],
        "operationId": "showThreatException",
        "description": "The parameters and request body are for method: showThreatException. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "enabled": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "install-on": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "source": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "source-negate": {
                      "type": "boolean"
                    },
                    "destination": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "destination-negate": {
                      "type": "boolean"
                    },
                    "service": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "service-negate": {
                      "type": "boolean"
                    },
                    "protected-scope": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "protected-scope-negate": {
                      "type": "boolean"
                    },
                    "protection-or-site": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "name": {
                      "type": "string"
                    },
                    "track": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    },
                    "action": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "7893c79b-4e9f-4ef8-a647-e7ad8be7607d",
                  "enabled": true,
                  "comments": "",
                  "folder": {
                    "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1435741100884,
                      "iso-8601": "2015-07-01T11:58+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1435741100884,
                      "iso-8601": "2015-07-01T11:58+0300"
                    },
                    "creator": "aa"
                  },
                  "install-on": [
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "Global",
                      "name": "Policy Targets",
                      "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                    }
                  ],
                  "source": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "source-negate": false,
                  "destination": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "destination-negate": false,
                  "service": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "service-negate": false,
                  "protected-scope": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "address-range",
                      "name": "All_Internet",
                      "uid": "62c2030b-d590-4f47-b274-c3a76ed18376"
                    }
                  ],
                  "protected-scope-negate": false,
                  "protection-or-site": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "ProtectionShadowObject",
                      "name": "Adware.a",
                      "uid": "4cac7b32-704c-419f-a6e2-a3d2af6836d9"
                    }
                  ],
                  "name": "Exception Rule",
                  "track": {
                    "folder": {
                      "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                      "name": "Check Point Settings"
                    },
                    "domain": {
                      "domain-type": "data domain",
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data"
                    },
                    "type": "Global",
                    "name": "Log",
                    "uid": "6c488338-8eec-4103-ad21-cd461ac2c477"
                  },
                  "action": {
                    "folder": {
                      "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                      "name": "Global Objects"
                    },
                    "domain": {
                      "domain-type": "data domain",
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data"
                    },
                    "type": "CpmiAntimalwareAction",
                    "name": "Detect",
                    "uid": "5d5500c7-bdcb-42eb-bb49-ad4ee802f62c"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-threat-exception": {
      "post": {
        "tags": [
          "ThreatException"
        ],
        "operationId": "setThreatException",
        "description": "The parameters and request body are for method: setThreatException. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "enabled": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "install-on": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "source": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "source-negate": {
                      "type": "boolean"
                    },
                    "destination": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "destination-negate": {
                      "type": "boolean"
                    },
                    "service": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "service-negate": {
                      "type": "boolean"
                    },
                    "protected-scope": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "protected-scope-negate": {
                      "type": "boolean"
                    },
                    "protection-or-site": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "name": {
                      "type": "string"
                    },
                    "track": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    },
                    "action": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "uid": "7893c79b-4e9f-4ef8-a647-e7ad8be7607d",
                  "enabled": true,
                  "comments": "",
                  "folder": {
                    "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1435741182373,
                      "iso-8601": "2015-07-01T11:59+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1435741100884,
                      "iso-8601": "2015-07-01T11:58+0300"
                    },
                    "creator": "aa"
                  },
                  "install-on": [
                    {
                      "folder": {
                        "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                        "name": "Check Point Settings"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "Global",
                      "name": "Policy Targets",
                      "uid": "6c488338-8eec-4103-ad21-cd461ac2c476"
                    }
                  ],
                  "source": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "source-negate": false,
                  "destination": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "destination-negate": false,
                  "service": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "data domain",
                        "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                        "name": "Check Point Data"
                      },
                      "type": "CpmiAnyObject",
                      "name": "Any",
                      "uid": "97aeb369-9aea-11d5-bd16-0090272ccb30"
                    }
                  ],
                  "service-negate": false,
                  "protected-scope": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "address-range",
                      "name": "All_Internet",
                      "uid": "62c2030b-d590-4f47-b274-c3a76ed18376"
                    }
                  ],
                  "protected-scope-negate": false,
                  "protection-or-site": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "ProtectionShadowObject",
                      "name": "Adware.a",
                      "uid": "4cac7b32-704c-419f-a6e2-a3d2af6836d9"
                    }
                  ],
                  "name": "Last rule",
                  "track": {
                    "folder": {
                      "uid": "a7a569db-cd04-4f1c-bc8d-94dbfc22b150",
                      "name": "Check Point Settings"
                    },
                    "domain": {
                      "domain-type": "data domain",
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data"
                    },
                    "type": "Global",
                    "name": "Log",
                    "uid": "6c488338-8eec-4103-ad21-cd461ac2c477"
                  },
                  "action": {
                    "folder": {
                      "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39b",
                      "name": "Global Objects"
                    },
                    "domain": {
                      "domain-type": "data domain",
                      "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                      "name": "Check Point Data"
                    },
                    "type": "CpmiAntimalwareAction",
                    "name": "Detect",
                    "uid": "5d5500c7-bdcb-42eb-bb49-ad4ee802f62c"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-threat-exception": {
      "post": {
        "tags": [
          "ThreatException"
        ],
        "operationId": "deleteThreatException",
        "description": "The parameters and request body are for method: deleteThreatException. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-exception-group": {
      "post": {
        "tags": [
          "ThreatExceptionGroup"
        ],
        "operationId": "addExceptionGroup",
        "description": "The parameters and request body are for method: addExceptionGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-exception-group": {
      "post": {
        "tags": [
          "ThreatExceptionGroup"
        ],
        "operationId": "showExceptionGroup",
        "description": "The parameters and request body are for method: showExceptionGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-exception-group": {
      "post": {
        "tags": [
          "ThreatExceptionGroup"
        ],
        "operationId": "setExceptionGroup",
        "description": "The parameters and request body are for method: setExceptionGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-exception-group": {
      "post": {
        "tags": [
          "ThreatExceptionGroup"
        ],
        "operationId": "deleteExceptionGroup",
        "description": "The parameters and request body are for method: deleteExceptionGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-exception-groups": {
      "post": {
        "tags": [
          "ThreatExceptionGroup"
        ],
        "operationId": "showExceptionGroups",
        "description": "The parameters and request body are for method: showExceptionGroups. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-protection": {
      "post": {
        "tags": [
          "ThreatProtection"
        ],
        "operationId": "showThreatProtection",
        "description": "The parameters and request body are for method: showThreatProtection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-threat-protection": {
      "post": {
        "tags": [
          "ThreatProtection"
        ],
        "operationId": "setThreatProtection",
        "description": "The parameters and request body are for method: setThreatProtection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-protections": {
      "post": {
        "tags": [
          "ThreatProtection"
        ],
        "operationId": "showThreatProtections",
        "description": "The parameters and request body are for method: showThreatProtections. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-threat-protections": {
      "post": {
        "tags": [
          "ThreatProtection"
        ],
        "operationId": "addThreatProtections",
        "description": "The parameters and request body are for method: addThreatProtections. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "task-id": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "task-id": "6b2e5c77-0622-4e7f-a9bf-4e1f21899553"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-threat-protections": {
      "post": {
        "tags": [
          "ThreatProtection"
        ],
        "operationId": "deleteThreatProtections",
        "description": "The parameters and request body are for method: deleteThreatProtections. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-threat-profile": {
      "post": {
        "tags": [
          "ThreatProfile"
        ],
        "operationId": "addThreatProfile",
        "description": "The parameters and request body are for method: addThreatProfile. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-profile": {
      "post": {
        "tags": [
          "ThreatProfile"
        ],
        "operationId": "showThreatProfile",
        "description": "The parameters and request body are for method: showThreatProfile. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-threat-profile": {
      "post": {
        "tags": [
          "ThreatProfile"
        ],
        "operationId": "setThreatProfile",
        "description": "The parameters and request body are for method: setThreatProfile. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-threat-profile": {
      "post": {
        "tags": [
          "ThreatProfile"
        ],
        "operationId": "deleteThreatProfile",
        "description": "The parameters and request body are for method: deleteThreatProfile. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-profiles": {
      "post": {
        "tags": [
          "ThreatProfile"
        ],
        "operationId": "showThreatProfiles",
        "description": "The parameters and request body are for method: showThreatProfiles. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-threat-indicator": {
      "post": {
        "tags": [
          "ThreatIndicator"
        ],
        "operationId": "addThreatIndicator",
        "description": "The parameters and request body are for method: addThreatIndicator. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-indicator": {
      "post": {
        "tags": [
          "ThreatIndicator"
        ],
        "operationId": "showThreatIndicator",
        "description": "The parameters and request body are for method: showThreatIndicator. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "action": {
                      "type": "string"
                    },
                    "number-of-observables": {
                      "type": "number"
                    }
                  }
                },
                "example": {
                  "uid": "7c00fba4-978e-4769-acbf-46909b88f45d",
                  "name": "My_Indicator",
                  "type": "threat-indicator",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1493293547036,
                      "iso-8601": "2017-04-27T14:45+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1493293547036,
                      "iso-8601": "2017-04-27T14:45+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "icon": "General/Node",
                  "action": "Ask",
                  "number-of-observables": 1
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-threat-indicator": {
      "post": {
        "tags": [
          "ThreatIndicator"
        ],
        "operationId": "setThreatIndicator",
        "description": "The parameters and request body are for method: setThreatIndicator. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "domain-type": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "read-only": {
                      "type": "boolean"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "action": {
                      "type": "string"
                    },
                    "number-of-observables": {
                      "type": "number"
                    }
                  }
                },
                "example": {
                  "uid": "7c00fba4-978e-4769-acbf-46909b88f45d",
                  "name": "My_Indicator",
                  "type": "threat-indicator",
                  "domain": {
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User",
                    "domain-type": "domain"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "last-modify-time": {
                      "posix": 1493293547036,
                      "iso-8601": "2017-04-27T14:45+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1493293547036,
                      "iso-8601": "2017-04-27T14:45+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "read-only": false,
                  "comments": "",
                  "icon": "General/Node",
                  "action": "Prevent",
                  "number-of-observables": 1
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-threat-indicator": {
      "post": {
        "tags": [
          "ThreatIndicator"
        ],
        "operationId": "deleteThreatIndicator",
        "description": "The parameters and request body are for method: deleteThreatIndicator. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-indicators": {
      "post": {
        "tags": [
          "ThreatIndicator"
        ],
        "operationId": "showThreatIndicators",
        "description": "The parameters and request body are for method: showThreatIndicators. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "indicators": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 3,
                  "total": 3,
                  "indicators": [
                    {
                      "uid": "7c00fba4-978e-4769-acbf-46909b88f45d",
                      "name": "My_Indicator",
                      "type": "threat-indicator",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    },
                    {
                      "uid": "4f797897-3109-43ec-9d07-340b74110f73",
                      "name": "My_Indicator2",
                      "type": "threat-indicator",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    },
                    {
                      "uid": "c3bd4f1e-3df9-4b91-b2d9-5fc66428a520",
                      "name": "My_Indicator3",
                      "type": "threat-indicator",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-threat-layer": {
      "post": {
        "tags": [
          "ThreatLayer"
        ],
        "operationId": "addThreatLayer",
        "description": "The parameters and request body are for method: addThreatLayer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-layer": {
      "post": {
        "tags": [
          "ThreatLayer"
        ],
        "operationId": "showThreatLayer",
        "description": "The parameters and request body are for method: showThreatLayer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-threat-layer": {
      "post": {
        "tags": [
          "ThreatLayer"
        ],
        "operationId": "setThreatLayer",
        "description": "The parameters and request body are for method: setThreatLayer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-threat-layer": {
      "post": {
        "tags": [
          "ThreatLayer"
        ],
        "operationId": "deleteThreatLayer",
        "description": "The parameters and request body are for method: deleteThreatLayer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-threat-layers": {
      "post": {
        "tags": [
          "ThreatLayer"
        ],
        "operationId": "showThreatLayers",
        "description": "The parameters and request body are for method: showThreatLayers. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "threat-layers": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 6,
                  "total": 6,
                  "threat-layers": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "threat-layer",
                      "name": "IPS",
                      "uid": "c6e44726-5195-4c04-a1a8-c4be143118c0"
                    },
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "threat-layer",
                      "name": "L1",
                      "uid": "ec5e08b2-27f3-4099-8965-7d9cd4a48139"
                    },
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "threat-layer",
                      "name": "MyGuiLayer",
                      "uid": "04684635-005a-49fa-8ae4-04bac5f28584"
                    },
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "threat-layer",
                      "name": "New Threat Layer 1",
                      "uid": "0b741d95-77cb-42a7-996a-6239ae9cedef"
                    },
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "threat-layer",
                      "name": "Threat Prevention",
                      "uid": "5899dde7-559b-46f4-bf54-0606e307047d"
                    },
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "threat-layer",
                      "name": "Threat Prevention",
                      "uid": "7c69ed00-4f6d-4215-aa65-abcb4ed2a205"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-ips-update-schedule": {
      "post": {
        "tags": [
          "IPS"
        ],
        "operationId": "showIpsUpdateSchedule",
        "description": "The parameters and request body are for method: showIpsUpdateSchedule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "enabled": {
                      "type": "boolean"
                    },
                    "time": {
                      "type": "string"
                    },
                    "recurrence": {
                      "type": "object",
                      "properties": {
                        "pattern": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "enabled": true,
                  "time": "0:00",
                  "recurrence": {
                    "pattern": "Daily"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-ips-update-schedule": {
      "post": {
        "tags": [
          "IPS"
        ],
        "operationId": "setIpsUpdateScheduleInterval",
        "description": "The parameters and request body are for method: setIpsUpdateScheduleInterval. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "enabled": {
                      "type": "boolean"
                    },
                    "recurrence": {
                      "type": "object",
                      "properties": {
                        "pattern": {
                          "type": "string"
                        },
                        "minutes": {
                          "type": "number"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "enabled": true,
                  "recurrence": {
                    "pattern": "Interval",
                    "minutes": 45
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/run-ips-update": {
      "post": {
        "tags": [
          "IPS"
        ],
        "operationId": "runIpsUpdate",
        "description": "The parameters and request body are for method: runIpsUpdate. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "task-id": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "task-id": "6b2e5c77-0622-4e7f-a9bf-4e1f21899553"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-ips-status": {
      "post": {
        "tags": [
          "IPS"
        ],
        "operationId": "showIpsStatus",
        "description": "The parameters and request body are for method: showIpsStatus. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "last-updated": {
                      "type": "object",
                      "properties": {
                        "posix": {
                          "type": "number"
                        },
                        "iso-8601": {
                          "type": "string"
                        }
                      }
                    },
                    "installed-version": {
                      "type": "string"
                    },
                    "installed-version-creation-time": {
                      "type": "object",
                      "properties": {
                        "posix": {
                          "type": "number"
                        },
                        "iso-8601": {
                          "type": "string"
                        }
                      }
                    },
                    "update-available": {
                      "type": "boolean"
                    },
                    "latest-version": {
                      "type": "string"
                    },
                    "latest-version-creation-time": {
                      "type": "object",
                      "properties": {
                        "posix": {
                          "type": "number"
                        },
                        "iso-8601": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "last-updated": {
                    "posix": 1444285828000,
                    "iso-8601": "2015-10-08T09:30+0300"
                  },
                  "installed-version": "635155796",
                  "installed-version-creation-time": {
                    "posix": 1440928800000,
                    "iso-8601": "2015-08-30T13:00+0300"
                  },
                  "update-available": true,
                  "latest-version": "635156726",
                  "latest-version-creation-time": {
                    "posix": 1444276800000,
                    "iso-8601": "2015-10-08T07:00+0300"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-ips-protection-extended-attribute": {
      "post": {
        "tags": [
          "IPSExtendedAttributes"
        ],
        "operationId": "showIpsProtectionExtendedAttribute",
        "description": "The parameters and request body are for method: showIpsProtectionExtendedAttribute. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "object": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "values": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "object": {
                    "name": "Vulnerability Effect",
                    "uid": "cc35627d-e1ad-d04c-bbc4-87da80602869",
                    "values": [
                      {
                        "name": "Privilege Escalation",
                        "uid": "e23b95b3-4c4b-d046-8868-7c514f7c0856"
                      },
                      {
                        "name": "Variable Manipulation",
                        "uid": "74488737-f644-af44-976f-d553da34f8c6"
                      },
                      {
                        "name": "Cross-Site Scripting",
                        "uid": "5c2a9b1d-16c2-0d47-a807-2c0bc58eb200"
                      },
                      {
                        "name": "Boot Code Dump",
                        "uid": "b760d74f-11c8-2641-b35b-ecd4b3d1354e"
                      },
                      {
                        "name": "Information Disclosure",
                        "uid": "bae691cd-0d3e-824a-8ab5-d10b7cdeff42"
                      },
                      {
                        "name": "File Upload / Access / Execution",
                        "uid": "ca6a3a33-3b7d-df40-9105-478aaa459b9c"
                      },
                      {
                        "name": "Code Execution",
                        "uid": "a9e0c4f4-4557-f740-899e-bbec6f856098"
                      },
                      {
                        "name": "Memory Corruption",
                        "uid": "9b1526d3-14d2-0041-87bb-b2758d326f2f"
                      },
                      {
                        "name": "Directory Traversal",
                        "uid": "7a2af117-0e26-4548-8be4-348e25407101"
                      },
                      {
                        "name": "Authentication Bypass",
                        "uid": "d0e79192-9f67-fd4c-93ff-62d6bbee7f8b"
                      },
                      {
                        "name": "Denial of Service",
                        "uid": "4378886a-9163-f640-bfba-feae3b8ea235"
                      },
                      {
                        "name": "Command Execution",
                        "uid": "422221ba-4294-6b47-8b6b-7ecce8b6ed60"
                      },
                      {
                        "name": "Shell Upload",
                        "uid": "7147fd4f-73a4-6c48-b543-0c399b9b9c9d"
                      },
                      {
                        "name": "Stack Corruption",
                        "uid": "8e221b61-439b-724b-9536-2c6b7cb3cdeb"
                      },
                      {
                        "name": "File Deletion and Overwriting",
                        "uid": "23d10a6b-ae0e-484d-a03f-24408ceb33b1"
                      },
                      {
                        "name": "Cross-Site Request Forgery",
                        "uid": "c38c3bed-aef9-0240-9900-a0173608d883"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-ips-protection-extended-attributes": {
      "post": {
        "tags": [
          "IPSExtendedAttributes"
        ],
        "operationId": "showIpsProtectionExtendedAttributes",
        "description": "The parameters and request body are for method: showIpsProtectionExtendedAttributes. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          },
                          "values": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string"
                                },
                                "uid": {
                                  "type": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 13,
                  "total": 13,
                  "objects": [
                    {
                      "name": "Vulnerability Type",
                      "uid": "b1341cb1-cd64-6349-87a1-d7234de83250",
                      "values": [
                        {
                          "name": "Null Pointer Dereference",
                          "uid": "7d9049c7-f6ca-6747-9583-6f55387b9114"
                        },
                        {
                          "name": "Use After Free",
                          "uid": "6f69c008-11de-f245-b162-c52765f61859"
                        },
                        {
                          "name": "Stack Overflow",
                          "uid": "ed577183-1977-8046-a5a0-598c3ec05853"
                        },
                        {
                          "name": "Injection",
                          "uid": "5500b428-1c1d-a54b-ad7e-f5d80f75139c"
                        },
                        {
                          "name": "Uninitialized Pointer Reference",
                          "uid": "98551750-6c92-f445-b5a7-6bb56dbd9960"
                        },
                        {
                          "name": "Buffer Overflow",
                          "uid": "35e876a9-0c17-f740-8e0e-ba3f2a22e1a6"
                        },
                        {
                          "name": "SQL injection",
                          "uid": "ba4ef83d-2e23-9c40-9b8b-57f93b73d6b7"
                        },
                        {
                          "name": "File Disclosure",
                          "uid": "ed2b0e0f-317c-1a4d-9568-a6680139c1d4"
                        },
                        {
                          "name": "Integer Overflow",
                          "uid": "0534f881-5512-f94f-a86f-a6001876f744"
                        },
                        {
                          "name": "Heap Overflow",
                          "uid": "2ba8843a-a034-394c-9e0d-cae8fc216edf"
                        },
                        {
                          "name": "Buffer Overrun",
                          "uid": "d31679f2-5c91-b64c-a2ae-971512e18a92"
                        },
                        {
                          "name": "Request Forgery",
                          "uid": "991583ba-76ca-b94b-bfe3-bcf21e7a4ff2"
                        },
                        {
                          "name": "Backdoor",
                          "uid": "e3ae6fa4-4429-f640-a2ab-f63ef787f099"
                        },
                        {
                          "name": "Type Confusion",
                          "uid": "9c96306d-2a1f-0f47-98ef-2f0a8d631f24"
                        }
                      ]
                    },
                    {
                      "name": "Threat Year",
                      "uid": "3e28b706-89f2-5b42-975c-d54bf3384a31",
                      "values": [
                        {
                          "name": "2000",
                          "uid": "c0e345c0-acfd-ae41-aa2c-df58c33efbdf"
                        },
                        {
                          "name": "2010",
                          "uid": "f7099df7-0679-554b-99d6-f6f10e38e575"
                        },
                        {
                          "name": "2001",
                          "uid": "74e9addc-13dd-ac49-a100-218034522923"
                        },
                        {
                          "name": "2008",
                          "uid": "5bad9648-e138-b14c-bcf5-55dee71ad42e"
                        },
                        {
                          "name": "1999",
                          "uid": "67c2123e-7b76-1a49-935a-9ba6ba36a283"
                        },
                        {
                          "name": "2015",
                          "uid": "107021f6-2283-df45-8b68-6599361235a4"
                        },
                        {
                          "name": "2007",
                          "uid": "67ed67c8-98f1-1043-ad0c-a9671195a87e"
                        },
                        {
                          "name": "2005",
                          "uid": "61dd57fb-463f-cc4b-826a-936cd15e0d76"
                        },
                        {
                          "name": "2006",
                          "uid": "65f204c7-2881-104e-a823-dc4ff49a453b"
                        },
                        {
                          "name": "2004",
                          "uid": "011eb5d5-fb65-164a-b2eb-def3365586b4"
                        },
                        {
                          "name": "2002",
                          "uid": "01a523e2-35c1-1c4a-8d40-3b2eb5f5f230"
                        },
                        {
                          "name": "2003",
                          "uid": "af4f369e-4d38-224c-9710-b020d9d8498c"
                        },
                        {
                          "name": "2014",
                          "uid": "0f897e7e-a098-6b45-bf23-b8db2342a2c3"
                        },
                        {
                          "name": "2012",
                          "uid": "4ccae1af-6f20-b24f-9e12-bc135e857fb3"
                        },
                        {
                          "name": "2011",
                          "uid": "a475e05f-3d39-0a43-a050-f97cfb81ebde"
                        },
                        {
                          "name": "2009",
                          "uid": "04a903f3-cdbd-184c-a348-98d777c10481"
                        },
                        {
                          "name": "2013",
                          "uid": "2a0cac38-060f-9842-887a-52b07ce61fc2"
                        },
                        {
                          "name": "2016",
                          "uid": "ffbdf41c-a1cb-614f-b7b4-6a14c7f73d08"
                        }
                      ]
                    },
                    {
                      "name": "Vendor",
                      "uid": "b493e6ab-fcbd-6b45-814e-99c8992b4cb6",
                      "values": [
                        {
                          "name": "Symantec",
                          "uid": "8c55544c-58fe-424b-b51c-138aafca55c1"
                        },
                        {
                          "name": "ClamAV",
                          "uid": "ece59078-4ae3-c84f-b258-54423c95f855"
                        },
                        {
                          "name": "Adobe",
                          "uid": "e8cda9be-5173-8645-ab40-8edbb9665d1a"
                        },
                        {
                          "name": "Sun",
                          "uid": "68dfb1f8-c7ea-9141-9b18-573bd6870d76"
                        },
                        {
                          "name": "Norton",
                          "uid": "15e51bf7-88fc-1e48-a116-3a942ba60b71"
                        },
                        {
                          "name": "Citrix",
                          "uid": "33a7e637-dcfe-ad4b-939e-85ed67762bad"
                        },
                        {
                          "name": "Squid",
                          "uid": "56c81427-0ac4-7f4d-aa40-bc39e1cb23f5"
                        },
                        {
                          "name": "Firebird",
                          "uid": "73908040-b758-e844-8de0-0bf26d59e430"
                        },
                        {
                          "name": "BrightStor",
                          "uid": "c4f140f5-956f-5b4f-8d22-8e117415c01c"
                        },
                        {
                          "name": "America Onlin",
                          "uid": "e0898f8e-7ed4-4f4a-9676-df3cd280e283"
                        },
                        {
                          "name": "LANDesk",
                          "uid": "d471e116-fc9c-6e4e-a0f1-4992b2798128"
                        },
                        {
                          "name": "ISC",
                          "uid": "67db58f5-15f0-584b-887b-076ab7f951b9"
                        },
                        {
                          "name": "OpenLDAP",
                          "uid": "6afa9119-1def-7f4f-b05b-13adf2560866"
                        },
                        {
                          "name": "Digium",
                          "uid": "9a091070-cf4f-7444-aed8-091a3dc5b6b0"
                        },
                        {
                          "name": "IpSwitch",
                          "uid": "95ec1bc4-c76d-9541-b742-caf6d16fc5ca"
                        },
                        {
                          "name": "Joomla",
                          "uid": "b9c4a40a-281d-8d4f-accf-0863b5625801"
                        },
                        {
                          "name": "Kaspersky",
                          "uid": "affb1628-da84-1540-8538-4ae3208e3476"
                        },
                        {
                          "name": "WikkaWiki",
                          "uid": "76e3e253-dd0e-0b4e-ba02-6d6cdf2b16a1"
                        },
                        {
                          "name": "McAfee",
                          "uid": "6af7232e-1b8d-4a48-a571-b270b64b66b1"
                        },
                        {
                          "name": "CA",
                          "uid": "57b529b9-9151-f24e-b0e0-8ed3a64ca258"
                        },
                        {
                          "name": "F-Secure",
                          "uid": "4ce56180-86aa-e447-8e3f-0b24e1153232"
                        },
                        {
                          "name": "SAP",
                          "uid": "e0bb101c-fb3c-6f42-bdd2-15fcd20e4b0f"
                        },
                        {
                          "name": "HP",
                          "uid": "119504f8-eb0b-e148-913b-eccb7db63c79"
                        },
                        {
                          "name": "Samba",
                          "uid": "e36e95a3-406c-9945-a9c4-d74f2bd11a9e"
                        },
                        {
                          "name": "MIT",
                          "uid": "8eee5e8b-25e7-3248-bb71-412e023165fd"
                        },
                        {
                          "name": "WebGat",
                          "uid": "bb5b5f5b-abe9-a841-8162-9acbe6ced823"
                        },
                        {
                          "name": "Apple",
                          "uid": "7b7b8c50-8f86-cf4d-98e3-ee6c360ab04c"
                        },
                        {
                          "name": "Technicolor",
                          "uid": "dad17646-ddea-7640-97b9-5763fb460273"
                        },
                        {
                          "name": "Sourcefire",
                          "uid": "b8412d91-4d8f-0144-82cd-b3b6f564b6df"
                        },
                        {
                          "name": "Oracle",
                          "uid": "93296cea-842f-e84c-a800-e6471729cbf0"
                        },
                        {
                          "name": "Trend Micro",
                          "uid": "d4c23239-735a-df40-b1a1-c62085a7f577"
                        },
                        {
                          "name": "Novell",
                          "uid": "7fb2e241-16a6-2841-ab48-5553d2fa91b1"
                        },
                        {
                          "name": "Sielco Sistemi",
                          "uid": "543e1df8-c04f-0349-8312-c8ae52074c58"
                        },
                        {
                          "name": "Sophos",
                          "uid": "6a98b64c-747c-574c-8758-0bc183be2017"
                        },
                        {
                          "name": "SolarWinds",
                          "uid": "630dfb6d-e40f-174e-b145-e25facab279b"
                        },
                        {
                          "name": "Panda",
                          "uid": "7011e6e5-d7b2-0d4c-a4df-b7eeb1804c3b"
                        },
                        {
                          "name": "Google",
                          "uid": "5682b1d3-914a-884c-b5b6-d9cc3bf616cf"
                        },
                        {
                          "name": "Blue Coat",
                          "uid": "11a2deeb-5379-0d43-b177-14d5f6226ac7"
                        },
                        {
                          "name": "CCRP",
                          "uid": "448eff5d-b4a8-6540-8338-af4a7012e109"
                        },
                        {
                          "name": "Microsoft",
                          "uid": "95875a42-87f0-534a-814d-e6a94f4a0656"
                        },
                        {
                          "name": "Veritas",
                          "uid": "34982b87-6b4a-784b-bbbd-98a2a93fde45"
                        },
                        {
                          "name": "IBM",
                          "uid": "ddd50446-7dc7-5743-9221-cedcdef209cd"
                        },
                        {
                          "name": "RealNetworks",
                          "uid": "4a9c0355-f725-c943-8550-dd62ba88432b"
                        },
                        {
                          "name": "Cisco",
                          "uid": "bdf300a3-a32c-9a43-9712-378a38241919"
                        },
                        {
                          "name": "Mozilla",
                          "uid": "f20b3fa5-ac1a-8b4e-a4b9-518e45042a8c"
                        },
                        {
                          "name": "PineApp",
                          "uid": "d2773129-5f10-8042-8974-17a6936d2c38"
                        },
                        {
                          "name": "BitDefender",
                          "uid": "85430bc3-0999-a245-8bf0-76f01aa87a47"
                        },
                        {
                          "name": "Horde",
                          "uid": "f162870b-f920-734d-9964-5169cd64909f"
                        },
                        {
                          "name": "Nagios",
                          "uid": "b7ee0beb-ae29-a842-95de-fd402e92abd4"
                        },
                        {
                          "name": "Apache",
                          "uid": "f0ea0dd7-1e42-1643-967e-5a877f21ea61"
                        },
                        {
                          "name": "Octopus",
                          "uid": "a67f87c1-e705-2644-a2bb-d1cb023a5adf"
                        },
                        {
                          "name": "Bind",
                          "uid": "bee6ba0f-812f-f342-8151-42795e8001dc"
                        },
                        {
                          "name": "None",
                          "uid": "77509676-3dbb-b54d-b03d-b8ebca350cff"
                        },
                        {
                          "name": "Foxit",
                          "uid": "ef5a9353-0880-c54e-b396-d3f29145e572"
                        },
                        {
                          "name": "WordPress",
                          "uid": "a687e55b-be3d-5948-bd65-e4f8e4faf71f"
                        },
                        {
                          "name": "Fujitsu",
                          "uid": "d70c1ecf-cec1-2b46-948a-efd179028e7d"
                        },
                        {
                          "name": "Agilent Technologies",
                          "uid": "2001a903-400d-e645-93f6-9fce14a4cb42"
                        },
                        {
                          "name": "Foreman",
                          "uid": "5d26e848-38f9-9246-857b-c8df35ea4e62"
                        },
                        {
                          "name": "Provideo",
                          "uid": "51c98ad0-6bf1-ce44-81f4-4ae48ba4140e"
                        },
                        {
                          "name": "Iconics",
                          "uid": "2b250e7e-44d2-3745-95b0-1c79b404a87c"
                        },
                        {
                          "name": "nginx",
                          "uid": "4c0fd5b7-0491-fc4a-baab-4b24f1ba320e"
                        },
                        {
                          "name": "Schneider Electric",
                          "uid": "afa8f115-37b6-1442-8cef-4428385c7636"
                        },
                        {
                          "name": "Sunway",
                          "uid": "ac51bc2e-5742-f840-9d31-f64e9de01827"
                        },
                        {
                          "name": "Avaya",
                          "uid": "807e4e5a-aeb9-ad47-896e-54efa1321d53"
                        },
                        {
                          "name": "CSGuestboo",
                          "uid": "01fa167f-d2e0-8742-9d1d-811e90c0a535"
                        },
                        {
                          "name": "3iv",
                          "uid": "a6ff2cb6-ca0d-f548-af1e-0890f80e14d1"
                        },
                        {
                          "name": "GNU",
                          "uid": "f8a89177-a999-6f4d-b288-1f01ff62506d"
                        },
                        {
                          "name": "Plixer",
                          "uid": "4d0f99af-4af3-3f44-a1e2-d4af33a7bbdf"
                        },
                        {
                          "name": "Info-ZIP",
                          "uid": "1ac57087-c894-c74c-b4ac-c41ad3cf7adc"
                        },
                        {
                          "name": "VMWare",
                          "uid": "a293e729-1208-8443-8fe9-8c9d91460212"
                        },
                        {
                          "name": "AlienVault",
                          "uid": "6591e7ef-4e75-ff42-a16e-980438dcb138"
                        },
                        {
                          "name": "GNOME",
                          "uid": "71f84267-7734-c547-a467-7ff83ca7ba8e"
                        },
                        {
                          "name": "Belkin",
                          "uid": "1b53ce8f-8d78-0b47-aaa3-161ec935a347"
                        },
                        {
                          "name": "Tiki",
                          "uid": "10023dbf-ecc6-9042-b3c4-303c9454b8c9"
                        },
                        {
                          "name": "DATAC",
                          "uid": "3a4d953e-8a75-3540-b16e-5e8de0658c3d"
                        },
                        {
                          "name": "Rockwell",
                          "uid": "fe9291ea-8453-3648-939d-829da5abd07c"
                        },
                        {
                          "name": "VideoLAN",
                          "uid": "d2aba659-f8c2-634a-bde3-0b974649ea93"
                        },
                        {
                          "name": "W-Agora",
                          "uid": "3fd13043-1340-4243-9a5c-fdd0ec00e4de"
                        },
                        {
                          "name": "Nullsoft",
                          "uid": "6be31212-fa1b-1c48-917f-cd98f483fb34"
                        },
                        {
                          "name": "Kmint2",
                          "uid": "2a13a388-f710-6d40-9ab3-d8c8b22f3251"
                        },
                        {
                          "name": "Wireshark",
                          "uid": "d41f4acc-ef6e-7c41-8714-d5ca59db892d"
                        },
                        {
                          "name": "Trimble Navigation",
                          "uid": "4f9a4dbe-3c2e-f344-92d5-c69ee52e089a"
                        },
                        {
                          "name": "activeCollab",
                          "uid": "cbab2697-a0a7-594f-8b10-335f2f01ebf2"
                        },
                        {
                          "name": "3S Smart Software Solutions",
                          "uid": "61539037-c329-7745-9ece-fc4aa38c9ca6"
                        },
                        {
                          "name": "SSH",
                          "uid": "6cff6d0c-58e4-9b47-83e9-0ee69b3cb504"
                        },
                        {
                          "name": "GIMP",
                          "uid": "d741905b-d94b-5d4d-b0ae-106e5b73a341"
                        },
                        {
                          "name": "w3af",
                          "uid": "f9cd0946-95b1-2b41-a38b-c862eabfbb25"
                        },
                        {
                          "name": "SoftNews Media Group",
                          "uid": "c3d9492e-97e8-144c-bc24-aec2bc140f59"
                        },
                        {
                          "name": "Cogent",
                          "uid": "f04656fe-82ca-994e-9991-a6403e4a09c8"
                        },
                        {
                          "name": "Yokogawa",
                          "uid": "1b49045f-af93-cf40-9253-f1c280813b1d"
                        },
                        {
                          "name": "PointDev",
                          "uid": "38b34c9c-02b3-204d-a95a-6c2e84bf5d41"
                        },
                        {
                          "name": "Morfeu",
                          "uid": "5955ba94-d27d-4545-a929-e74a2f31f1aa"
                        },
                        {
                          "name": "Siemens",
                          "uid": "61c841ad-56af-5748-bb33-f5d1ad37deba"
                        },
                        {
                          "name": "BakBone",
                          "uid": "8e478c77-d943-974c-98e8-49914f0f7b91"
                        },
                        {
                          "name": "RockwellAutomation",
                          "uid": "2c01e313-0fea-b34f-aafe-7e3becf2444d"
                        },
                        {
                          "name": "EMC",
                          "uid": "f48f8c5d-16fe-1a49-b84b-9814be64927a"
                        },
                        {
                          "name": "Multiple Vendors",
                          "uid": "922b6063-1a67-5345-b4b9-e6f39472e51a"
                        },
                        {
                          "name": "UltraVNC",
                          "uid": "8706954d-bf36-444b-8a08-9a2d1b91b342"
                        },
                        {
                          "name": "WinFT",
                          "uid": "e0cb114b-2992-b34a-83a0-4d6e96a233d3"
                        },
                        {
                          "name": "Attachmate",
                          "uid": "f1e01ae5-3b94-6444-8b1d-183ca30a79c0"
                        },
                        {
                          "name": "Zend Technologies",
                          "uid": "a1bd7843-1215-884b-b055-7a807b61342b"
                        },
                        {
                          "name": "WinFTP",
                          "uid": "a8ffdca7-5e75-b442-8517-b395f5385cb9"
                        },
                        {
                          "name": "Macrovision",
                          "uid": "5fc20e19-c0da-564a-b4d2-7993625ade50"
                        },
                        {
                          "name": "Broadwin",
                          "uid": "b34425a5-d30b-b34d-901c-99d2f70dffe2"
                        },
                        {
                          "name": "OpenSSL",
                          "uid": "87bd7daa-2ca6-9d40-8364-18cbded1b5bf"
                        },
                        {
                          "name": "Working Resources Inc.",
                          "uid": "c57d58ac-6436-4946-b2cb-b24c8e278ebc"
                        },
                        {
                          "name": "Microgaming",
                          "uid": "3a72aadb-dae0-4048-ae5f-91076aa2e1d6"
                        },
                        {
                          "name": "Rocket",
                          "uid": "54e5d3e6-fb09-2344-b842-ec2a235e44ca"
                        },
                        {
                          "name": "Drupal",
                          "uid": "b083f34c-372a-bc44-8821-2b29e64e4360"
                        },
                        {
                          "name": "ACD Systems",
                          "uid": "ca554f8e-042d-f84a-ad21-1570a4e15bf4"
                        },
                        {
                          "name": "Sybase",
                          "uid": "18353d46-887d-434f-91ce-9cfa1ba5507b"
                        },
                        {
                          "name": "Skype",
                          "uid": "4d16fe97-4874-c344-88e7-860c7e1e7063"
                        },
                        {
                          "name": "Advantech",
                          "uid": "c329b971-3b69-7d4b-ae29-ac426c08d1b8"
                        },
                        {
                          "name": "Opera",
                          "uid": "1db21bb5-0a64-4d44-8c36-a34793c16467"
                        },
                        {
                          "name": "Ingres",
                          "uid": "561137a7-3331-1547-bb83-b61214c14457"
                        },
                        {
                          "name": "TurboSoft",
                          "uid": "9008d477-3762-5547-a989-5af2458592eb"
                        },
                        {
                          "name": "Unisys",
                          "uid": "90247457-4cd8-7148-ac99-00b5bf6a63bd"
                        },
                        {
                          "name": "Wim Fleischhauer",
                          "uid": "dfc80067-5cef-3446-94c2-6221f3060f10"
                        },
                        {
                          "name": "Youngzsoft",
                          "uid": "364f5b58-6ce9-5246-98b6-54f29ba5116d"
                        },
                        {
                          "name": "MySQL",
                          "uid": "1179341f-03d0-2246-a05a-5c8ee2433ddd"
                        },
                        {
                          "name": "Borland",
                          "uid": "4ffd5b94-092b-094d-ab80-8f67de529b94"
                        },
                        {
                          "name": "Monkey",
                          "uid": "8a2bb1c5-6ac5-fa47-bffb-ace6417720d6"
                        },
                        {
                          "name": "Edraw",
                          "uid": "1397d825-0b32-c148-bfe8-0eb4e6db0273"
                        },
                        {
                          "name": "FreeBSD",
                          "uid": "de22c831-3783-4744-bc01-6eaf2ac8666d"
                        },
                        {
                          "name": "Red Hat",
                          "uid": "44c412be-5271-7644-9e0a-1cdd2e778457"
                        },
                        {
                          "name": "Yahoo",
                          "uid": "03c91762-5eee-9547-83cb-739a33679b1f"
                        },
                        {
                          "name": "Ruby on Rails",
                          "uid": "feb461ab-ca22-7540-86a4-c3824361dd17"
                        },
                        {
                          "name": "University Of Cambridge",
                          "uid": "bb3fad93-0f9a-3f4f-9b6f-d510d9c9b4f5"
                        },
                        {
                          "name": "Sysax",
                          "uid": "b2bd9eca-27b2-6046-bea4-b54808a504f7"
                        },
                        {
                          "name": "Dell",
                          "uid": "3785c394-7294-4c45-b1b2-a937ad649fee"
                        },
                        {
                          "name": "Macromedia",
                          "uid": "2f0c6066-dd08-ca4b-9baf-690eb9306b74"
                        },
                        {
                          "name": "XOOPS",
                          "uid": "acee4064-aacb-464e-b396-eade5a59c685"
                        },
                        {
                          "name": "Netscape",
                          "uid": "1c0e7be9-c64a-704a-acee-30b4026a09ef"
                        },
                        {
                          "name": "Alt-N Technologies",
                          "uid": "1984648a-1a01-d343-9735-fc69b35f231a"
                        },
                        {
                          "name": "Karjasoft",
                          "uid": "e225beb7-a644-6440-ab10-180f178134ef"
                        },
                        {
                          "name": "ImageMagick",
                          "uid": "ae7db456-3bdc-224b-a24b-66a18155b1e2"
                        },
                        {
                          "name": "ACDSee",
                          "uid": "b14a42f7-661a-5145-91f4-2e2bdd0f368d"
                        },
                        {
                          "name": "AutoSec Tools",
                          "uid": "d24483d9-4d9e-0e41-b3ed-250b47ab92af"
                        },
                        {
                          "name": "Autodesk",
                          "uid": "7c488406-a4eb-e84b-84ee-1d2e01e89331"
                        },
                        {
                          "name": "CoolPDF",
                          "uid": "9e680057-088d-a64d-89bb-07fec3a7f6c8"
                        },
                        {
                          "name": "ACGVclick",
                          "uid": "020ea4e1-9c51-ec4f-aea3-547dfc22076d"
                        },
                        {
                          "name": "Interactive Data",
                          "uid": "6742ddad-715a-2542-a7af-af63ab56951b"
                        },
                        {
                          "name": "Altnet",
                          "uid": "fa9ccf0a-e846-9847-862a-349a164f19dd"
                        },
                        {
                          "name": "Vortex",
                          "uid": "3c0b82a1-6a83-c543-a8d4-2117e800b8fc"
                        },
                        {
                          "name": "Lexmark",
                          "uid": "30929ff0-c81d-764c-ba80-87e8e9ef9ca3"
                        },
                        {
                          "name": "SCADA",
                          "uid": "b7fa8b4f-2e50-664a-9eb0-eaecb05c95bf"
                        },
                        {
                          "name": "Artifex Software",
                          "uid": "5563a088-cee5-3548-a335-870ed09f0f0e"
                        },
                        {
                          "name": "RealVNC",
                          "uid": "6ac078b1-ed40-4742-be7f-812a2979cf4c"
                        },
                        {
                          "name": "Test Signal Viewer",
                          "uid": "e136c26f-5755-cb49-b797-8e6900ffd1ad"
                        },
                        {
                          "name": "IMAP Servers",
                          "uid": "8ee6963a-6498-0243-bee5-87e86f8ccebf"
                        },
                        {
                          "name": "Photostockplus",
                          "uid": "de260f99-f422-bf47-9def-3499374d1a51"
                        },
                        {
                          "name": "Husdawg, LLC",
                          "uid": "4fc3a70d-8551-834f-b9ab-342eacc249b4"
                        },
                        {
                          "name": "Web Servers",
                          "uid": "82e9225a-811a-f345-b077-c968e00323ac"
                        },
                        {
                          "name": "Not Applicable",
                          "uid": "d2d76bb6-c823-7742-91a4-ea3ab7e0ef4e"
                        },
                        {
                          "name": "AOL",
                          "uid": "43ad4dfd-d8a9-1845-8bc5-fa096b35a3c3"
                        },
                        {
                          "name": "Avast",
                          "uid": "92ee726e-2d04-ef41-bd7e-ea059ef794af"
                        },
                        {
                          "name": "W3",
                          "uid": "0c82886b-fe1f-794a-ad88-a7ede8a8fd37"
                        },
                        {
                          "name": "Avira",
                          "uid": "5e1ab1f1-8e3d-0343-b570-c4c118a071e2"
                        },
                        {
                          "name": "America Online",
                          "uid": "1b804483-f518-d34e-99b5-d30d484f2b78"
                        },
                        {
                          "name": "Gallery Project",
                          "uid": "f9be8735-d2e0-dd4e-b3a4-bc88b932e9fb"
                        },
                        {
                          "name": "ActFax",
                          "uid": "5cb262e4-e360-4f4b-97ce-4ef4f2e13c5f"
                        },
                        {
                          "name": "Ironmountain",
                          "uid": "98687985-2539-ec42-a8e7-8722337d3b35"
                        },
                        {
                          "name": "Knox Software",
                          "uid": "0c4cf07d-5afb-e941-aad9-945c845581df"
                        },
                        {
                          "name": "AWstats",
                          "uid": "59976a32-e510-c04e-8f9b-fe76edd572ec"
                        },
                        {
                          "name": "ActualScripts",
                          "uid": "14c1c24b-31e0-d249-9986-73929df9409b"
                        },
                        {
                          "name": "Gecad",
                          "uid": "8b8bb4d1-a6ab-744a-b070-9154ddb29051"
                        },
                        {
                          "name": "Reprise",
                          "uid": "4e53cf98-0749-7e43-a094-09961318610a"
                        },
                        {
                          "name": "Radical Designs",
                          "uid": "1df89073-dd7b-5b49-9cfb-5b2dc4beaa94"
                        },
                        {
                          "name": "Avid",
                          "uid": "63c6d156-afe9-5748-87b8-14d680fb0aa3"
                        },
                        {
                          "name": "Labtam",
                          "uid": "7993147f-0dde-3a4d-82be-9fe9c491ac95"
                        },
                        {
                          "name": "Johannes Gijsbers",
                          "uid": "c1fa9cee-6f5d-894a-9de1-09ac5db90da0"
                        },
                        {
                          "name": "Xmedien",
                          "uid": "5448dbc6-5f7b-8b4a-b329-206325466e21"
                        },
                        {
                          "name": "Amlib",
                          "uid": "e84f1240-128c-654d-b62e-74c9705121d4"
                        },
                        {
                          "name": "PcVue",
                          "uid": "6da0f2ac-0b6c-bf42-a010-627c1272cfa5"
                        },
                        {
                          "name": "Beckhoff",
                          "uid": "426885c8-f683-3748-92a1-2472d121d3ed"
                        },
                        {
                          "name": "Aladdin Knowledge System Ltd",
                          "uid": "14164c2f-d8f9-6b43-ac28-84bab16b9405"
                        },
                        {
                          "name": "Bigantsoft",
                          "uid": "999e4f00-5e82-d04c-b7c1-fcd722929432"
                        },
                        {
                          "name": "ActiveCampaign",
                          "uid": "79c0f12c-640a-7a49-a43a-d43f87511246"
                        },
                        {
                          "name": "Benders Calendar",
                          "uid": "fc2e5aa9-80c6-b54f-b5f2-2293c40f9d00"
                        },
                        {
                          "name": "Anonymous",
                          "uid": "2f7de326-c393-b14f-b5a4-7a2fb5b88fb0"
                        },
                        {
                          "name": "Saleslogix Corporation",
                          "uid": "c4589d83-b901-ed4f-a9f2-d30eaf9b0bf6"
                        },
                        {
                          "name": "Aurigma",
                          "uid": "4d0ef263-32e7-e84d-b832-1d448cf2db7b"
                        },
                        {
                          "name": "7-Zip",
                          "uid": "70b93f31-9268-8f43-91b7-ea02b82734a1"
                        },
                        {
                          "name": "ASUS",
                          "uid": "bfcc5a01-892f-7146-aee6-37bae963714b"
                        },
                        {
                          "name": "AdaptWeb",
                          "uid": "ba8c52a8-54da-b940-a5f7-03e00fd914c3"
                        },
                        {
                          "name": "Ajax",
                          "uid": "e7ba57db-0d64-bc47-93bf-81b954df7084"
                        },
                        {
                          "name": "Barracuda Networks",
                          "uid": "ba26483c-66b0-fc49-9038-88f6ac460631"
                        },
                        {
                          "name": "3Com",
                          "uid": "2c452d6f-357d-2148-b964-da2e8e5351eb"
                        },
                        {
                          "name": "Alacatel-Lucent",
                          "uid": "aa3dd7a1-c748-694b-b59d-aec03b16ae9e"
                        },
                        {
                          "name": "Asterisk",
                          "uid": "db0ce758-f6c5-a148-873a-ffea0d163ee1"
                        },
                        {
                          "name": "Awingsoft",
                          "uid": "ef4022e0-2e50-1f44-a316-ca121ba9d6a9"
                        },
                        {
                          "name": "Atrium Software",
                          "uid": "ba7b5963-2a20-2a4d-af56-9d483ad46a75"
                        },
                        {
                          "name": "Comscripts",
                          "uid": "0c0c6a70-6316-7647-b1c9-35e25db41ca4"
                        },
                        {
                          "name": "AJ Square",
                          "uid": "c1637a72-12c9-c347-b030-e9d428e946cd"
                        },
                        {
                          "name": "Basilic",
                          "uid": "4ac27272-d0b2-1649-9fec-c45e67d11c24"
                        },
                        {
                          "name": "Myiosoft",
                          "uid": "c30a8c6b-63ca-6b44-9f32-2109a46e2d14"
                        },
                        {
                          "name": "Arcserve",
                          "uid": "0d70cd64-825c-a54f-adf2-6eed0cf1f11c"
                        },
                        {
                          "name": "Bea",
                          "uid": "8b948e1c-1c54-4f4b-9b5f-0f60c8fdbeba"
                        },
                        {
                          "name": "Axis",
                          "uid": "dbfd1113-0220-4443-9aa8-15aa7f6223d7"
                        },
                        {
                          "name": "appRain",
                          "uid": "079a5e55-2ea6-9d4c-b59d-94f9da1a2453"
                        },
                        {
                          "name": "Akarru",
                          "uid": "8d606e79-07dd-d24c-b4ad-630abc6caf4b"
                        },
                        {
                          "name": "Acunetix",
                          "uid": "331d2fcd-5758-624c-9db0-9e09f4445954"
                        },
                        {
                          "name": "Bennet-Tec",
                          "uid": "1d5c65a2-ba86-9247-b794-d1335d7a3112"
                        },
                        {
                          "name": "Digitalvidhya",
                          "uid": "8ed4c3c9-55ad-3d43-9218-993257587ef0"
                        },
                        {
                          "name": "Webteh",
                          "uid": "e5bd8687-1083-594a-98f7-e10dc72f916e"
                        },
                        {
                          "name": "Dameware Development",
                          "uid": "0a14b1e5-8f70-d14b-bc48-d7c85ddb7acd"
                        },
                        {
                          "name": "D-Link",
                          "uid": "74ae0732-6a41-1949-9e32-c3bbbaf0499e"
                        },
                        {
                          "name": "James Ashton",
                          "uid": "9cc3eed7-64d4-5a49-80ef-59efb8f4c9c5"
                        },
                        {
                          "name": "Jpchacha",
                          "uid": "a5253e73-b34f-f34a-b702-083442cef31a"
                        },
                        {
                          "name": "Bitweaver",
                          "uid": "680dc15d-49e3-8d4f-9004-ed6fae5bd661"
                        },
                        {
                          "name": "Creative",
                          "uid": "afcfff03-849d-1d43-aa0f-fe9672aa92f8"
                        },
                        {
                          "name": "Chicken Of The VNC",
                          "uid": "a67fc295-11f2-7249-95a5-805388aff1b2"
                        },
                        {
                          "name": "CGIScript.net",
                          "uid": "5f91e4e3-6307-a14a-b433-b1ad6e74902e"
                        },
                        {
                          "name": "Niels Provos",
                          "uid": "40d8e420-2bb9-3746-97c8-9ddec90d7368"
                        },
                        {
                          "name": "Corel",
                          "uid": "cedb38e8-a659-224a-8469-78c253d8c43b"
                        },
                        {
                          "name": "Easy Software Products",
                          "uid": "fc66b87b-1efc-844a-bf90-8b18c089db1a"
                        },
                        {
                          "name": "Phanatic Softwares",
                          "uid": "b1a78cec-c48e-3349-9f60-46dc69a4f183"
                        },
                        {
                          "name": "CastilloBueno",
                          "uid": "9b0b005e-b2f4-c44f-8a9f-010010d7a44a"
                        },
                        {
                          "name": "Csounds",
                          "uid": "9d8b9530-f3fa-2a4c-b573-f8c6094f6891"
                        },
                        {
                          "name": "CHETCPASSWD",
                          "uid": "6bbf9b7a-4f82-9b47-9282-fd516dbc862c"
                        },
                        {
                          "name": "Bit 5 Blog",
                          "uid": "4e847d53-743a-554a-9f3f-659cd02e7216"
                        },
                        {
                          "name": "CYME",
                          "uid": "49c49fc2-4da3-3841-a5a4-6edb4df7b6cd"
                        },
                        {
                          "name": "Check Point",
                          "uid": "e1792ddf-75a7-c94f-9063-6619e27a4753"
                        },
                        {
                          "name": "DivX",
                          "uid": "c3c38298-4357-524b-83f2-da5369e3012a"
                        },
                        {
                          "name": "CoolPlayer",
                          "uid": "2915500b-b9df-7847-835d-24b42ec906ce"
                        },
                        {
                          "name": "Colloquy",
                          "uid": "b5b2375b-207e-a341-aa92-6b808dabf76a"
                        },
                        {
                          "name": "Citect",
                          "uid": "44be86c7-e40f-7a43-92d2-d2cb8665d3b8"
                        },
                        {
                          "name": "Comet",
                          "uid": "c6863250-9a86-6f48-a819-29320ed3a103"
                        },
                        {
                          "name": "Daum Communications",
                          "uid": "a50b0695-bd32-004a-a0e3-398ed3e654f2"
                        },
                        {
                          "name": "CommuniGate Systems",
                          "uid": "98dfd0f0-1f01-e748-b1a7-25d2afacf131"
                        },
                        {
                          "name": "Roy Marples",
                          "uid": "b2c9cd62-06db-7c48-a943-89f7d29f0943"
                        },
                        {
                          "name": "Joyent",
                          "uid": "ebfd1405-13c6-aa48-bf03-c1fb889089af"
                        },
                        {
                          "name": "Contaware",
                          "uid": "07a32fc2-0e9f-e041-b951-ca07494bad4f"
                        },
                        {
                          "name": "CVS",
                          "uid": "8c415af2-d1a3-3b43-8fa9-6b9fe7beb82f"
                        },
                        {
                          "name": "Cybozu",
                          "uid": "151fd31f-1e5b-8741-adde-b329b41b484b"
                        },
                        {
                          "name": "DIY-CMS",
                          "uid": "913e9167-2ddc-3041-ad8d-29b1e05dc2fe"
                        },
                        {
                          "name": "Castle Rock",
                          "uid": "be00a894-9750-e647-b96a-95eddc43f7d7"
                        },
                        {
                          "name": "E107",
                          "uid": "62543bb0-0163-1e4e-9c7e-ee4578db8593"
                        },
                        {
                          "name": "CVSTrac",
                          "uid": "52714a8b-9f50-b341-9703-8d1f23bbffa3"
                        },
                        {
                          "name": "Cerulean Studios",
                          "uid": "affa0c3d-b8c9-ec40-9584-656dd96b9552"
                        },
                        {
                          "name": "BlazeVideo",
                          "uid": "ab02f533-bcc1-c344-952c-72dc4f668722"
                        },
                        {
                          "name": "CyberLink",
                          "uid": "dfe6d35c-4e52-424f-873a-ad3e9c58bbfa"
                        },
                        {
                          "name": "Dbscripts",
                          "uid": "a348c364-ea7e-2d45-a77d-201aebca4121"
                        },
                        {
                          "name": "China Chopper",
                          "uid": "78ac8e23-7ec7-3a4c-926a-8690a8e52f98"
                        },
                        {
                          "name": "B-net",
                          "uid": "f67bedc5-cf5e-fe46-85a3-641866e0593f"
                        },
                        {
                          "name": "Citadel",
                          "uid": "ec3bb35b-fffb-b64b-99e5-1b3f708c4f54"
                        },
                        {
                          "name": "Haxx",
                          "uid": "3353a2d6-b40c-7843-ab64-22566eecc0b5"
                        },
                        {
                          "name": "Research In Motion Limited",
                          "uid": "e59c8c0f-5575-a244-9979-c3096ed56378"
                        },
                        {
                          "name": "Thekelleys",
                          "uid": "5569558a-4066-a045-95f1-d19c27ba757b"
                        },
                        {
                          "name": "Canon",
                          "uid": "d118ca15-0ba8-994e-bc4e-c36ca79c04d2"
                        },
                        {
                          "name": "ZLDNN",
                          "uid": "36ae46a1-82d8-f44a-8e4d-336f87bad0ef"
                        },
                        {
                          "name": "Black Ice",
                          "uid": "2dcc68b8-7e45-734c-8154-496c9ec4f277"
                        },
                        {
                          "name": "Boite De News",
                          "uid": "9edd6ce2-9ce3-9543-b346-585526b9e565"
                        },
                        {
                          "name": "QuickSoft",
                          "uid": "1256d830-281d-5743-bfae-50fdc33798c9"
                        },
                        {
                          "name": "Endian Firewall",
                          "uid": "5699562b-057d-9d48-923f-210af3d9d71f"
                        },
                        {
                          "name": "FreeRADIUS",
                          "uid": "7376b49e-460b-7344-8570-5a4ebe44e850"
                        },
                        {
                          "name": "Ecava",
                          "uid": "86351d57-eab6-504c-8dd6-8faa6cad59a7"
                        },
                        {
                          "name": "Focus/SIS",
                          "uid": "acf86581-a812-a648-8650-6bf1c762d28d"
                        },
                        {
                          "name": "427BB",
                          "uid": "1e9e2c72-9ac9-f847-bd95-741d2c749c75"
                        },
                        {
                          "name": "ESTsoft",
                          "uid": "2f134391-a3f3-124a-afed-f83a012d2074"
                        },
                        {
                          "name": "EZHomeTech",
                          "uid": "d106eaa8-2fba-f74c-a78a-f2142cca2a27"
                        },
                        {
                          "name": "Javier Suarez Sanz",
                          "uid": "e0281a08-084b-4a44-9e52-86d97c2f1bf6"
                        },
                        {
                          "name": "Qualcomm",
                          "uid": "8d013610-465d-d445-8f46-1dec1fca8923"
                        },
                        {
                          "name": "Gd Graphics Library",
                          "uid": "2dbf1ccc-3f9f-9548-a3f0-66c24f795bda"
                        },
                        {
                          "name": "Fortinet",
                          "uid": "63763b48-15b2-324b-a309-f7b8e18d1359"
                        },
                        {
                          "name": "FFmpeg",
                          "uid": "d90b3be5-da4f-6b40-9f42-75615c9e821a"
                        },
                        {
                          "name": "Darren's Script Archive",
                          "uid": "6f74d7ab-f087-fa49-924a-6ff10aa17d7f"
                        },
                        {
                          "name": "ffdshow-tryout",
                          "uid": "0e9b4c25-be8c-1d47-89ae-5425c273dd70"
                        },
                        {
                          "name": "EnterpriseDB",
                          "uid": "b1356816-d240-8941-a5aa-0a1923f0700a"
                        },
                        {
                          "name": "ESET",
                          "uid": "82ceae00-6a32-e04f-bb31-3e826d230253"
                        },
                        {
                          "name": "Fritz!Box",
                          "uid": "03f5a99a-df99-ad43-8a5b-83c1fec55783"
                        },
                        {
                          "name": "Facebook",
                          "uid": "6ebc5175-db95-1e43-ae7c-a315a9822bb1"
                        },
                        {
                          "name": "F5",
                          "uid": "f7ed1e5f-6c3b-0f49-935c-f183b1ad8d52"
                        },
                        {
                          "name": "General Electric",
                          "uid": "c7494a8d-e8cc-1547-b564-fd02c9ffa180"
                        },
                        {
                          "name": "Elasticsearch",
                          "uid": "e2601b9a-dc0b-2d46-b793-9f943942705b"
                        },
                        {
                          "name": "FreeType",
                          "uid": "d7c75c57-aa6c-f642-98b0-d28d0a3788e3"
                        },
                        {
                          "name": "Stadtaus",
                          "uid": "882c42a1-8734-194f-931e-4920cac7cec5"
                        },
                        {
                          "name": "eScan",
                          "uid": "49f9dc75-0e13-1447-8aa7-a0ea32354c0f"
                        },
                        {
                          "name": "Forum Livre",
                          "uid": "078dd8e8-4bad-6f4b-814a-81871be909d7"
                        },
                        {
                          "name": "Ektron",
                          "uid": "d3f6c8da-2535-9447-a54d-ecaa992fe3f7"
                        },
                        {
                          "name": "Ethereal Group",
                          "uid": "0c79066c-dac7-1e41-8792-7682514a9ab9"
                        },
                        {
                          "name": "Flashgamescript",
                          "uid": "9fef8f23-ba5c-4842-87ce-72862c89cc08"
                        },
                        {
                          "name": "Phome Empire",
                          "uid": "1a399d73-d5b4-ca47-894e-e8a813697881"
                        },
                        {
                          "name": "FreePBX",
                          "uid": "b48e5b42-7c94-5e46-9dae-ae4e5ce3a5bd"
                        },
                        {
                          "name": "pfSense",
                          "uid": "2c11bbf0-d5d7-154e-8256-886de7b91be0"
                        },
                        {
                          "name": "Eclipse Foundation",
                          "uid": "15758d65-34c0-7248-969b-71f1d495aeb4"
                        },
                        {
                          "name": "Embarcadero",
                          "uid": "c9183328-f704-9543-8d39-17314add66ce"
                        },
                        {
                          "name": "Eb Design Pty Ltd",
                          "uid": "75e09375-6c53-8e4b-8d45-add3151341fc"
                        },
                        {
                          "name": "Flashget",
                          "uid": "281f844d-bf01-d340-bada-17a4504bc856"
                        },
                        {
                          "name": "Ericom",
                          "uid": "2725a431-b34b-e943-bec1-e7b12530ab93"
                        },
                        {
                          "name": "Exoopport",
                          "uid": "ca18ec46-19a4-bd4f-a60f-6492318f1f50"
                        },
                        {
                          "name": "Flexera",
                          "uid": "0a2db35a-98ea-4b45-abaf-9662ef01d7f4"
                        },
                        {
                          "name": "Hexagon",
                          "uid": "68ff5493-03d3-ad44-b20a-7ff5ae6b6631"
                        },
                        {
                          "name": "icq",
                          "uid": "9a355792-32c5-8a47-84f7-efb3acb650e0"
                        },
                        {
                          "name": "Telestream",
                          "uid": "33e073c1-1d6d-ea49-ab40-d8584df27e18"
                        },
                        {
                          "name": "Eppler Software",
                          "uid": "3433a8db-ac6d-d944-b297-22eef208d948"
                        },
                        {
                          "name": "Eaton",
                          "uid": "936cd975-2c8d-e042-809d-e0752f2993dd"
                        },
                        {
                          "name": "Ganglia",
                          "uid": "6e2a66e2-2718-8b45-8e70-8d67c28bfb41"
                        },
                        {
                          "name": "Exim",
                          "uid": "2387403d-2db9-b94f-9162-7f3e452d99b7"
                        },
                        {
                          "name": "Cleanersoft",
                          "uid": "1dada806-4ab1-974a-984f-3da674ac3484"
                        },
                        {
                          "name": "galleryproject.org",
                          "uid": "ab097b1e-3ac3-294d-916f-fe9dca0546b0"
                        },
                        {
                          "name": "Free Download Manager",
                          "uid": "17000935-7b6a-2e4c-9bed-5f3a084ef287"
                        },
                        {
                          "name": "EFS Software",
                          "uid": "b2b29ed7-5cbb-2247-82ea-e68433970478"
                        },
                        {
                          "name": "Free File Hosting",
                          "uid": "869979bf-85d1-7044-b72d-2dddaa114a1a"
                        },
                        {
                          "name": "Invisionix Systems",
                          "uid": "c007f5f7-6c8e-644d-9824-a73afb4ad8a7"
                        },
                        {
                          "name": "IrfanView",
                          "uid": "7dd8eade-2e44-7b41-b4e5-b3a861954733"
                        },
                        {
                          "name": "Libpng",
                          "uid": "8c3cf3f0-4da2-db43-a75e-0e4e29d9c387"
                        },
                        {
                          "name": "Gravity GTD",
                          "uid": "9b086886-2b7f-354b-a8fe-229c62ad0737"
                        },
                        {
                          "name": "JBoss",
                          "uid": "447490ff-a8ee-664a-bed3-e5b787a42c2c"
                        },
                        {
                          "name": "g-neric",
                          "uid": "fe538a6d-2e98-7b40-969a-c4d40bbb3848"
                        },
                        {
                          "name": "IDAutomation",
                          "uid": "abbcb63d-d68b-ad4b-ad05-6bde553d11bc"
                        },
                        {
                          "name": "Gnuturk",
                          "uid": "3757bfb3-37e0-1943-8a25-fb06bc8d53db"
                        },
                        {
                          "name": "Ignite Realtime",
                          "uid": "9b15d0ee-5d07-c34a-be12-e7a726bf49ab"
                        },
                        {
                          "name": "GnuPG",
                          "uid": "a7481c6f-4dde-fe47-bca6-94363b6dd85e"
                        },
                        {
                          "name": "HylaFAX",
                          "uid": "55489572-f711-b444-b175-60e042ab2c96"
                        },
                        {
                          "name": "Happymall",
                          "uid": "3967630d-dcd2-3b44-bc06-2e87ee9dfe4b"
                        },
                        {
                          "name": "Honeywell",
                          "uid": "fcb6ff02-d2cc-4c4d-9881-69adfd3f728a"
                        },
                        {
                          "name": "Iss",
                          "uid": "ae6d92da-2985-3948-8abb-96ca8e433796"
                        },
                        {
                          "name": "Hastymail",
                          "uid": "ad91cdb9-6c2e-6147-a620-57388d0221c0"
                        },
                        {
                          "name": "Atlassian",
                          "uid": "de2a6880-80f3-b041-bedc-a22315e8af3a"
                        },
                        {
                          "name": "InterWoven",
                          "uid": "344cc624-986b-b046-a343-c78505ad1291"
                        },
                        {
                          "name": "GLPI",
                          "uid": "6e973fef-b157-8846-863f-1bf3e740a50d"
                        },
                        {
                          "name": "Jenkins",
                          "uid": "65be406e-4a17-0245-ae20-84a58f46b196"
                        },
                        {
                          "name": "Invisionpower",
                          "uid": "f29ce87b-feb7-bc49-999f-f1edf7b5ad40"
                        },
                        {
                          "name": "Graphiks",
                          "uid": "c77eda4c-5cd5-8b41-a859-fb7f12ac0e2f"
                        },
                        {
                          "name": "ViRobot",
                          "uid": "29065869-db7c-ce40-8dfc-b78e65b8319f"
                        },
                        {
                          "name": "InterNetNews",
                          "uid": "de2884f1-0028-8d4b-9b5e-79033f8208fe"
                        },
                        {
                          "name": "Gracenote",
                          "uid": "8ce881aa-b9fc-464e-95b3-a3c5bcdafa82"
                        },
                        {
                          "name": "HPUX",
                          "uid": "d176a4bc-9704-e044-b628-89b7dd534907"
                        },
                        {
                          "name": "nsoftware",
                          "uid": "b2c4c38d-081f-7940-b05c-9950b2f9c920"
                        },
                        {
                          "name": "GitList",
                          "uid": "5ddd2e28-8f96-f748-9bb5-2f310f66e499"
                        },
                        {
                          "name": "GestART",
                          "uid": "41e233d1-03cd-b844-89e9-81ad0763965e"
                        },
                        {
                          "name": "Intellicom",
                          "uid": "13b9791d-fb7e-864c-9051-b7f7f8c365b5"
                        },
                        {
                          "name": "IcoFX",
                          "uid": "0a27c92d-41af-fb4c-961d-7c77249bea9e"
                        },
                        {
                          "name": "InduSoft",
                          "uid": "fde79a02-1ad0-1a44-9a29-536750c9aea4"
                        },
                        {
                          "name": "People's Republic of China",
                          "uid": "9e5ed542-d9ae-dc41-ba9b-f99a90a7af75"
                        },
                        {
                          "name": "GStreamer",
                          "uid": "63a34a27-519d-5a4d-aad2-52535df4f7a1"
                        },
                        {
                          "name": "NTP",
                          "uid": "f507e70b-bf17-f64b-a773-2ab05594e949"
                        },
                        {
                          "name": "ISPConfig",
                          "uid": "c1375c50-76e2-4d41-8106-58c0b0d0cfda"
                        },
                        {
                          "name": "JBroFuzz",
                          "uid": "42390008-6a0b-e04c-a731-9f76a3ffdd5a"
                        },
                        {
                          "name": "Bitdamaged",
                          "uid": "1985a7bc-e083-8a43-b095-86d3facababc"
                        },
                        {
                          "name": "MGI Software",
                          "uid": "6f3c41dd-c443-d54d-888b-a6f00b013861"
                        },
                        {
                          "name": "Golden FTP Server",
                          "uid": "31ee03f6-d831-8647-bc9d-ca1a503823eb"
                        },
                        {
                          "name": "GOMlab",
                          "uid": "b566c4cf-e183-4c4f-a15b-68767155d5d5"
                        },
                        {
                          "name": "gzip",
                          "uid": "cff31551-e91b-e748-af48-fb560f5deaef"
                        },
                        {
                          "name": "Hikvision",
                          "uid": "ab4ae148-c650-8345-a500-84cbfe3d3251"
                        },
                        {
                          "name": "RSA",
                          "uid": "e9b80421-80e2-3240-8b95-413d617167f9"
                        },
                        {
                          "name": "Graphite",
                          "uid": "06a7abb3-ffa5-6d45-89ea-1560fafdfac7"
                        },
                        {
                          "name": "Git",
                          "uid": "bf68dfe8-2d5a-1343-b136-06bf88451e69"
                        },
                        {
                          "name": "iSCSI Enterprise Target",
                          "uid": "978b6052-fdb5-0949-ba74-8689007d81bf"
                        },
                        {
                          "name": "InTouch",
                          "uid": "c8aadd38-574e-b24d-96c5-c44f5e06a34d"
                        },
                        {
                          "name": "iMatix",
                          "uid": "0b9fe98c-fb7f-f143-ae83-d1b798161dc8"
                        },
                        {
                          "name": "Iplanet",
                          "uid": "b096c2b2-1144-0e4d-9132-7e857c4f140b"
                        },
                        {
                          "name": "HD Soft",
                          "uid": "62614621-6e85-7144-8cbe-2a25b3d3f50d"
                        },
                        {
                          "name": "Juniper Networks",
                          "uid": "0002046e-c587-c346-9e2c-3ba52a48f960"
                        },
                        {
                          "name": "Lianja",
                          "uid": "75aa6ecf-015c-6d4c-9b22-a546372bc388"
                        },
                        {
                          "name": "Knusperleicht",
                          "uid": "2a81dd7a-550d-1c44-89fb-b1aa5c1404d5"
                        },
                        {
                          "name": "Miniupnp Project",
                          "uid": "6d27178b-be42-e14e-b089-8ae9c3af845a"
                        },
                        {
                          "name": "LibVNCServer",
                          "uid": "91bb50d1-e394-e847-acaa-2f04f8afac68"
                        },
                        {
                          "name": "Mostgear",
                          "uid": "37e91ad5-c59c-2943-b9bc-e378e357f592"
                        },
                        {
                          "name": "Microsys",
                          "uid": "6498b355-c6db-964c-a94e-2f473f928243"
                        },
                        {
                          "name": "David Harris",
                          "uid": "d12f690d-3ac0-944f-a780-65fec1ca4ac2"
                        },
                        {
                          "name": "Liquid Technologies",
                          "uid": "ea6038c5-2b6b-e64b-84e7-b4259213c94f"
                        },
                        {
                          "name": "KingChat",
                          "uid": "8651fa68-3801-d945-ae50-776892342612"
                        },
                        {
                          "name": "Lighttpd",
                          "uid": "9a3f1e95-4611-2f4b-b1da-65e6718af126"
                        },
                        {
                          "name": "PEAR",
                          "uid": "238c98b1-289f-4a4e-a4d4-712b221d8e78"
                        },
                        {
                          "name": "Matt Wright",
                          "uid": "66de431d-b04e-354e-b08a-6d90e8bf19e5"
                        },
                        {
                          "name": "Magento",
                          "uid": "e409d40a-7ab4-a245-9414-19b15d5e048d"
                        },
                        {
                          "name": "LibTIFF",
                          "uid": "20ac61b7-e175-224d-b9e4-30a66631a077"
                        },
                        {
                          "name": "MailEnable",
                          "uid": "daaf8a9e-a8cb-e24f-b39a-de5781f3f2a6"
                        },
                        {
                          "name": "Lifesize",
                          "uid": "9b7dccb2-6e21-ee41-94b5-00dc1adc525f"
                        },
                        {
                          "name": "MediaWiki",
                          "uid": "b2092a06-3462-d248-bf39-c3d9b0e3fb29"
                        },
                        {
                          "name": "LCDProc",
                          "uid": "86aafbb8-4f1d-734e-ab8d-2aaddec64c36"
                        },
                        {
                          "name": "Kordil EDMS",
                          "uid": "26c76a33-5991-3745-97cf-be7bf1ef0c29"
                        },
                        {
                          "name": "Stormy Studios",
                          "uid": "7299bd3a-a745-1249-8f52-29b450348487"
                        },
                        {
                          "name": "Moodle",
                          "uid": "d4ec6cd0-44fe-3142-8053-77f73fc2d14e"
                        },
                        {
                          "name": "Measuresoft",
                          "uid": "21d92510-e165-dc48-ac9d-746f47315124"
                        },
                        {
                          "name": "Mirc",
                          "uid": "5900054a-df3e-4044-b5f4-638f9cff6ed4"
                        },
                        {
                          "name": "Lingxia273",
                          "uid": "4caead17-ae1f-8b48-84e9-9d9c485285f3"
                        },
                        {
                          "name": "KromTech",
                          "uid": "415ba363-bda8-f449-8aa3-fbda68d7638c"
                        },
                        {
                          "name": "Kingsoft",
                          "uid": "56eef03b-3497-5c4b-af0d-6534fc1e9b0a"
                        },
                        {
                          "name": "Kame",
                          "uid": "a64333a6-7e43-b146-b396-e635500e16b1"
                        },
                        {
                          "name": "Moinmo",
                          "uid": "c3ab7112-c718-dc4a-b9a2-c6ff026df61d"
                        },
                        {
                          "name": "LEADTOOLS",
                          "uid": "d88a4efa-bd71-a140-b9e8-0147ea8a8c62"
                        },
                        {
                          "name": "ManageEngine",
                          "uid": "e7c2a54f-e306-cd4d-b9fb-86da6d27a778"
                        },
                        {
                          "name": "Moderngigabyte",
                          "uid": "8f3a46bf-e63a-b34e-ab66-fa3e7400e866"
                        },
                        {
                          "name": "Quick Heal",
                          "uid": "0ab83a12-ffd8-1f43-a1ef-fde6b68249c4"
                        },
                        {
                          "name": "Light Weight Calendar",
                          "uid": "ccb3d04e-dc2f-4842-bc8b-e587746f93a2"
                        },
                        {
                          "name": "Mega Nerd",
                          "uid": "7af7a865-1470-624d-bc7b-93d422056ac7"
                        },
                        {
                          "name": "KDE",
                          "uid": "e4fa8e51-ec6b-bb4d-8dcf-500fa828a8fb"
                        },
                        {
                          "name": "Lattice Semiconductor",
                          "uid": "0f46d40e-471e-b147-931f-d147310d61b3"
                        },
                        {
                          "name": "Libav",
                          "uid": "b2271b3b-8c47-7e4a-9e93-5809619cc15b"
                        },
                        {
                          "name": "Morfeus",
                          "uid": "e6e4b388-ac70-b748-a731-5dae4b6bbcf1"
                        },
                        {
                          "name": "Mastersfusion",
                          "uid": "03e11a21-f30d-c64d-9f4a-a138e6071a33"
                        },
                        {
                          "name": "Lenovo",
                          "uid": "a2f8919a-9e52-0a4b-a038-57d7a2cab5cc"
                        },
                        {
                          "name": "KingView",
                          "uid": "a0ba8f0a-4b7e-1a4f-8503-e921923bafb6"
                        },
                        {
                          "name": "Logitech",
                          "uid": "6e4a4e33-57bd-8347-9b1b-39d7f37e0030"
                        },
                        {
                          "name": "Pmail",
                          "uid": "95d17414-432a-bd4b-8bc8-660cc8b9d4da"
                        },
                        {
                          "name": "Motorola",
                          "uid": "6de1a4de-c0b7-1743-b642-bbb7b3d3b155"
                        },
                        {
                          "name": "Mambo",
                          "uid": "c1c2c9e3-5892-bc48-9a31-ae59b573ea8e"
                        },
                        {
                          "name": "Mongodb",
                          "uid": "f298ab8c-7b97-0847-b237-29b1db7c10c4"
                        },
                        {
                          "name": "Ehmig",
                          "uid": "d342174e-b4e1-7142-89c9-c8eb9e589527"
                        },
                        {
                          "name": "Katello",
                          "uid": "7548d4bf-8f9b-f34c-b9ab-7b2813aeaf8a"
                        },
                        {
                          "name": "Mitsubishi Electric",
                          "uid": "cd5acb44-1e71-d049-bf39-dac627dc5f91"
                        },
                        {
                          "name": "Linkedin",
                          "uid": "ef3fc23c-88d7-ec49-addf-25428d8dcd46"
                        },
                        {
                          "name": "Orbitals",
                          "uid": "1f356bd8-03e5-1946-a230-08c0fe847597"
                        },
                        {
                          "name": "OpenSwan",
                          "uid": "297da78d-5b9e-ae43-a5bd-f063df9fd987"
                        },
                        {
                          "name": "StrongSwan",
                          "uid": "5c3f2c36-e9d7-854c-8104-15317ef3c981"
                        },
                        {
                          "name": "OPENi-CMS Group",
                          "uid": "a22d6ba3-1327-bb44-bcfa-9841954dbb09"
                        },
                        {
                          "name": "Netop",
                          "uid": "ac0c8ec7-3946-8b47-ae25-55311684f9be"
                        },
                        {
                          "name": "MW6 Technologies",
                          "uid": "05fa2c5c-9ac5-cd45-b1f4-e6e1461adc6e"
                        },
                        {
                          "name": "Ntrglobal",
                          "uid": "737c606c-4c88-a44c-a077-fed02f95b5a4"
                        },
                        {
                          "name": "OpenEMR",
                          "uid": "9c8d87db-1a60-234f-85ba-0df1071c48b0"
                        },
                        {
                          "name": "Microsoft RPC",
                          "uid": "0e4db6b8-6b15-a44b-b4b6-96c412200678"
                        },
                        {
                          "name": "OABOARD",
                          "uid": "6acf8f6a-dbf6-a740-bb07-e454098ab941"
                        },
                        {
                          "name": "OsCommerce",
                          "uid": "21c843c2-6d6e-9b4e-a138-5cbfb8bf7eb3"
                        },
                        {
                          "name": "National Instruments",
                          "uid": "fcad2e90-c13e-7849-b991-2cc1c86c87ec"
                        },
                        {
                          "name": "NAS4Free",
                          "uid": "68a39986-4a2b-684d-826a-69726eab0de5"
                        },
                        {
                          "name": "Openwsman",
                          "uid": "a6bfa7b2-721e-0f43-87c9-608269452b51"
                        },
                        {
                          "name": "Persits Software",
                          "uid": "ae23495f-a432-f648-984b-7709d693f1ba"
                        },
                        {
                          "name": "NagiosQL",
                          "uid": "b02553c7-cc75-604a-aece-b1f97cc75cff"
                        },
                        {
                          "name": "Pegasus Imaging",
                          "uid": "d21db868-9a3d-5140-922b-ead82cae0c68"
                        },
                        {
                          "name": "Office OCX",
                          "uid": "897556ca-c291-8a42-bb57-32677441691e"
                        },
                        {
                          "name": "Panasonic",
                          "uid": "6926fde3-94a5-3c4e-b6a4-772470ac17fd"
                        },
                        {
                          "name": "Persistent Systems",
                          "uid": "156454c9-15ae-484d-9317-3e98ba49c0d7"
                        },
                        {
                          "name": "NetIQ",
                          "uid": "cf7f142b-1222-0d42-b459-78263503c983"
                        },
                        {
                          "name": "Peercast",
                          "uid": "0261377b-f548-ff44-8066-830e08d99300"
                        },
                        {
                          "name": "Netsupport",
                          "uid": "b02a75eb-d231-7142-9f32-a476bc0503f6"
                        },
                        {
                          "name": "Netgear",
                          "uid": "a4d9db0e-4f3d-ec4e-aa61-a1a4e5592ea4"
                        },
                        {
                          "name": "OpenX",
                          "uid": "91519d0d-ad76-b84d-83b5-4bb80b5c825c"
                        },
                        {
                          "name": "MyNewsGroups",
                          "uid": "5d0ab7ab-5598-db4a-bcc1-ddb04044698d"
                        },
                        {
                          "name": "Electric Sheep Fencing",
                          "uid": "3dec4cf0-00e3-4c44-9689-d9e6b7179f32"
                        },
                        {
                          "name": "MyBB",
                          "uid": "b0054685-f004-1f4c-a407-a87fd0626326"
                        },
                        {
                          "name": "OS4Ed",
                          "uid": "2ce01fc1-bf3c-6744-8d21-ed83baff7b41"
                        },
                        {
                          "name": "op5 AB",
                          "uid": "3d176d0e-7b93-494e-a511-32ca5fec0711"
                        },
                        {
                          "name": "PHP",
                          "uid": "40fddd5a-c7a0-4841-a06c-143a4b6df200"
                        },
                        {
                          "name": "Nokia",
                          "uid": "774028ff-5141-d34b-b244-7d36456b1941"
                        },
                        {
                          "name": "Netmechanica",
                          "uid": "419f6c50-4dd9-184f-9966-f68912689ae3"
                        },
                        {
                          "name": "MPlayer",
                          "uid": "80aa635a-8cef-f043-99ba-b0a7567b0a4c"
                        },
                        {
                          "name": "Justsystems",
                          "uid": "4a2f97b3-de4d-484b-a408-548284a840d6"
                        },
                        {
                          "name": "Tenable",
                          "uid": "052a2b6e-f4fb-dc49-adc5-b0f685368e5a"
                        },
                        {
                          "name": "Phpadsnew",
                          "uid": "fdab17c2-01ff-4e44-9593-98993b814c04"
                        },
                        {
                          "name": "OpenMediaVault",
                          "uid": "9c4ce9a3-74c0-0b46-ba3a-dee7f9cd4198"
                        },
                        {
                          "name": "Nmap",
                          "uid": "33b3fa8a-8c82-8b4c-8aca-fd4c7e6a4b22"
                        },
                        {
                          "name": "OpenBSD",
                          "uid": "66f35235-73be-6b48-81be-9507b02bb56c"
                        },
                        {
                          "name": "Mutiny",
                          "uid": "7c1915c0-c86e-f344-880d-5dfdd09c2fb0"
                        },
                        {
                          "name": "Moxa",
                          "uid": "17ea7e8b-8608-a649-88a2-d9ab37156692"
                        },
                        {
                          "name": "Innoshock",
                          "uid": "0a878377-8f80-3843-87f9-777dad8fc3b7"
                        },
                        {
                          "name": "OpenOffice",
                          "uid": "2768fc96-8d4f-f549-a6f9-37c179baa5f1"
                        },
                        {
                          "name": "Nodejs",
                          "uid": "10b77b8e-8bcd-ef47-93f5-3f4fdab4377b"
                        },
                        {
                          "name": "MyPhPim",
                          "uid": "15bda3ec-6344-9546-94a6-fa2dbb075d93"
                        },
                        {
                          "name": "Sixapart",
                          "uid": "fdcc8db2-4aeb-6947-93c2-ccbc161afddc"
                        },
                        {
                          "name": "SonicWALL",
                          "uid": "3cd370b2-bed9-184e-b65e-b41e74925694"
                        },
                        {
                          "name": "NetWin",
                          "uid": "de33ace7-4fa5-e647-a96d-e3d8a824a58c"
                        },
                        {
                          "name": "Nikto Security Scanner",
                          "uid": "e3d5eb4c-2435-7841-b227-4cd70e1bf1f2"
                        },
                        {
                          "name": "Fine Free File Project",
                          "uid": "d427b797-fd3c-d24a-8bac-412cb8599d43"
                        },
                        {
                          "name": "Reprose Software",
                          "uid": "9c60d59c-c049-3c45-9e27-8e8d0269418a"
                        },
                        {
                          "name": "Turnkey Web Tools",
                          "uid": "18b293fd-cb55-9c47-9588-1fa57f680e08"
                        },
                        {
                          "name": "Postfix",
                          "uid": "5e78e45b-ef40-f04c-abee-1f1a3914644b"
                        },
                        {
                          "name": "Pidgin",
                          "uid": "bbc4b0c5-0aef-ee4b-b21c-ec2a78916302"
                        },
                        {
                          "name": "PROMOTIC",
                          "uid": "5e6c1be6-6745-2b42-951c-bcd1743e15c7"
                        },
                        {
                          "name": "Rkd Software",
                          "uid": "e532d734-2b78-ce44-b008-28d993d4de7d"
                        },
                        {
                          "name": "MarsApril",
                          "uid": "34988d57-77fc-cb41-a879-1bf7acaa25d8"
                        },
                        {
                          "name": "adiscon",
                          "uid": "4fa98760-87c3-124e-9057-905fb448fa1b"
                        },
                        {
                          "name": "Jevontech",
                          "uid": "1ec0a77b-aa66-dd49-80b8-1efb664bc430"
                        },
                        {
                          "name": "Portable Sdk For Upnp Project",
                          "uid": "6519a6b3-d777-c04c-83fb-598173a1bbfb"
                        },
                        {
                          "name": "Photodex",
                          "uid": "59599877-2051-7549-9ce8-7d2d58c5e4d4"
                        },
                        {
                          "name": "RabidHamster",
                          "uid": "93bd6448-7a4b-fc43-9295-23c88c2d6e6c"
                        },
                        {
                          "name": "Rockwell Automation",
                          "uid": "8edf88e4-89ee-ce45-90c0-2ecbb474c30c"
                        },
                        {
                          "name": "Sabdrimer",
                          "uid": "51809dd0-b63b-6e44-9385-df68438377df"
                        },
                        {
                          "name": "Libupnp Project",
                          "uid": "0879ea48-c13f-b948-8a9f-ceb88041ed93"
                        },
                        {
                          "name": "RARLAB",
                          "uid": "9a31222c-b587-424c-a6b1-c45a5d5543d6"
                        },
                        {
                          "name": "PhpMyAdmin",
                          "uid": "d5b1a129-e1fe-5f4c-8011-558d916c4583"
                        },
                        {
                          "name": "Poster Software",
                          "uid": "05fc0a6a-e9bc-1b4b-a494-44c855380cb1"
                        },
                        {
                          "name": "QuickShare",
                          "uid": "22bae394-cd71-dc44-8a01-2208a507a0a8"
                        },
                        {
                          "name": "Scadatec",
                          "uid": "06da16fa-74fd-3f42-9e96-99cadc7971bc"
                        },
                        {
                          "name": "Progea",
                          "uid": "4e1ea187-a7b9-e24b-889c-ce53d1d7acd4"
                        },
                        {
                          "name": "Php-nuke",
                          "uid": "6acef8dc-b747-bd4b-871d-69a2c8b02689"
                        },
                        {
                          "name": "Zebrafeeds",
                          "uid": "26fb23ee-2827-f247-bbf5-f96e6a513a96"
                        },
                        {
                          "name": "Phpjournaler",
                          "uid": "db4671d8-664f-2a40-9926-21b76315314a"
                        },
                        {
                          "name": "Phpbb Group",
                          "uid": "fb039d5f-60b4-4c44-a402-8d0d37269bd4"
                        },
                        {
                          "name": "Poptop",
                          "uid": "60744681-ca35-ce4e-bbaa-8bb0bda98502"
                        },
                        {
                          "name": "Htmltonuke",
                          "uid": "2a9e00a6-6300-8043-9185-b29270242f5c"
                        },
                        {
                          "name": "Realflex",
                          "uid": "06371cdb-6bad-e743-8165-0571caf21f58"
                        },
                        {
                          "name": "PhpTax",
                          "uid": "b6275067-3bd2-3749-9668-b03757306dbe"
                        },
                        {
                          "name": "PTC",
                          "uid": "c38b6854-4038-4d43-8ad8-32a9896a0862"
                        },
                        {
                          "name": "Chumpsoft",
                          "uid": "ecd2af19-8e87-b842-9c03-3ba6b5068889"
                        },
                        {
                          "name": "Aspcode.net",
                          "uid": "206f6f2c-3c9a-b445-bd0f-1fbf6e298e4e"
                        },
                        {
                          "name": "Christos Zoulas",
                          "uid": "5f4368bd-24d5-1d4b-b337-ed3e8ca6dbf1"
                        },
                        {
                          "name": "Redmine",
                          "uid": "86114658-b88e-1f4a-8a26-e73c929f2524"
                        },
                        {
                          "name": "Serv-U",
                          "uid": "fe945389-f743-5144-aeaa-152f701bbcca"
                        },
                        {
                          "name": "ProFTPD",
                          "uid": "26680d79-130a-8e42-b083-14b09dd45d28"
                        },
                        {
                          "name": "Powerdns",
                          "uid": "3c3c3e5e-ef4f-b648-bc58-6463f004160c"
                        },
                        {
                          "name": "RIM",
                          "uid": "b8ef160b-6593-0649-b6dd-00cfa0bfb550"
                        },
                        {
                          "name": "Piwigo",
                          "uid": "e9ae1a1e-90f1-7942-aa7a-626ba29a97e3"
                        },
                        {
                          "name": "PosgreSQL",
                          "uid": "80f6a170-3ad2-2346-ab70-c4061a340acb"
                        },
                        {
                          "name": "Rdesktop",
                          "uid": "66d08582-be8b-5346-864a-6de26bef5db5"
                        },
                        {
                          "name": "Php-fusion",
                          "uid": "312b36a7-2340-4d48-89f2-56ad1dcd2133"
                        },
                        {
                          "name": "Squery",
                          "uid": "dbc7b216-df22-604f-b504-4a9b7380905d"
                        },
                        {
                          "name": "Revived Wire Media",
                          "uid": "03939176-d536-8943-8379-c50366b5e311"
                        },
                        {
                          "name": "Secure Reality",
                          "uid": "f4c38138-3d0c-4c43-b9da-9d68e6ce199f"
                        },
                        {
                          "name": "Postguestbook",
                          "uid": "a2a13e4f-df52-654e-9d6b-4a661086d62f"
                        },
                        {
                          "name": "Derek Leung",
                          "uid": "54e7c277-b1cf-df47-a615-881f63e74f21"
                        },
                        {
                          "name": "Allegrosoft",
                          "uid": "815a5a84-0c02-cc4f-9acb-02bad5a9977a"
                        },
                        {
                          "name": "Quest",
                          "uid": "712b4690-a75e-964a-a2c8-d8e7c84e9009"
                        },
                        {
                          "name": "Phpgedview",
                          "uid": "dcf59bfd-6c58-f845-9379-2610c3ed772c"
                        },
                        {
                          "name": "SugarCRM",
                          "uid": "dab99922-d909-b141-bf60-d0f535f2cef0"
                        },
                        {
                          "name": "Senkas",
                          "uid": "66493ed8-607b-4345-afe5-c7c0b9873367"
                        },
                        {
                          "name": "TP-LINK",
                          "uid": "017fc4b8-d4ac-4c4d-bbef-18123244422f"
                        },
                        {
                          "name": "Icona",
                          "uid": "d865910e-e84c-4544-b074-7fb4404d7225"
                        },
                        {
                          "name": "Lbl",
                          "uid": "6a27a930-4635-0e48-ae4e-b2498f34d12f"
                        },
                        {
                          "name": "Skybluecanvas",
                          "uid": "89d0647b-938e-624f-b4a9-d809f89ced72"
                        },
                        {
                          "name": "Ultimate Fun Book",
                          "uid": "acb4a4eb-aeea-2f48-8595-590fa0b05e6c"
                        },
                        {
                          "name": "Arabless",
                          "uid": "34741560-0379-be4e-af8d-76f1e8febc1c"
                        },
                        {
                          "name": "TWiki",
                          "uid": "14aef507-b1a2-c04f-90ad-f470aa77d24b"
                        },
                        {
                          "name": "Thewebforum",
                          "uid": "8a59b07a-3c09-8641-b58a-1c8dd8ec3a23"
                        },
                        {
                          "name": "SIPfoundry",
                          "uid": "59263c6b-8f44-b64d-a390-9171bbfcc2b4"
                        },
                        {
                          "name": "Tropicalm",
                          "uid": "40221671-ea99-2147-93f3-5e760cbf24a2"
                        },
                        {
                          "name": "Syslog",
                          "uid": "181d661f-75b2-6e4a-8418-8a5fb6f8cfc8"
                        },
                        {
                          "name": "SaveWebPortal",
                          "uid": "b9542b65-38f4-494a-a026-9adb852f6b72"
                        },
                        {
                          "name": "Tembria",
                          "uid": "aad8cf14-ba21-564b-9f26-181571cb545a"
                        },
                        {
                          "name": "Splunk",
                          "uid": "648f69dd-f121-5f4f-ab3e-6c1c55dfbd42"
                        },
                        {
                          "name": "Un4Seen",
                          "uid": "25fd5260-21f9-a547-ae25-7bf007677a0a"
                        },
                        {
                          "name": "Modsecurity",
                          "uid": "acb32791-add1-834c-9339-e1dbf12d8100"
                        },
                        {
                          "name": "Supermicro",
                          "uid": "eedcb59a-17a1-5a41-933b-fc0f56243adc"
                        },
                        {
                          "name": "Springsource",
                          "uid": "5f5ba6c6-f3a5-2e4c-958e-c8a1cb9d8628"
                        },
                        {
                          "name": "Whitsoft Development",
                          "uid": "a8e7e574-9fae-004c-941c-987ba2c5d585"
                        },
                        {
                          "name": "Canonical",
                          "uid": "e37daf70-86f8-a74c-acea-177b9512c3a6"
                        },
                        {
                          "name": "Simple Machines",
                          "uid": "6ce4ccc5-393e-af4c-927e-600836a5bbec"
                        },
                        {
                          "name": "SmartBear",
                          "uid": "4c0e2c8f-e870-4149-9724-ff317290c00b"
                        },
                        {
                          "name": "Samsung",
                          "uid": "696b34ef-574e-974c-a4e9-919208257e2c"
                        },
                        {
                          "name": "Site-Assistant",
                          "uid": "21c4f03c-5798-414d-a1d1-2637b00cc172"
                        },
                        {
                          "name": "NCSA",
                          "uid": "b718d390-9476-5942-8189-42ee939cb9fa"
                        },
                        {
                          "name": "ABBS",
                          "uid": "323cedad-96b9-414e-87fa-b208fa6d1380"
                        },
                        {
                          "name": "Philippe Jounin",
                          "uid": "deb71453-dd5f-634a-a59b-c4953b419d4e"
                        },
                        {
                          "name": "South River Technologies",
                          "uid": "678a0425-76d3-1d47-8057-60e4c3be29d3"
                        },
                        {
                          "name": "Ultra Shareware",
                          "uid": "895e9e4a-63fa-f448-a8f5-c11c43873b35"
                        },
                        {
                          "name": "CollabNet",
                          "uid": "7bda3ddd-cfa2-0d4e-8db5-8d64eab89286"
                        },
                        {
                          "name": "Ralph Capper",
                          "uid": "432db3f2-874d-974d-99f6-38d77d3b033b"
                        },
                        {
                          "name": "Seportal",
                          "uid": "7c01f7dc-2dce-8b4e-b3fa-c47ceab708d4"
                        },
                        {
                          "name": "Simple E-Document",
                          "uid": "2fadc298-04e0-6b49-a9fb-c0bd266a0da8"
                        },
                        {
                          "name": "Proofpoint",
                          "uid": "a4b5c3eb-4ff4-a449-a7c0-d036424ebc8f"
                        },
                        {
                          "name": "Turbopower",
                          "uid": "81ead477-58c3-9f4d-a8a7-73ad8eba9816"
                        },
                        {
                          "name": "Typo3",
                          "uid": "e7e0debb-9daa-6c46-8bd8-ac067599e713"
                        },
                        {
                          "name": "ScozNet",
                          "uid": "4b38def8-d109-ea42-9497-5cd142db622b"
                        },
                        {
                          "name": "picolix",
                          "uid": "903e4ba4-3949-a441-beba-504624181d48"
                        },
                        {
                          "name": "SafeNet",
                          "uid": "c38cb720-38f9-fb4c-ab82-0901bd0b9e9a"
                        },
                        {
                          "name": "Tsep",
                          "uid": "dfc1500d-3ec7-6742-8e38-319148c36108"
                        },
                        {
                          "name": "Redlion",
                          "uid": "5219c6c3-ed46-b844-881f-e5e20e52ad75"
                        },
                        {
                          "name": "Sangoma",
                          "uid": "0277bf42-7547-5843-b320-0fa1987c4b34"
                        },
                        {
                          "name": "Trihedral",
                          "uid": "2df262e2-f3c8-b14e-8e0f-52636f6f4bc7"
                        },
                        {
                          "name": "Ubi",
                          "uid": "73177512-c654-ec46-a0fc-d31037f1e213"
                        },
                        {
                          "name": "PMSoftware",
                          "uid": "72e2afed-3ab1-ab4b-b58b-27624b8f8f3a"
                        },
                        {
                          "name": "Php Outburst",
                          "uid": "01293c61-8060-4543-9d3e-a02fad0cd189"
                        },
                        {
                          "name": "Tripwire",
                          "uid": "292ed1f7-d8f6-4646-94cc-ae0daf86bb96"
                        },
                        {
                          "name": "Synology",
                          "uid": "0c9bd4ee-cfc3-974e-a9dd-6bc64468161d"
                        },
                        {
                          "name": "uTorrent",
                          "uid": "06df6c8e-fb42-4545-bc24-5da642a73ef4"
                        },
                        {
                          "name": "artegic AG",
                          "uid": "e5f214d4-4700-b644-930f-07d33f278108"
                        },
                        {
                          "name": "WU-FTPD",
                          "uid": "d4ed4987-0812-664e-8cfa-9d77f896cbaf"
                        },
                        {
                          "name": "XnSoft",
                          "uid": "d2964492-0353-724d-8b4a-4dcd4fc65a49"
                        },
                        {
                          "name": "Visiwave",
                          "uid": "2be2298a-b774-784a-a1c2-b3c2aa2641a2"
                        },
                        {
                          "name": "Xi Software",
                          "uid": "bf8b589e-304a-394b-a665-4f01d6ce74b9"
                        },
                        {
                          "name": "Wellintech",
                          "uid": "12d597e7-2c2a-6e49-a061-bfec30b55016"
                        },
                        {
                          "name": "Vmist",
                          "uid": "37a4f19a-7eb6-e849-a183-c80aa994d5fa"
                        },
                        {
                          "name": "Zabbix",
                          "uid": "5de72ebb-1dae-ce46-9cd4-6b8c4c229713"
                        },
                        {
                          "name": "VBulletin",
                          "uid": "5e836a00-cc4a-b444-9da4-2fa9bb69c783"
                        },
                        {
                          "name": "Zenoss",
                          "uid": "7c73a812-664c-364e-9a04-c85fd7b0272d"
                        },
                        {
                          "name": "Visual Mining",
                          "uid": "3e389c80-4288-294e-9302-f04911704397"
                        },
                        {
                          "name": "VLC",
                          "uid": "d22cf33e-9d66-2c44-9dcd-9353ef993d14"
                        },
                        {
                          "name": "WoWRoster",
                          "uid": "a20c76be-25bc-b142-94f0-69d622f6a8cf"
                        },
                        {
                          "name": "Crawlability",
                          "uid": "71e18e42-ac00-ea49-9704-0447fa83ff6d"
                        },
                        {
                          "name": "WebPageTest",
                          "uid": "ba378c7e-7225-4044-b72c-3df71af90b84"
                        },
                        {
                          "name": "WD",
                          "uid": "6a6888f9-a278-924b-9bf6-147bc347dfa5"
                        },
                        {
                          "name": "xMid",
                          "uid": "442c9b82-b39e-1540-aa11-34610c559289"
                        },
                        {
                          "name": "Zimbra",
                          "uid": "c8b1bf06-2c22-fc4d-ad2a-e616579cee31"
                        },
                        {
                          "name": "WebGate",
                          "uid": "1f17684d-4b30-c742-836a-7c607b4afef3"
                        },
                        {
                          "name": "Webmin",
                          "uid": "9f6af03f-892d-e342-aa5c-cdd0b09026a5"
                        },
                        {
                          "name": "VirtualSystem",
                          "uid": "c5e4f1dd-6dfa-184c-8e23-c15c1eb4b05b"
                        },
                        {
                          "name": "Zone Labs",
                          "uid": "52462966-bf1e-8f4d-9335-c7a222b70d7b"
                        },
                        {
                          "name": "Wordcircle",
                          "uid": "cef30d7c-5178-0240-9872-5cdbcbb279bf"
                        },
                        {
                          "name": "e-merge GmbH",
                          "uid": "406fb1ca-a0ab-d547-a85a-c11f02436f31"
                        },
                        {
                          "name": "Wavelink",
                          "uid": "d909bbe1-0838-164c-80fa-f430c390ba92"
                        },
                        {
                          "name": "Wibu Systems",
                          "uid": "4e710f32-5564-f445-b383-cc8e4a690f2f"
                        },
                        {
                          "name": "VanDyke",
                          "uid": "fd10f611-b0df-b14c-b6a2-795383330493"
                        },
                        {
                          "name": "Vtiger",
                          "uid": "d6f2ee20-83ad-774b-9968-c39e3ed8d7b3"
                        },
                        {
                          "name": "Corel Corporation",
                          "uid": "f5406d83-a889-824d-8066-318611a365c1"
                        },
                        {
                          "name": "Websense",
                          "uid": "69d3fac1-a474-2b42-ac24-b7c5f3c63aad"
                        },
                        {
                          "name": "WinRAR",
                          "uid": "323f45ed-2b28-8941-aa6a-c41e2688af69"
                        },
                        {
                          "name": "Zavio",
                          "uid": "115edbf6-0cef-cf40-9858-880bc72ef3eb"
                        },
                        {
                          "name": "Affordable Web Space Design",
                          "uid": "0b87b4f3-a301-7547-b35c-25a67e68d87c"
                        },
                        {
                          "name": "WebUI",
                          "uid": "2f067ab3-53cc-6c44-96e3-a09c3b291356"
                        },
                        {
                          "name": "Javascript",
                          "uid": "5b0da722-a924-7e49-8b68-6e607b2f0abf"
                        },
                        {
                          "name": "X.Org",
                          "uid": "18d6b563-13a7-424a-a4c7-4bcb842fc16c"
                        },
                        {
                          "name": "Mikael Software",
                          "uid": "fda4c606-6691-da42-9940-e29f367e2bb9"
                        },
                        {
                          "name": "Gwolle Guestbook Plugin",
                          "uid": "0f32743a-f1bf-ea40-88bb-0be067367043"
                        },
                        {
                          "name": "Glyph And Cog",
                          "uid": "37f3ca9a-1cc4-734b-b220-4adc1bc403a0"
                        },
                        {
                          "name": "Viscom Software",
                          "uid": "e97a105b-f9bd-8f46-b402-ab5c10abc7f7"
                        },
                        {
                          "name": "XCV Deface Maker",
                          "uid": "cc2ef63f-5e94-9442-8938-e0e9d9406b39"
                        },
                        {
                          "name": "Vicidial",
                          "uid": "2e68c106-806e-cd43-a4da-b57e28f54d3d"
                        },
                        {
                          "name": "XLink",
                          "uid": "e5f5e34c-a8a5-a848-b19b-c8af8cc5618f"
                        },
                        {
                          "name": "Zenturi",
                          "uid": "781a7293-dde6-c346-9650-e75e5cb1bf91"
                        },
                        {
                          "name": "Xerox",
                          "uid": "ab1dbc81-2cbf-d045-9b46-ceb1a8486fcc"
                        },
                        {
                          "name": "Vego",
                          "uid": "7a644029-1b29-9942-a4ae-bfb3552ad88a"
                        },
                        {
                          "name": "Voodoo Chat",
                          "uid": "ab67394a-10fe-7e4d-8a3b-4d34b07e119b"
                        },
                        {
                          "name": "Venom Board",
                          "uid": "dfabe820-9895-0f43-9779-0172583c6485"
                        },
                        {
                          "name": "XChat",
                          "uid": "6ec23452-45dc-0d4b-88e6-2c21b6b9eacc"
                        }
                      ]
                    },
                    {
                      "name": "Product Prevalence",
                      "uid": "fa6e6f33-a2fb-f449-8809-fac2eba59c18",
                      "values": [
                        {
                          "name": "Common",
                          "uid": "eefa53c8-86ca-5c46-8d68-9a174a786de2"
                        },
                        {
                          "name": "Scarce",
                          "uid": "a042b3de-1f48-9949-95f3-e5b4ecbeefcd"
                        }
                      ]
                    },
                    {
                      "name": "Protocol",
                      "uid": "8259b9d8-62c6-f247-80d4-da4047f137cb",
                      "values": [
                        {
                          "name": "HTTP",
                          "uid": "2ea1aa92-c229-9040-9119-f8c65bd49394"
                        },
                        {
                          "name": "LDAP",
                          "uid": "e71326ca-e726-cb40-9f85-aea3aab8d989"
                        },
                        {
                          "name": "IPV4",
                          "uid": "b658415d-32d4-7d43-a79e-362bb091284a"
                        },
                        {
                          "name": "DHCP",
                          "uid": "1efa19b5-efc1-ed4b-b36e-c8fbe28cc50f"
                        },
                        {
                          "name": "Syslog",
                          "uid": "e5aa2ee2-f83d-2149-8d71-719a689011c3"
                        },
                        {
                          "name": "SSL",
                          "uid": "ea032ec7-9590-334c-b177-da5ad393eb2d"
                        },
                        {
                          "name": "NTP",
                          "uid": "421dace6-67af-d14f-9bd6-e046a85146a5"
                        },
                        {
                          "name": "Kerberos",
                          "uid": "66a596ef-3f86-6741-a704-3c78644f8a2b"
                        },
                        {
                          "name": "SNMP",
                          "uid": "d98a3bf2-a6b2-2f4a-a44f-154245ede1f8"
                        },
                        {
                          "name": "Many",
                          "uid": "a1fd7c7f-8a41-c042-abb8-88a47b668254"
                        },
                        {
                          "name": "FTP",
                          "uid": "56cb2c22-e1c5-8842-a175-d0f43b5d47af"
                        },
                        {
                          "name": "VNC",
                          "uid": "b22bd8f1-1c7c-e446-8dc7-e245b9161caa"
                        },
                        {
                          "name": "OSPF",
                          "uid": "8ec82295-afe3-784a-bd42-c5c8cdcc4399"
                        },
                        {
                          "name": "MS-RPC",
                          "uid": "1cf25b83-8f54-8f41-8f13-30ad7bfb43b8"
                        },
                        {
                          "name": "DCE-RPC",
                          "uid": "2b5c3d32-e28b-304f-ab9c-74513e78845f"
                        },
                        {
                          "name": "SMTP",
                          "uid": "d984cb32-d12f-3645-8ca2-72288792afdb"
                        },
                        {
                          "name": "IRC",
                          "uid": "dca8abae-9023-cb45-8c1f-1778ba56fcbb"
                        },
                        {
                          "name": "RIP",
                          "uid": "e498152a-2db4-2f43-85ac-be8098fe84d8"
                        },
                        {
                          "name": "SQL",
                          "uid": "f53cd1fa-46c0-6e43-8538-216675f8da88"
                        },
                        {
                          "name": "Modbus",
                          "uid": "5c9ff84f-fc18-1646-9f20-2f0e8ef2b2d7"
                        },
                        {
                          "name": "DNS",
                          "uid": "740553c0-c58c-924b-ae3e-9f3697a40cf1"
                        },
                        {
                          "name": "Sun-RPC",
                          "uid": "a88a56fa-e37b-914f-bc5d-b63fa001a6bb"
                        },
                        {
                          "name": "IMAP",
                          "uid": "5f01709c-e1bf-fe41-b3fd-f5a0fe128560"
                        },
                        {
                          "name": "SIP",
                          "uid": "8ad6b4d0-3890-2746-b8ee-312bc3d29d2b"
                        },
                        {
                          "name": "SSH",
                          "uid": "ada3c21d-afec-494f-83a9-d0dcfe6de98d"
                        },
                        {
                          "name": "IGMP",
                          "uid": "2a5ce5e7-ac2e-f349-8619-8bf6bae0ded1"
                        },
                        {
                          "name": "SOCKS",
                          "uid": "f89835bd-8f12-6747-8293-03781d397df8"
                        },
                        {
                          "name": "SMB",
                          "uid": "5a94abda-24fb-1144-877a-f9945a93417a"
                        },
                        {
                          "name": "IPV6",
                          "uid": "d868ceee-8f7d-1c44-b34a-6d0c19fc4cf7"
                        },
                        {
                          "name": "POP3",
                          "uid": "e681f191-7130-8742-8c40-6c94f04da588"
                        },
                        {
                          "name": "NNTP",
                          "uid": "5236cfc3-bccc-794e-9c72-612387cf6b03"
                        },
                        {
                          "name": "PXE",
                          "uid": "163fb6b1-6a1a-be4a-921e-e31e0a80802a"
                        },
                        {
                          "name": "PHP",
                          "uid": "664b53ae-5929-0641-ab49-bdb1bc57b987"
                        },
                        {
                          "name": "Telnet",
                          "uid": "b3ae01c8-1aee-704d-8620-61e85e078dfa"
                        }
                      ]
                    },
                    {
                      "name": "Protection Type",
                      "uid": "857293c8-86be-7141-9f29-8205bde862dd",
                      "values": [
                        {
                          "name": "Flooding",
                          "uid": "39595edf-bad9-be49-bab4-c9c0fb24c552"
                        },
                        {
                          "name": "Non-Compliant",
                          "uid": "276152b6-f108-634a-b3e6-7270d91b6de2"
                        },
                        {
                          "name": "Exploit Kit",
                          "uid": "9240ccb3-b1ae-b846-8752-8d0d36f42881"
                        },
                        {
                          "name": "Vulnerability",
                          "uid": "51ad7de1-c1e2-4b41-9014-d873e38cb02e"
                        },
                        {
                          "name": "Attack Tool",
                          "uid": "4386f23b-3b1d-6847-b116-f5ea60286900"
                        },
                        {
                          "name": "Scanning Tool",
                          "uid": "e82b256c-9588-f844-83e5-1c3bda423178"
                        }
                      ]
                    },
                    {
                      "name": "Product",
                      "uid": "6713d753-768c-f045-8ff1-c8dae78898d6",
                      "values": [
                        {
                          "name": "Roller",
                          "uid": "44b3078a-7d36-9b44-90d0-190a7a058bc8"
                        },
                        {
                          "name": "Managed Printing Administration",
                          "uid": "1322bb62-9e8e-c14f-97b4-8eac76e1779f"
                        },
                        {
                          "name": "Winlog",
                          "uid": "9f99cc52-854d-394d-aa46-fad6baa98adb"
                        },
                        {
                          "name": "DT5130 Router",
                          "uid": "06f822c0-2737-dd4c-a481-8532e8e1306f"
                        },
                        {
                          "name": "Norton Internet Security 2004",
                          "uid": "0b834d10-1fc5-064c-8b68-37438b7f1dc0"
                        },
                        {
                          "name": "RealWin",
                          "uid": "1d45deed-03e7-a64f-97bf-5602cfd10dcc"
                        },
                        {
                          "name": "ICQ ActiveX Control",
                          "uid": "b297491a-eb26-824e-8d0c-2d822faea061"
                        },
                        {
                          "name": "Java Web Start",
                          "uid": "65eb3a02-7683-7e4c-bd33-f48aaad14afb"
                        },
                        {
                          "name": "N750 Router",
                          "uid": "e25b042f-a951-3048-bfd7-3d0f250dec7a"
                        },
                        {
                          "name": "LDAP server",
                          "uid": "01491077-03ff-5e4c-95cf-f8aa3007aa79"
                        },
                        {
                          "name": "Bind",
                          "uid": "dc708ed1-8687-814f-866e-63a69c8ed81a"
                        },
                        {
                          "name": "Mac OS X",
                          "uid": "67ebdf68-a44b-ac49-a416-820115eea494"
                        },
                        {
                          "name": "WooCommerce",
                          "uid": "80aefa94-aeac-c444-bc81-b37679884f86"
                        },
                        {
                          "name": "Imail",
                          "uid": "314804a0-fecf-ea49-850b-ecead13a8978"
                        },
                        {
                          "name": "Control BrowseDialog",
                          "uid": "e35e9464-1bd4-164f-bc60-36df207fca9e"
                        },
                        {
                          "name": "WebEx Player",
                          "uid": "acc7df30-8652-b849-a5af-7173d545b853"
                        },
                        {
                          "name": "Windows Explorer",
                          "uid": "2f80ae08-f27f-554c-8a4b-310709a0239a"
                        },
                        {
                          "name": "Open Enterprise Server",
                          "uid": "bf458955-3b7b-584f-8de2-ae158335c3f2"
                        },
                        {
                          "name": "Content Editor",
                          "uid": "27023072-2f5d-3f45-ab18-376174bed1d4"
                        },
                        {
                          "name": "eDVR Manager",
                          "uid": "35ff616f-83eb-584a-b5b9-08c0b228968d"
                        },
                        {
                          "name": "Chrome",
                          "uid": "8a8e462c-ccaf-5a42-a775-f039a97ebed7"
                        },
                        {
                          "name": "Internet Security",
                          "uid": "f5dbdb95-48f8-894f-bbe2-91c1bc713231"
                        },
                        {
                          "name": "RNA",
                          "uid": "124acd47-b76e-1c4f-8b27-d5c9e0ea4b83"
                        },
                        {
                          "name": "Kerberos",
                          "uid": "1e1dbde5-6d07-474d-8b59-fb30c7963edc"
                        },
                        {
                          "name": "MaxDB",
                          "uid": "9171fb2d-a6e4-d048-a81b-5b9974bfcfcb"
                        },
                        {
                          "name": "csGuestbook.cgi",
                          "uid": "72f7d102-e684-4642-9336-e600c843d123"
                        },
                        {
                          "name": "ForceControl",
                          "uid": "ff007499-52d1-6f44-8990-261f2d4c1808"
                        },
                        {
                          "name": "FreeScan",
                          "uid": "3056fe97-4ad9-bc41-8a4d-2264893e7733"
                        },
                        {
                          "name": "Firefox",
                          "uid": "9bd7acb5-26ed-474f-98ea-8d4f9d0f5531"
                        },
                        {
                          "name": "Vino",
                          "uid": "7e04341d-c87e-254c-86e9-307178260a5d"
                        },
                        {
                          "name": "Asterisk",
                          "uid": "d841c940-2ae0-8548-bcad-f7b42d2be3c8"
                        },
                        {
                          "name": "Update Manager 4",
                          "uid": "c5f5d79c-aa1f-ad44-8b3a-cb184d73fb7b"
                        },
                        {
                          "name": "Feature Extraction",
                          "uid": "88fb82f1-27b1-8647-9716-9a06cfa25d36"
                        },
                        {
                          "name": "ControlLogix",
                          "uid": "3a33f3ca-7ef8-d749-a9bd-95d776f41735"
                        },
                        {
                          "name": "Program Neighborhood Client",
                          "uid": "e3cb0812-d7a3-0b45-81b5-53b86f7599c5"
                        },
                        {
                          "name": "Lotus Notes",
                          "uid": "f576d6ad-53c1-a64c-bc6d-1910898c0b37"
                        },
                        {
                          "name": "DataLife Engine",
                          "uid": "7928ee49-5e80-9749-8922-7d31cf85abcc"
                        },
                        {
                          "name": "AntiVirus",
                          "uid": "0ca4a78b-7f88-0b46-adeb-dc83fe4da4aa"
                        },
                        {
                          "name": "Acrobat Reader",
                          "uid": "2ad450bd-afa4-ef47-a5c8-eb9fbbc7a463"
                        },
                        {
                          "name": "Backup Exec Agent",
                          "uid": "f2023b32-db98-9247-a5b4-8ce1704edf7b"
                        },
                        {
                          "name": "Mailutils",
                          "uid": "d6b14941-f5a9-674f-872e-52f7bf2bb6a6"
                        },
                        {
                          "name": "WebAccess",
                          "uid": "a221ce86-8d8c-7240-9ef7-cfbf7dfce1a9"
                        },
                        {
                          "name": "MarkVision Enterprise",
                          "uid": "4112d75f-8839-7347-817b-ac47159d6e0b"
                        },
                        {
                          "name": "ACDSee",
                          "uid": "f5916b4b-9ac4-7544-9b00-15834827cf01"
                        },
                        {
                          "name": "VLC Media Player",
                          "uid": "164a4ff7-a772-9842-9e67-b325963834e9"
                        },
                        {
                          "name": "Acks",
                          "uid": "a2a2740b-448d-144d-93d3-f3647236d5bc"
                        },
                        {
                          "name": "DataHub",
                          "uid": "021e2ba4-383e-794e-9af3-f9ffc6519614"
                        },
                        {
                          "name": "Cloudforms",
                          "uid": "0b9ab30e-cda2-5142-bee3-b4cdf62492f7"
                        },
                        {
                          "name": "Chat Module",
                          "uid": "01be12c5-6d1b-1a4e-aa77-6b278c0b5dcd"
                        },
                        {
                          "name": "SketchUp",
                          "uid": "473f6fd6-0331-bb47-91cc-35adca4ca0de"
                        },
                        {
                          "name": "Servergraph",
                          "uid": "6e7a593f-0cdc-594b-a915-f1355caf68b1"
                        },
                        {
                          "name": "FactoryLink",
                          "uid": "461018bf-4234-164d-89da-d6433805a5e0"
                        },
                        {
                          "name": "AlphaStor",
                          "uid": "2f1dc466-6ad3-3140-a631-a83f2db1af32"
                        },
                        {
                          "name": "FreeBSD",
                          "uid": "417c91da-84f1-ac46-b8ed-a4ba20a71042"
                        },
                        {
                          "name": "Docpile",
                          "uid": "58c73fb1-fa98-f444-b3ce-0f96532f13cc"
                        },
                        {
                          "name": "Red Hat",
                          "uid": "48df1cb7-baab-af42-b406-fe11caf774b6"
                        },
                        {
                          "name": "NetVault",
                          "uid": "b51d04a8-34ce-1e4b-9c16-55e281da8607"
                        },
                        {
                          "name": "InstallShield",
                          "uid": "aafdff0b-140a-ff47-a821-5a11cab20e3d"
                        },
                        {
                          "name": "OSSIM",
                          "uid": "279111c0-0093-984f-a63a-fa52dcefb67c"
                        },
                        {
                          "name": "Interactive Graphical SCADA System",
                          "uid": "17794c65-c17a-8f49-b76b-205ea91cbdaa"
                        },
                        {
                          "name": "Camimage",
                          "uid": "8f56f03a-ad8b-c643-8d63-cdc9df7caa79"
                        },
                        {
                          "name": "Mail-SeCure",
                          "uid": "3ea1c39c-82dd-0942-9c59-2742bcc7f963"
                        },
                        {
                          "name": "Security Scanner",
                          "uid": "0d8bee53-9931-724b-92d7-500496bae119"
                        },
                        {
                          "name": "Genesis",
                          "uid": "e46aca96-c65c-6049-b439-d0d2a0cbf954"
                        },
                        {
                          "name": "Octopus 0.1",
                          "uid": "7af1f098-997f-7c4a-8f7f-2f2e4925f663"
                        },
                        {
                          "name": "InterBase",
                          "uid": "b4aa6402-290a-ea49-ba34-8fd59f0ff00e"
                        },
                        {
                          "name": "Unzip",
                          "uid": "71ae5099-4c5e-0242-be50-25ebaa2b9a1d"
                        },
                        {
                          "name": "CoDeSys",
                          "uid": "5b2ed77b-ddb1-3941-892c-c49f5a69e809"
                        },
                        {
                          "name": "Scrutinizer",
                          "uid": "e315ac02-f140-f543-a0fc-b1be89458e55"
                        },
                        {
                          "name": "SigComp",
                          "uid": "368aa3de-1435-9c41-910f-04f8ea43aa1e"
                        },
                        {
                          "name": "HTTPD",
                          "uid": "52863dcd-a521-c04e-9ea1-18882359759f"
                        },
                        {
                          "name": "Winamp",
                          "uid": "f9356ddc-9e37-9744-b3f4-ec47654422e0"
                        },
                        {
                          "name": "Horde Application Framework",
                          "uid": "8a9515e9-1fd9-c141-83bd-1d683a2ab8ad"
                        },
                        {
                          "name": "SystemcastWizard Lite",
                          "uid": "ec745dfd-41c9-d340-b91d-8f89949f410b"
                        },
                        {
                          "name": "Tiki Wiki",
                          "uid": "9987f35b-f0aa-504f-955a-e1f4c27e7d40"
                        },
                        {
                          "name": "Exim",
                          "uid": "7ca60dd8-e538-5e45-84af-53b2a64d3b20"
                        },
                        {
                          "name": "MPEG-4",
                          "uid": "1e7bed41-d35b-9440-a7b1-1356b68b1f92"
                        },
                        {
                          "name": "Light Alloy",
                          "uid": "47076f43-f7dc-5648-999b-3de68bdac87d"
                        },
                        {
                          "name": "Golden FTP",
                          "uid": "077c6d1b-a408-fb44-9288-170c78fd8bcd"
                        },
                        {
                          "name": "IDEAL",
                          "uid": "7f224244-4497-ad48-8cf0-95f204ce6458"
                        },
                        {
                          "name": "CS3000",
                          "uid": "a8ac365d-2565-b845-a845-afa7ac0307e0"
                        },
                        {
                          "name": "ACGVclick",
                          "uid": "c04ee1b3-ab17-7f43-9c0a-55197a296764"
                        },
                        {
                          "name": "IP Office",
                          "uid": "503378d4-3918-0e42-b6e7-3537112c1371"
                        },
                        {
                          "name": "Anti-Virus",
                          "uid": "abe1bcf3-59ec-8d4e-a6d3-116c9ed1250d"
                        },
                        {
                          "name": "Core",
                          "uid": "b80b025a-677c-f649-8b52-2b8661a98bde"
                        },
                        {
                          "name": "Java",
                          "uid": "7c392f17-622d-0c40-88cc-fdc63964ea16"
                        },
                        {
                          "name": "Outlook",
                          "uid": "5f02cfd8-6f43-f542-9b8d-93f80db26977"
                        },
                        {
                          "name": "Application Server Portal",
                          "uid": "5647fdaf-8621-c945-ab5d-aca1f5ebf9a4"
                        },
                        {
                          "name": "NetWeaver Portal",
                          "uid": "e0fd8973-503e-984f-9062-678e30c52adb"
                        },
                        {
                          "name": "Groupwise",
                          "uid": "ee29a614-0277-d14c-8644-1f1cf2ca5d46"
                        },
                        {
                          "name": "WS_FTP",
                          "uid": "8b861ef2-815b-204b-95a2-5704e13ee37c"
                        },
                        {
                          "name": "Ruby on Rails",
                          "uid": "ed2e7a68-ef59-9246-8411-2e47d4dc4096"
                        },
                        {
                          "name": "Enterprise Server",
                          "uid": "144de410-8a3b-2a41-b1ce-0427efaea4c9"
                        },
                        {
                          "name": "AutoCAD",
                          "uid": "a3765ca4-2cfb-194e-95ab-29813e5648bb"
                        },
                        {
                          "name": "ImageMagick",
                          "uid": "d8056205-6d00-1447-9980-7f2cc36fa9b0"
                        },
                        {
                          "name": "ePolicy Orchestrator",
                          "uid": "6e217df2-07c3-284c-94fa-d9ada4574149"
                        },
                        {
                          "name": "Flash Player",
                          "uid": "cb8f36d2-c4d3-4b4d-9c78-dd609bfcb555"
                        },
                        {
                          "name": "Opera",
                          "uid": "5d3e3210-352e-cb4e-a430-4b58fc265566"
                        },
                        {
                          "name": "Arcserve Backup",
                          "uid": "42a06c78-b425-0c4e-bc40-7abea9325d89"
                        },
                        {
                          "name": "TurboFTP Server",
                          "uid": "f4228d5f-e6d5-f549-905b-992b723aee4f"
                        },
                        {
                          "name": "Office OCX",
                          "uid": "5e61efcf-0da3-5c48-a029-58e7d04ee808"
                        },
                        {
                          "name": "Flash Media Player",
                          "uid": "c7677185-0a2e-754b-b0b3-89974da23a45"
                        },
                        {
                          "name": "Zend Framework",
                          "uid": "eefee312-67a7-744e-b62e-437040beba4a"
                        },
                        {
                          "name": "rwm Overlay",
                          "uid": "d3f8dfb0-7a36-eb4d-9f0a-11b0fe9dd19a"
                        },
                        {
                          "name": "Download Helper ActiveX Control",
                          "uid": "3913e09a-7740-8044-b8b2-c9ff34d109a5"
                        },
                        {
                          "name": "eSignal",
                          "uid": "3c5d1117-4fe5-df40-97de-3554f244871f"
                        },
                        {
                          "name": "M-Business Anywhere",
                          "uid": "cf78df2e-e524-1e43-8a0e-afddef84b21e"
                        },
                        {
                          "name": "Mac OS",
                          "uid": "5bd7e0e2-2ff1-6548-9b71-95eb35ff8da3"
                        },
                        {
                          "name": "FotoSlate",
                          "uid": "d23b9f32-5982-0e40-a68c-9a510d2e24be"
                        },
                        {
                          "name": "Component",
                          "uid": "60e2db77-be98-ae4e-83f5-59954485181e"
                        },
                        {
                          "name": "Sami HTTP Server",
                          "uid": "f52e48a4-1f8c-7a49-85d4-086744e183fa"
                        },
                        {
                          "name": "Endpoint Protection",
                          "uid": "d102a330-0219-134c-9b7f-550dd7e34ded"
                        },
                        {
                          "name": "Program Neighborhood Agent",
                          "uid": "02a56fcd-7e2e-ef4e-952d-241ae8610d6f"
                        },
                        {
                          "name": "Skype",
                          "uid": "43bc3034-4953-3f4d-a3f2-5a15440ef4bf"
                        },
                        {
                          "name": "Reflection",
                          "uid": "0a4792f6-9b5e-8246-8ed4-49dee69f2962"
                        },
                        {
                          "name": "Download Manager",
                          "uid": "40864aaa-4156-be4f-a665-45d762ef3e9a"
                        },
                        {
                          "name": "WebEx Meeting Manager",
                          "uid": "9ee7207c-cc17-b544-8cbc-c8628ea9f0ee"
                        },
                        {
                          "name": "Update Manager",
                          "uid": "c178af51-552f-1044-8883-e71297c99c05"
                        },
                        {
                          "name": "OpenManage",
                          "uid": "7c7e0751-0638-b947-b812-c05b9d96dd25"
                        },
                        {
                          "name": "Data Protector",
                          "uid": "8378dc25-33dd-1a46-9e49-0e14bfe55f3c"
                        },
                        {
                          "name": "VNC Viewer",
                          "uid": "012bd941-df4b-314c-b21d-45906267be2f"
                        },
                        {
                          "name": "V-CMS",
                          "uid": "ab68374a-5b08-f642-b00e-2a17128b1ebe"
                        },
                        {
                          "name": "IFRAME",
                          "uid": "793accbe-cdb4-1e41-a33a-d0be4b3b833c"
                        },
                        {
                          "name": "Winftp FTP Server",
                          "uid": "c554d511-f604-f644-a859-039508eb56de"
                        },
                        {
                          "name": "CoolPDF",
                          "uid": "a20e731e-ee2d-7643-928c-53fad3401ebf"
                        },
                        {
                          "name": "CMailServer",
                          "uid": "a968a49e-8c55-c448-b9fa-3174a0515c97"
                        },
                        {
                          "name": "FlashGames Module",
                          "uid": "4fb6c384-96e9-1b46-8709-fc8eb123e349"
                        },
                        {
                          "name": "Messenger",
                          "uid": "65c0753e-4b41-7a40-9f78-fc849702871a"
                        },
                        {
                          "name": "Business Information Server",
                          "uid": "9f30ccf4-4ca0-424d-98c0-0bdf07424061"
                        },
                        {
                          "name": "BadBlue",
                          "uid": "0aa8aafa-5289-e74d-9e15-08cce386f01b"
                        },
                        {
                          "name": "Linksys",
                          "uid": "a2a48925-d4cc-9448-a993-3025d4d7d2d8"
                        },
                        {
                          "name": "Multi Server",
                          "uid": "124d1054-6fe3-824d-ad82-bafae4d28171"
                        },
                        {
                          "name": "Arcserve D2D",
                          "uid": "1e9c502a-cc08-5644-97ee-156eb8db76dc"
                        },
                        {
                          "name": "Asset Manager",
                          "uid": "ca2c9979-72c0-d04e-b475-17515433fbc4"
                        },
                        {
                          "name": "Excel",
                          "uid": "f51c1af2-4b3f-f843-8a38-ddc15de6df43"
                        },
                        {
                          "name": "Bad Blue",
                          "uid": "69ce9c4b-6d5e-4e43-ba46-f4ef37847863"
                        },
                        {
                          "name": "ProClima",
                          "uid": "1959e446-3755-1a41-b38f-1a044def16c2"
                        },
                        {
                          "name": "Database Server",
                          "uid": "326f689e-205f-f74c-80b8-ee1a1eb49344"
                        },
                        {
                          "name": "ProCurve Manager",
                          "uid": "7fc80304-5ca2-1f45-b5bc-62630764a495"
                        },
                        {
                          "name": "Contact Form",
                          "uid": "e7bba7d3-44b4-a547-bf19-7c3c432dbd8e"
                        },
                        {
                          "name": "QuickTime",
                          "uid": "e9f839d7-37e9-2440-ba57-132af2a4b534"
                        },
                        {
                          "name": "eDirectory",
                          "uid": "0a090013-b62d-d640-b4a1-fe4aa385b6a4"
                        },
                        {
                          "name": "ADAMView",
                          "uid": "ee274767-4ca6-8c4b-8047-92ff31a87ad0"
                        },
                        {
                          "name": "Solid Edge",
                          "uid": "8c914b60-a066-464f-a6fb-1ac0868a6d1e"
                        },
                        {
                          "name": "HTTP Server",
                          "uid": "7ebce1f3-c193-c449-8993-eedccd37e8a4"
                        },
                        {
                          "name": "Struts",
                          "uid": "400be40f-bd76-c24c-9c3c-b9bf7967dff1"
                        },
                        {
                          "name": "Mailpoet Newsletters",
                          "uid": "22b8e296-b55e-2d4f-b31f-a1e268a7c05b"
                        },
                        {
                          "name": "IM Manager",
                          "uid": "e4a1b46e-ebaa-c945-b01a-9941e986387a"
                        },
                        {
                          "name": "Rsync",
                          "uid": "54079df3-f028-834d-a2aa-fee653954255"
                        },
                        {
                          "name": "Prime Security Manager",
                          "uid": "70c5c06e-d8ac-924e-856b-bbf3841048fc"
                        },
                        {
                          "name": "NetWeaver",
                          "uid": "0483e1a0-a733-e540-83cc-b129c5cd8684"
                        },
                        {
                          "name": "Radius",
                          "uid": "dd0d661d-4c27-0445-8616-2e2d10d447a0"
                        },
                        {
                          "name": "OpenView",
                          "uid": "701debc9-abd2-0649-ad3d-63707abb84f2"
                        },
                        {
                          "name": "PowerPoint",
                          "uid": "b421e295-88dd-ec45-bc60-f96c4cc40c4e"
                        },
                        {
                          "name": "CUPS",
                          "uid": "be6ab9f6-17e7-4d4a-9927-55a7779adaf8"
                        },
                        {
                          "name": "Photoshop",
                          "uid": "82579667-2135-4f47-ad0d-79bf928a1645"
                        },
                        {
                          "name": "Captiva QuickScan Pro",
                          "uid": "151b0673-c8ec-3a40-a817-5d6e0c344d0c"
                        },
                        {
                          "name": "Simatic",
                          "uid": "fb8d4fe8-b6c6-2c47-8546-295c2ac28bf8"
                        },
                        {
                          "name": "Presentation Server",
                          "uid": "082e696d-087a-7349-b0f7-450119552656"
                        },
                        {
                          "name": "Spring Framework",
                          "uid": "8ca6d852-0d47-9043-8c02-8f1de951e91d"
                        },
                        {
                          "name": "Word",
                          "uid": "ad90bb64-86c8-f34a-ac18-d09da3a61752"
                        },
                        {
                          "name": "Qpid",
                          "uid": "eca80cc1-1b7c-524a-b2d1-0f07e3b2ffb3"
                        },
                        {
                          "name": "Modicon",
                          "uid": "57161280-c0f3-8449-8a38-9e4dbb97bd5c"
                        },
                        {
                          "name": "Reader and Acrobat",
                          "uid": "3d1452a6-62eb-ba41-88c7-a2fc6002ea1b"
                        },
                        {
                          "name": "NetWorker",
                          "uid": "7b077a2d-f7ac-254f-8478-aa38540302de"
                        },
                        {
                          "name": "Module",
                          "uid": "8216a089-f1db-954e-861b-af4726120195"
                        },
                        {
                          "name": "Netware",
                          "uid": "99a68e2f-ac73-9f46-ab49-04217afbabf2"
                        },
                        {
                          "name": "AutoVue",
                          "uid": "81f5c41d-9b0a-4d4d-8950-3609156228a6"
                        },
                        {
                          "name": "XI Network Monitor",
                          "uid": "16b0a563-83a3-3241-a26c-d946661a4398"
                        },
                        {
                          "name": "VLC",
                          "uid": "158af480-6e22-8848-866e-a93fe57e9301"
                        },
                        {
                          "name": "Mobile Domain",
                          "uid": "98a4ba4f-31f9-0044-baf5-e8bac9824fa9"
                        },
                        {
                          "name": "SCADA Expert ClearSCADA",
                          "uid": "97410a8d-883a-6d43-9cb8-c31c47629cc5"
                        },
                        {
                          "name": "Solaris",
                          "uid": "21def497-d808-9842-8fe3-68554ca58970"
                        },
                        {
                          "name": "Acrobat and Reader",
                          "uid": "6af4e3b3-426f-c04b-a06c-ff3ca0099762"
                        },
                        {
                          "name": "Lotus Domino",
                          "uid": "ed9bc78d-8221-754b-bc7e-ee809488292c"
                        },
                        {
                          "name": "Security Center",
                          "uid": "b64a15ce-01c8-1848-9a45-398e0d80aeab"
                        },
                        {
                          "name": "Shoutcast",
                          "uid": "1156a208-a99d-fd4d-b7d7-31d0cc57fe46"
                        },
                        {
                          "name": "Internet Transaction Server",
                          "uid": "686a75dd-dccb-e147-bbd5-a2141fc3bafe"
                        },
                        {
                          "name": "ERwin Web Portal",
                          "uid": "3818568d-c939-5c4b-bb7a-4d87bd51da9a"
                        },
                        {
                          "name": "Informix",
                          "uid": "4ca738d1-1315-1c48-b631-5ce1459b330a"
                        },
                        {
                          "name": "Reader",
                          "uid": "b371f0e8-f9f4-7547-b209-fdab1862051c"
                        },
                        {
                          "name": "MySQL",
                          "uid": "07711bbe-8b59-ad4b-b91d-6693d695c718"
                        },
                        {
                          "name": "Database",
                          "uid": "3669042f-c6c7-5945-971d-11b505f0c1b0"
                        },
                        {
                          "name": "Web Gateway",
                          "uid": "ef059b48-8b51-b947-acfd-d567f8c72e15"
                        },
                        {
                          "name": "DirectX",
                          "uid": "9491e337-1d53-3345-a3a3-70e13ba328e8"
                        },
                        {
                          "name": "Intelligent Management Center",
                          "uid": "f7109104-7c8b-8a4f-949b-484727bbcf9f"
                        },
                        {
                          "name": "Fusion Middleware",
                          "uid": "50ed362c-b6e1-8644-ab1a-0417451a79a7"
                        },
                        {
                          "name": "Virtual Technician",
                          "uid": "be791cff-50d2-0e4a-a563-e3fcff691879"
                        },
                        {
                          "name": "Web Reporter",
                          "uid": "083b5489-3aa3-eb47-a03c-5d04ef0e1df7"
                        },
                        {
                          "name": "Tivoli Provisioning Manager",
                          "uid": "f0b13c35-1d20-2a49-932d-6277920c8130"
                        },
                        {
                          "name": "Application Server",
                          "uid": "2241022f-16f6-6441-8dd9-725829ec3a95"
                        },
                        {
                          "name": "Websphere",
                          "uid": "ddf386f8-2374-5b48-b5a1-8cca916907f7"
                        },
                        {
                          "name": "SolidDB",
                          "uid": "8a3e9985-daa0-204b-8e1c-076860e485a2"
                        },
                        {
                          "name": "RoboHelp",
                          "uid": "8efce08c-841f-db40-a3ca-7312a02c0f38"
                        },
                        {
                          "name": "Remote Manager",
                          "uid": "27edf996-b2f9-d04d-b534-fbdd2de19664"
                        },
                        {
                          "name": "Visual Trace",
                          "uid": "a95cceb3-bdcc-c149-b361-4fe963e8b80a"
                        },
                        {
                          "name": "Alert Management System",
                          "uid": "cc4928da-9c25-644b-a104-bebf56c156e5"
                        },
                        {
                          "name": "Unified Communications Manager",
                          "uid": "6e668ef2-7557-3a45-94e6-3a1b69e3f84a"
                        },
                        {
                          "name": "Safari",
                          "uid": "afff9482-5aa2-2e4a-a752-c85af81d70a1"
                        },
                        {
                          "name": "OpenType",
                          "uid": "e348c5a3-5d3d-684a-9f03-5c7fe53178cb"
                        },
                        {
                          "name": "Visual FoxPro",
                          "uid": "e7e2131b-770a-bb47-bf2a-4b20096b87ce"
                        },
                        {
                          "name": "NetBackup Server",
                          "uid": "4f0331e9-233d-f74c-86c2-36158a550fe3"
                        },
                        {
                          "name": "NetMail",
                          "uid": "dd832193-f0d1-8144-a961-812fe011fbc5"
                        },
                        {
                          "name": "WordPad",
                          "uid": "e542d79d-0d41-fd46-8c59-633c16f371d1"
                        },
                        {
                          "name": "AntiVirus Scan Engine",
                          "uid": "7515ba9c-9a55-9e44-a885-8f0a065744ef"
                        },
                        {
                          "name": "Endeca Server",
                          "uid": "1e081fb5-667b-bb4d-b4b4-8eff71c03ccc"
                        },
                        {
                          "name": "Glassfish Server",
                          "uid": "8ad14965-6c6c-1b49-93a4-b5e19bd52cd7"
                        },
                        {
                          "name": "Client Print Provider",
                          "uid": "ff4fc889-9617-424a-8598-495463cd2bfc"
                        },
                        {
                          "name": "Secure Backup",
                          "uid": "0202f3c6-971c-f942-8b3c-ad537daed48c"
                        },
                        {
                          "name": "ColdFusion",
                          "uid": "76913652-a77b-e141-8299-6a8e25dc48d9"
                        },
                        {
                          "name": "Windows Media Player",
                          "uid": "b8e4efbf-3f13-5848-aba9-27b8b9a10359"
                        },
                        {
                          "name": "Tivoli Endpoint Manager",
                          "uid": "bb0f39fd-3c1c-1d41-8d54-a83a4d41d934"
                        },
                        {
                          "name": "DB2 Database",
                          "uid": "7bac8d04-ac99-9443-9f9c-1d65c8e3f13f"
                        },
                        {
                          "name": "Installation Manager",
                          "uid": "f6b8f4f4-d1cf-d645-911b-9d5c262ead3d"
                        },
                        {
                          "name": "Remote Desktop Client",
                          "uid": "3f197ed9-2e1c-184e-915d-75dd8630fe94"
                        },
                        {
                          "name": "Tivoli Storage Manager",
                          "uid": "34658a8f-31f1-3343-a719-59202e239da2"
                        },
                        {
                          "name": "ZENworks",
                          "uid": "403744be-dae7-5240-ad44-d95377ac1e75"
                        },
                        {
                          "name": "Hyperion Strategic Finance",
                          "uid": "2c6554cd-328e-0442-a295-0227573c4b89"
                        },
                        {
                          "name": "Tomcat",
                          "uid": "6f8d1be3-912c-dd42-9421-f0876134386a"
                        },
                        {
                          "name": "Office",
                          "uid": "3351a64e-abab-b44b-96c6-46748bd402f7"
                        },
                        {
                          "name": "Glassfish Enterprise Server",
                          "uid": "7d3b80f1-197f-9844-aae4-5dd859434d51"
                        },
                        {
                          "name": "WebShield SMTP",
                          "uid": "cd726adc-d2f1-0044-938b-77235a22e1db"
                        },
                        {
                          "name": "Flash",
                          "uid": "9d966043-05df-a24b-a3c1-3475ee872cc0"
                        },
                        {
                          "name": "Shockwave Player",
                          "uid": "cc925675-e283-9544-b8ee-bc4fb6330cb6"
                        },
                        {
                          "name": "Webkit",
                          "uid": "5f6d2233-3fca-414f-a252-10994b7217b2"
                        },
                        {
                          "name": "QuickFinder Server",
                          "uid": "7e36acbf-843b-5446-866f-0a4be299d23e"
                        },
                        {
                          "name": "Director",
                          "uid": "e50550f8-895a-b14e-b4cd-19a5d2fc6b42"
                        },
                        {
                          "name": "Internet Explorer",
                          "uid": "a6c73eec-c99d-4248-8de5-6e169de36ea0"
                        },
                        {
                          "name": "Tivoli Monitoring Express",
                          "uid": "093d5a89-7a07-a841-8e54-6d630171de23"
                        },
                        {
                          "name": "Linux",
                          "uid": "f5fdb851-6cba-6e41-9b27-cc46fda19622"
                        },
                        {
                          "name": "Web Servers",
                          "uid": "f76fb1ad-658b-024d-a362-c19f636c8388"
                        },
                        {
                          "name": "Telnet Client",
                          "uid": "1ad7bdb6-82e3-0441-9596-ad911ae64d1f"
                        },
                        {
                          "name": "Multiple Products",
                          "uid": "55d87d82-4b34-f648-b12b-3dea7f8e854a"
                        },
                        {
                          "name": "Malware Protection Engine",
                          "uid": "e603ed09-2a60-2647-a894-1f42826e887e"
                        },
                        {
                          "name": "FTP Servers",
                          "uid": "b9daa03f-e871-ff46-9b7d-746f6d472045"
                        },
                        {
                          "name": "Microsoft SQL Server",
                          "uid": "03b18076-8cd9-8c41-b00b-cc560bd9d0cb"
                        },
                        {
                          "name": "MPEG Layer-3 Codecs",
                          "uid": "b200a787-6248-cc4c-9c90-c591380126a8"
                        },
                        {
                          "name": "SPSS SamplePower",
                          "uid": "808201d5-144b-b74d-b9c8-5cb28f490949"
                        },
                        {
                          "name": "Personal Communications",
                          "uid": "1acec4eb-1400-2b44-885e-a3eea10bad8b"
                        },
                        {
                          "name": "SmartOffice",
                          "uid": "47eb44e1-1693-8d4b-a5d4-fb6ad2de26a9"
                        },
                        {
                          "name": "PHP Servers",
                          "uid": "9d6cb2c3-5a5c-2c4e-8042-d17b1e325ea7"
                        },
                        {
                          "name": "Visual Basic",
                          "uid": "c969ee5f-6c25-9a41-ba2f-ab2cd356cd71"
                        },
                        {
                          "name": "MS-SQL Server",
                          "uid": "26a5bea2-1a6b-5a47-ab7b-ea72ea106a5b"
                        },
                        {
                          "name": "FrontPage",
                          "uid": "8276df7d-78af-e649-95b1-9e90c8c9c228"
                        },
                        {
                          "name": "XML Core Services",
                          "uid": "b575b92b-a4d5-5f46-b236-5f3819553328"
                        },
                        {
                          "name": "Cognos",
                          "uid": "0ee5292c-4d5c-fc49-90d6-ca732d27a56a"
                        },
                        {
                          "name": "MDaemon",
                          "uid": "e7e9fc22-6760-214d-9c71-16317bcac16c"
                        },
                        {
                          "name": "MSN Messenger",
                          "uid": "73929394-d441-9446-88df-507882883e7c"
                        },
                        {
                          "name": "LDAP",
                          "uid": "b312ee4a-7069-4547-9aa1-2b8f34a42298"
                        },
                        {
                          "name": "Movie Maker",
                          "uid": "9d508662-7161-8047-aa0e-33f454edd287"
                        },
                        {
                          "name": "Photostockplus",
                          "uid": "1f41e8b4-9f14-6b47-9c55-0f0731e6f975"
                        },
                        {
                          "name": "RealVNC",
                          "uid": "87738803-b5d2-8246-af62-dd8ba5e5fa96"
                        },
                        {
                          "name": "Graphics Filters",
                          "uid": "70047dfc-01d1-a24b-9b98-c7e015af111b"
                        },
                        {
                          "name": "DNS Server",
                          "uid": "583c2353-93c7-f942-8b07-6b454c3ad8e3"
                        },
                        {
                          "name": "DirectShow",
                          "uid": "96e98f02-6bb1-7840-9e76-da8eae61c23f"
                        },
                        {
                          "name": ".NET",
                          "uid": "c4d08a9f-0caa-c74e-bd24-b4917d6d8df5"
                        },
                        {
                          "name": "Imail Server",
                          "uid": "fb371cb7-729d-3e4f-a0b8-7b187110d1f2"
                        },
                        {
                          "name": "SecurityGateway",
                          "uid": "421e120d-43bc-544a-ae65-9f61dbb85c52"
                        },
                        {
                          "name": "Access",
                          "uid": "7c33f663-eba3-354f-b390-ebfaf014b254"
                        },
                        {
                          "name": "Project",
                          "uid": "eb7009ee-1332-cc47-a51e-c19900704879"
                        },
                        {
                          "name": "BrightStor ARCserve",
                          "uid": "08604abc-31e5-5f4c-8ca9-413ee5c41486"
                        },
                        {
                          "name": "MSN",
                          "uid": "95c58fe0-9deb-8646-9583-9bfff183c34e"
                        },
                        {
                          "name": "SQL Server",
                          "uid": "ff42d652-4a5a-4f47-9a9c-f73886a44412"
                        },
                        {
                          "name": "IMAP_Servers",
                          "uid": "28f5dccf-cd63-2c42-89fc-ae098d5ebc1e"
                        },
                        {
                          "name": "Windows",
                          "uid": "97b71950-f228-874d-b15f-06e3609c27c5"
                        },
                        {
                          "name": "UltraVNC",
                          "uid": "5db67da0-ca63-0349-8057-b1583182e67a"
                        },
                        {
                          "name": "DNS Client",
                          "uid": "aae4b55e-1aa9-b542-96f2-106bc23503c8"
                        },
                        {
                          "name": "Data Access Components",
                          "uid": "e1bc8dfa-43ce-ff4b-86ec-08168904d77c"
                        },
                        {
                          "name": "Not Applicable",
                          "uid": "a1753d9d-5749-234b-ac6f-224069124ec7"
                        },
                        {
                          "name": "VNC",
                          "uid": "54a12086-8b92-5441-be4e-102c386a93ef"
                        },
                        {
                          "name": "Google Talk",
                          "uid": "76c4ef38-673e-424e-896d-02131fd0775a"
                        },
                        {
                          "name": "Active Directory",
                          "uid": "e52644a3-15e2-3d41-a71a-ad0349b5c40a"
                        },
                        {
                          "name": "SCADA",
                          "uid": "2768f8f4-a4d4-2045-b04d-2b0cda692472"
                        },
                        {
                          "name": "Business Intelligence Enterprise Edition",
                          "uid": "1b89fe07-b3f1-5d48-a06e-dd3453ef757d"
                        },
                        {
                          "name": "Exchange Server",
                          "uid": "30c35c61-40a7-f94f-a26a-e85972116df9"
                        },
                        {
                          "name": "Media Player",
                          "uid": "7505ff60-2ff8-a944-829d-305739302bf2"
                        },
                        {
                          "name": "Ghostscript",
                          "uid": "ebe8ba33-136b-8946-826b-6c8f7ae64dd0"
                        },
                        {
                          "name": "MicroSCADA",
                          "uid": "0a03ff5b-91ad-644a-8a41-d17aa026ae9f"
                        },
                        {
                          "name": "SharePoint",
                          "uid": "bf02e47d-092a-6e48-bda9-57b5fd3c9cf0"
                        },
                        {
                          "name": "Acrobat",
                          "uid": "8ae302cd-e7af-4a4e-823f-de02a0baaa89"
                        },
                        {
                          "name": "RealPlayer",
                          "uid": "ae0ccd99-d7d6-4147-9ccc-980fe1b6bbfd"
                        },
                        {
                          "name": "Host Integration Server",
                          "uid": "430f5025-e728-e242-a9ef-1dd8f5d85d19"
                        },
                        {
                          "name": "Exec Server",
                          "uid": "162a51f7-7f20-d64c-b44c-49494a540e0a"
                        },
                        {
                          "name": "Samba",
                          "uid": "8cbfbdd3-6191-7642-898b-e27ae1456f35"
                        },
                        {
                          "name": "WINS",
                          "uid": "33db5333-096b-1b4e-9de9-7b8c2c04d17b"
                        },
                        {
                          "name": "Publisher",
                          "uid": "747d5b65-afc3-a544-8736-c99824a99841"
                        },
                        {
                          "name": "Works",
                          "uid": "6c8de7e9-e805-7e4c-b153-f9faafede15a"
                        },
                        {
                          "name": "TwinCAT",
                          "uid": "11c2e2e6-648a-9046-bec4-507e3934507d"
                        },
                        {
                          "name": "Test Signal Viewer",
                          "uid": "091819fd-54b6-7448-9dc4-f39eac276f17"
                        },
                        {
                          "name": "Web Vulnerability Scanner",
                          "uid": "016aa109-aa29-2640-aa9e-4c988b987662"
                        },
                        {
                          "name": "DoSer",
                          "uid": "44f511ee-87d4-1143-9844-9bf7b7f420f8"
                        },
                        {
                          "name": "Social Marketing Engine",
                          "uid": "da0ecd73-a96c-4e45-a94a-1010a537f2cd"
                        },
                        {
                          "name": "LPD Server",
                          "uid": "d2aeeb13-92e2-4c4c-baff-fcf281f09791"
                        },
                        {
                          "name": "ActiveBar",
                          "uid": "5ee598a8-c593-ff40-840e-197264252f1b"
                        },
                        {
                          "name": "RAW Server",
                          "uid": "ae0cbad4-83d4-f846-b946-8bd73691214e"
                        },
                        {
                          "name": "Amlibweb",
                          "uid": "192cace2-0d13-0b4a-bcfe-e4beb74a5e49"
                        },
                        {
                          "name": "Aladdin Knowledge System Ltd",
                          "uid": "f8b04dea-306c-004d-ade9-23d0570711d8"
                        },
                        {
                          "name": "Activist Mobilization Platform",
                          "uid": "7a4ad72c-728d-6147-b05a-c9de144d0590"
                        },
                        {
                          "name": "iOS",
                          "uid": "f6a49a15-1aff-eb4a-9057-d495f2241cf1"
                        },
                        {
                          "name": "1-2-All",
                          "uid": "4970c337-6fd5-f346-bdee-72bdb0e7dde5"
                        },
                        {
                          "name": "Jrun",
                          "uid": "4d470f96-c247-8948-ab46-b7dc7497ecc9"
                        },
                        {
                          "name": "AWstats",
                          "uid": "e10abdb6-7cc7-3f49-912c-4c05a9bc38d3"
                        },
                        {
                          "name": "W3",
                          "uid": "fcb3d329-9275-7545-825f-10b91001adae"
                        },
                        {
                          "name": "ActiveFax",
                          "uid": "d0b6c9e9-18aa-824f-9d15-f685464bfb62"
                        },
                        {
                          "name": "Santuario",
                          "uid": "ac8d5d4d-fa46-774e-bfaf-882f55d32103"
                        },
                        {
                          "name": "7-Zip",
                          "uid": "1819911f-6830-3940-9ce1-464b36844ee4"
                        },
                        {
                          "name": "Comscripts",
                          "uid": "2fec7f6f-6319-0c42-8a9a-2e7ef5fbaa4a"
                        },
                        {
                          "name": "Saleslogix",
                          "uid": "4e9dffce-2ef2-784b-b930-8708870b392f"
                        },
                        {
                          "name": "Alacatel-Lucent",
                          "uid": "b1e23f4c-2507-774b-be43-b9f556f0c734"
                        },
                        {
                          "name": "Multiple Vendors",
                          "uid": "a56203e8-519f-2f42-820f-061e874c8180"
                        },
                        {
                          "name": "Ad Fundum Integratable",
                          "uid": "0a5bc3a8-84ef-f447-9918-a9903b1f14c4"
                        },
                        {
                          "name": "Ajax Portal",
                          "uid": "ba5dd485-ebb5-4647-860f-e8139e3a1ab7"
                        },
                        {
                          "name": "Illustrator",
                          "uid": "7e464a35-1dc3-504c-a909-993831a9172e"
                        },
                        {
                          "name": "appRain",
                          "uid": "0437d8b9-75b4-fb40-88a1-fb56d0f4a500"
                        },
                        {
                          "name": "InDesign",
                          "uid": "c871ed18-cc0c-fd4e-bc47-f654062959a7"
                        },
                        {
                          "name": "AJDating",
                          "uid": "b2e0e0b6-8fee-3149-a6e8-7ff167a3f497"
                        },
                        {
                          "name": "Amlib",
                          "uid": "2f8da9c1-1734-2845-aa31-222a4becf6bf"
                        },
                        {
                          "name": "Anzeigenmarkt",
                          "uid": "f13ca3d8-4800-ba44-9e90-3c137043a4a7"
                        },
                        {
                          "name": "Audition",
                          "uid": "9e1360b4-15cc-c149-86f2-e350e02b41f2"
                        },
                        {
                          "name": "Gallery",
                          "uid": "d7b1242d-fcc7-fa48-b877-4bf251bdc99a"
                        },
                        {
                          "name": "ActiveMQ",
                          "uid": "29fab632-3b74-7d4e-94aa-c44bdc38a742"
                        },
                        {
                          "name": "Test Lab Manager",
                          "uid": "5e4e54d6-0293-0e4e-ba20-aaddad2df422"
                        },
                        {
                          "name": "Camel",
                          "uid": "aa735697-accf-ff40-b9d1-8345788079f8"
                        },
                        {
                          "name": "Anonymous",
                          "uid": "dbc33cf6-8957-c146-843d-60c8b8cc0afb"
                        },
                        {
                          "name": "Xmedien",
                          "uid": "ee7715f7-e9e9-574d-ad1f-0e99ae63c06a"
                        },
                        {
                          "name": "Amaya",
                          "uid": "9fdec8be-8bc7-2841-9d91-92bec6cfa521"
                        },
                        {
                          "name": "ActualAnalyzer",
                          "uid": "7fa6b1e8-9bef-e744-8709-22e8b6b854da"
                        },
                        {
                          "name": "Flex",
                          "uid": "84993c68-5e4a-8642-a1e0-c8df36aebc8a"
                        },
                        {
                          "name": "AOL",
                          "uid": "80078a7f-63ac-bd40-9717-ea538b9e961e"
                        },
                        {
                          "name": "Apache Web Server",
                          "uid": "2c0f7f09-2b52-ed4f-bb65-3dc04931cbe0"
                        },
                        {
                          "name": "Solr",
                          "uid": "b17eeb3e-67bb-2141-838c-31f9d27aafd5"
                        },
                        {
                          "name": "Annoncev",
                          "uid": "311cdb27-422d-9041-bf7f-c394d7705964"
                        },
                        {
                          "name": "TFTP Server",
                          "uid": "64b330a8-019d-424a-bb46-b629152a3f5f"
                        },
                        {
                          "name": "Tlist",
                          "uid": "fa4eae11-8f4c-a447-850e-9ef8e36114af"
                        },
                        {
                          "name": "Basilic",
                          "uid": "4b0cd0ca-aefa-8245-8be4-2e23d6fa6f80"
                        },
                        {
                          "name": "AsteriskNOW",
                          "uid": "cdcd40b3-ec0d-4149-a15d-c04a28d5d386"
                        },
                        {
                          "name": "File Browser",
                          "uid": "6a3ffe7f-4e9f-2649-968d-5c162a3fe7db"
                        },
                        {
                          "name": "OmniPCX",
                          "uid": "087725e4-845f-934b-9611-62b65e4262f3"
                        },
                        {
                          "name": "iTunes",
                          "uid": "250e018d-378b-3544-ac54-776dd37865a5"
                        },
                        {
                          "name": "Joyent",
                          "uid": "9cda4c24-d387-104b-9d46-0fe12d4a6217"
                        },
                        {
                          "name": "Colloquy",
                          "uid": "a9f0cdd4-2ab0-2649-8d6d-20321b1ec10a"
                        },
                        {
                          "name": "Arcserve",
                          "uid": "8a6fb1ac-645c-7242-a0d2-460c6cc50534"
                        },
                        {
                          "name": "LiveUpdate",
                          "uid": "184b86ab-e0d3-7044-a740-aac3d360ac5d"
                        },
                        {
                          "name": "Barracuda Networks",
                          "uid": "83f992b3-8693-7a47-9581-d94cc4fa778f"
                        },
                        {
                          "name": "Atrium Software",
                          "uid": "3af2a74c-4a0c-1e4a-a4ce-2f096f57b0da"
                        },
                        {
                          "name": "Avira",
                          "uid": "51173f3d-f492-3c43-9ffc-18a36ee02d65"
                        },
                        {
                          "name": "Comet",
                          "uid": "7929da36-7bb0-be4f-962c-50d854007d48"
                        },
                        {
                          "name": "Gecad",
                          "uid": "c9bb0a94-19a0-4a43-8b64-ec49f70e9cf0"
                        },
                        {
                          "name": "Bea",
                          "uid": "9f0df55a-8c75-c340-9644-e789cbc393a0"
                        },
                        {
                          "name": "ASUS",
                          "uid": "26d5b5c0-d186-ce43-bca7-9f163847d0ee"
                        },
                        {
                          "name": "B-net",
                          "uid": "dfe7a354-3894-6c4d-b660-8a10cff78c95"
                        },
                        {
                          "name": "Bigantsoft",
                          "uid": "c0044337-c58d-4f4c-8d19-39008efa7bf1"
                        },
                        {
                          "name": "Bit 5 Blog",
                          "uid": "2148829c-7770-7e44-99f6-2bcd6dbb4d4d"
                        },
                        {
                          "name": "Canon",
                          "uid": "fed39c8d-f1d6-0246-aa6b-7cc96c94ddc3"
                        },
                        {
                          "name": "Knox Software",
                          "uid": "e797a43e-4d6f-ad44-a721-54ce541174bf"
                        },
                        {
                          "name": "Motion",
                          "uid": "3771e007-24dd-f443-942c-01eff2a8b550"
                        },
                        {
                          "name": "CastilloBueno",
                          "uid": "7e1151a1-9373-e24a-87e0-413081f2a499"
                        },
                        {
                          "name": "Beckhoff",
                          "uid": "e3a1ebf1-f211-3a46-9e8c-2c97e2e5a6fe"
                        },
                        {
                          "name": "Castle Rock",
                          "uid": "b013525d-dcbf-f246-b26c-d8f53b48869a"
                        },
                        {
                          "name": "Clam AntiVirus",
                          "uid": "af614879-c4bb-c946-b913-b57f16387e80"
                        },
                        {
                          "name": "Saleslogix Corporation",
                          "uid": "94a8a1cd-cb62-1849-b21b-039d38b31a49"
                        },
                        {
                          "name": "Chicken Of The VNC",
                          "uid": "29d35b2a-9331-b64a-8d14-5ca7248bc74b"
                        },
                        {
                          "name": "MS-SQL Server",
                          "uid": "deb8f80d-c730-6445-8ee9-185653306e04"
                        },
                        {
                          "name": "Ironmountain",
                          "uid": "2bb3d298-cd5b-0f44-b2c7-d1edde4528fa"
                        },
                        {
                          "name": "Jpchacha",
                          "uid": "a3ddb03d-cd73-264a-bd99-e8fe7041a0c9"
                        },
                        {
                          "name": "Webteh",
                          "uid": "bd656dcf-8c0d-ed4e-a771-a145615e1dfa"
                        },
                        {
                          "name": "Benders Calendar",
                          "uid": "967e9876-80db-f047-b7e3-31b961c25e5b"
                        },
                        {
                          "name": "Check Point",
                          "uid": "9899072e-13fe-8744-8244-6347bde1f062"
                        },
                        {
                          "name": "Boite De News",
                          "uid": "cc1ba8e6-2aab-dd47-9e3b-6869f28ede97"
                        },
                        {
                          "name": "Research In Motion Limited",
                          "uid": "f883b818-4ab9-8a44-9c30-941113cbfcae"
                        },
                        {
                          "name": "Bitweaver",
                          "uid": "455ce10e-d6ad-3448-933b-e8b6fc5bf943"
                        },
                        {
                          "name": "Gallery Project",
                          "uid": "8a2986ab-5331-3341-aea9-2f526fc93922"
                        },
                        {
                          "name": "Bennet-Tec",
                          "uid": "371bb14b-d3e5-b446-9c9d-6e4b1e0d6f01"
                        },
                        {
                          "name": "Black Ice",
                          "uid": "11296ac8-59be-0d4c-a003-6fd8037a8822"
                        },
                        {
                          "name": "Citadel",
                          "uid": "839ad213-79ef-354d-87a4-5ddeec0120fe"
                        },
                        {
                          "name": "Wireless Router",
                          "uid": "0974a878-80de-d445-92ae-846605331a61"
                        },
                        {
                          "name": "Avid",
                          "uid": "1d94acf8-84fc-054d-82e0-d86083d566da"
                        },
                        {
                          "name": "Awingsoft",
                          "uid": "3958ce0d-e49b-8043-b523-8359a53f0bf3"
                        },
                        {
                          "name": "Axis",
                          "uid": "ed21be32-9781-2140-8a18-c672770f398d"
                        },
                        {
                          "name": "Mozilla",
                          "uid": "39c960e3-2231-7743-ae32-a76fee3e7e6c"
                        },
                        {
                          "name": "Phanatic Softwares",
                          "uid": "e7305ba0-b951-b148-8eb9-656fc76684f5"
                        },
                        {
                          "name": "WinPDM",
                          "uid": "33cf408b-7821-dc4a-91a7-553c7664430c"
                        },
                        {
                          "name": "PDF Viewer",
                          "uid": "5fb0f59f-f90a-4a48-914d-2ec8c6efee29"
                        },
                        {
                          "name": "Avast",
                          "uid": "cb329954-50e3-0d49-abdc-128ac9da6078"
                        },
                        {
                          "name": "Cerulean Studios",
                          "uid": "83b979f7-1a10-244b-91a4-c6e5d56d8f48"
                        },
                        {
                          "name": "Working Resources Inc.",
                          "uid": "9ddf1d38-3869-8242-9abe-6067033cba9a"
                        },
                        {
                          "name": "China Chopper",
                          "uid": "977f2743-1e06-9e4d-89d0-2238e868747c"
                        },
                        {
                          "name": "BlazeVideo",
                          "uid": "c847314c-ce04-5c49-b6f2-55ac01107815"
                        },
                        {
                          "name": "CHETCPASSWD",
                          "uid": "5cc337c4-385b-c045-90c2-d4d66693d284"
                        },
                        {
                          "name": "CYME",
                          "uid": "2d1cd3b0-d6c4-734a-9613-251e797b07bd"
                        },
                        {
                          "name": "Contaware",
                          "uid": "b0cb63d7-5d4b-e64b-9570-37013aa616d8"
                        },
                        {
                          "name": "Eclipse Foundation",
                          "uid": "80f1d262-a518-0c42-bc90-c3947edd4575"
                        },
                        {
                          "name": "Daum Communications",
                          "uid": "a13ef457-2e5d-1643-abd2-8950c76abbe6"
                        },
                        {
                          "name": "PDF Fusion XPS",
                          "uid": "a1ab6315-adad-b340-a367-de9319250df4"
                        },
                        {
                          "name": "Creative",
                          "uid": "c9452fe1-202d-814e-9b46-8438ec173b8e"
                        },
                        {
                          "name": "Eb Design Pty Ltd",
                          "uid": "127d6c1a-8557-6c42-911f-4508b08c001b"
                        },
                        {
                          "name": "Eppler Software",
                          "uid": "2a7cb669-b06d-8449-b35f-3f35194fcab2"
                        },
                        {
                          "name": "CGIScript.net",
                          "uid": "24f38c78-5213-2546-b4c1-e0e10c0f780d"
                        },
                        {
                          "name": "CoolPlayer",
                          "uid": "35eb89b7-9f51-ea4d-924f-c2850365717a"
                        },
                        {
                          "name": "Haxx",
                          "uid": "019d9da8-32db-0140-8b94-dc7a2b6243ab"
                        },
                        {
                          "name": "Hexagon",
                          "uid": "2548b880-1d87-bd4d-8d98-69902e748f0c"
                        },
                        {
                          "name": "Dameware Development",
                          "uid": "ce7a8f59-f493-1a48-872b-4ba0d4c96fac"
                        },
                        {
                          "name": "Dbscripts",
                          "uid": "eb0e2e70-58e9-6441-a1c1-48211a59e2ea"
                        },
                        {
                          "name": "Elasticsearch",
                          "uid": "d433442f-0768-9246-9c70-fd4f16a2b159"
                        },
                        {
                          "name": "James Ashton",
                          "uid": "f0bc136c-249e-324e-bc24-2ddc8043a3a3"
                        },
                        {
                          "name": "Ecava",
                          "uid": "623b4ab4-122d-1d4f-ba30-ed1594482091"
                        },
                        {
                          "name": "ZLDNN",
                          "uid": "df964d55-cf41-c348-97ba-5818e7ff84ab"
                        },
                        {
                          "name": "Embarcadero",
                          "uid": "d533a827-0e7f-094c-a02b-919cbea03d44"
                        },
                        {
                          "name": "QuickSoft",
                          "uid": "4f2f94a6-d586-2a4b-bec5-c0a4c58c4f58"
                        },
                        {
                          "name": "E107",
                          "uid": "b70d8faf-24a3-1c42-b496-bcc605897311"
                        },
                        {
                          "name": "eScan",
                          "uid": "e7087cbf-475b-864d-8f4d-cf0aea508cb9"
                        },
                        {
                          "name": "WordPerfect",
                          "uid": "e9373633-2a14-ab48-8ea8-19d36d069af5"
                        },
                        {
                          "name": "PaintShop Pro",
                          "uid": "93afe12b-b55f-fa49-8441-67d396ab0377"
                        },
                        {
                          "name": "Eaton",
                          "uid": "73efdb7d-0969-1c47-a29f-7e5507a4f9ae"
                        },
                        {
                          "name": "Digitalvidhya",
                          "uid": "ce3c6668-e406-5b40-a0a8-d2e876e2f63f"
                        },
                        {
                          "name": "DivX",
                          "uid": "cf0ffa35-4592-6f4c-962f-e4bea4564a0c"
                        },
                        {
                          "name": "DNS Servers",
                          "uid": "e15fa22b-2bb2-4148-9b53-2b2656d33a7d"
                        },
                        {
                          "name": "Softnews Media Group",
                          "uid": "f830d70d-81ba-ef42-b77c-759de0fb7e34"
                        },
                        {
                          "name": "Ethereal Group",
                          "uid": "0c4ee78f-4127-0547-892b-1334e00a1762"
                        },
                        {
                          "name": "Endian Firewall",
                          "uid": "1caf4e8a-8b49-484d-b540-3cb2c98d9917"
                        },
                        {
                          "name": "ESET",
                          "uid": "85ea9c5c-8686-284c-83f3-a2aaa2f19a98"
                        },
                        {
                          "name": "Cybozu",
                          "uid": "68863d4f-164f-ba4f-9669-aef5c0d986c2"
                        },
                        {
                          "name": "DIY-CMS",
                          "uid": "d45574ca-f2ad-974e-9138-f5d0d43bd293"
                        },
                        {
                          "name": "Ektron",
                          "uid": "e58b54dd-60d5-f945-8ea8-2d29ef02ebb1"
                        },
                        {
                          "name": "CyberLink",
                          "uid": "b853ded3-4ed1-8f4d-97ea-ca5802c4c651"
                        },
                        {
                          "name": "Ericom",
                          "uid": "ef1de81d-810a-804c-a0c2-dca0c21e843f"
                        },
                        {
                          "name": "EFS Software",
                          "uid": "a575d5b6-9f2e-424a-977f-fb05e8d95e0f"
                        },
                        {
                          "name": "pfSense",
                          "uid": "0c3ba6ea-c8bc-7e4c-aee3-e4a2a6e2b497"
                        },
                        {
                          "name": "Phome Empire",
                          "uid": "c03c9e2a-4cf6-7c42-868d-abcddcdbeb67"
                        },
                        {
                          "name": "Roy Marples",
                          "uid": "21ff4d66-2560-574b-9685-e704b2430665"
                        },
                        {
                          "name": "CVS",
                          "uid": "500b2cbc-ef4d-2640-ab43-44923139e187"
                        },
                        {
                          "name": "Easy Software Products",
                          "uid": "895e0c0d-9691-d94e-b73c-2b5adaa8d6e8"
                        },
                        {
                          "name": "Thekelleys",
                          "uid": "1f8898be-bc2b-c34c-8781-8969a2c4c72a"
                        },
                        {
                          "name": "D-Link",
                          "uid": "9148718c-780e-bc42-87e5-b7cedd96f687"
                        },
                        {
                          "name": "Csounds",
                          "uid": "31271d16-1216-9343-a86d-327a500f331e"
                        },
                        {
                          "name": "ESTsoft",
                          "uid": "f17ec158-9f1b-4249-82b6-4cf1b3636e60"
                        },
                        {
                          "name": "Niels Provos",
                          "uid": "fbd92317-2be8-624e-aa80-df71bcf2e543"
                        },
                        {
                          "name": "CommuniGate Systems",
                          "uid": "a39ecfef-bd21-b647-93cb-811e17da0131"
                        },
                        {
                          "name": "EnterpriseDB",
                          "uid": "58ea6298-c73c-c445-bfa5-0b96a25a3315"
                        },
                        {
                          "name": "Qualcomm",
                          "uid": "16ddbc51-3554-ec4a-99ce-d438236d7b6d"
                        },
                        {
                          "name": "Golden FTP Server",
                          "uid": "5ca3e95f-eb88-8346-818e-52710a2a8f06"
                        },
                        {
                          "name": "FreeRADIUS",
                          "uid": "8178ddd9-c424-a842-b6c3-bd607a98eb1f"
                        },
                        {
                          "name": "EZHomeTech",
                          "uid": "73985060-97f1-2147-8a16-a22b393a4d3d"
                        },
                        {
                          "name": "Graphite",
                          "uid": "20e25c1f-d11b-ab46-a6d3-db10300a5765"
                        },
                        {
                          "name": "ffdshow-tryout",
                          "uid": "3b6703a4-842d-5e48-ae6c-e0e53df1f204"
                        },
                        {
                          "name": "FFmpeg",
                          "uid": "cca7f17d-a3b0-2c48-9bae-d8852aeb5794"
                        },
                        {
                          "name": "Free File Hosting",
                          "uid": "69a38021-d231-9b48-993b-c527868bf3e2"
                        },
                        {
                          "name": "Artifex Software",
                          "uid": "c82ce283-6da4-3c4b-84f1-40301022d983"
                        },
                        {
                          "name": "FreePBX",
                          "uid": "44b613d8-d983-a24d-b563-dac6c0469648"
                        },
                        {
                          "name": "Javier Suarez Sanz",
                          "uid": "e16252fc-9422-6b4d-aaa3-1df81cc1989a"
                        },
                        {
                          "name": "Bitdamaged",
                          "uid": "718a5bc5-4a04-124a-adc7-ec336b1d54a6"
                        },
                        {
                          "name": "Ganglia",
                          "uid": "c7dc7606-7d20-f74c-b6c0-0b14b5a5c82f"
                        },
                        {
                          "name": "Focus/SIS",
                          "uid": "2a8fa321-7fce-0d49-8eab-eb8886fa0c5c"
                        },
                        {
                          "name": "Fortinet",
                          "uid": "aaa94d8f-588a-044d-af70-3af6f78723a6"
                        },
                        {
                          "name": "GestART",
                          "uid": "31e8eba2-be05-6147-9a50-aaa20f2dc0b7"
                        },
                        {
                          "name": "Fritz!Box",
                          "uid": "5c945950-e71f-e448-8b9e-06cc2613de21"
                        },
                        {
                          "name": "Facebook",
                          "uid": "d7d1cb12-cb17-244b-937a-2e6edb184d4b"
                        },
                        {
                          "name": "GnuPG",
                          "uid": "4b2f44a2-c967-bc41-a57a-c2ccb7df9d42"
                        },
                        {
                          "name": "Picasa",
                          "uid": "e32b7725-0605-7d4b-bda5-9a0b03f95efc"
                        },
                        {
                          "name": "FreeType",
                          "uid": "4584e2ea-da27-2041-aa1e-08c154f6e6e8"
                        },
                        {
                          "name": "University Of Cambridge",
                          "uid": "df76333c-2f2a-4246-a05a-96caaa3b9445"
                        },
                        {
                          "name": "Git",
                          "uid": "a16aa2ed-28ce-994a-8705-5e7e6adf066a"
                        },
                        {
                          "name": "icq",
                          "uid": "a1ca958c-62d8-4049-b9af-0393f22c5539"
                        },
                        {
                          "name": "Stadtaus",
                          "uid": "8ee246f7-ef24-5a47-85c9-36f2caf0d7e4"
                        },
                        {
                          "name": "Cleanersoft",
                          "uid": "c8179a72-25f0-3640-a343-e41a58e3cde1"
                        },
                        {
                          "name": "Android",
                          "uid": "cf288e88-c505-0946-b925-dd1f5aa1a3f1"
                        },
                        {
                          "name": "Flexera",
                          "uid": "fb0c444f-da66-aa4c-94ce-a1a9ae943442"
                        },
                        {
                          "name": "General Electric",
                          "uid": "5c290f51-378e-6d40-ab2b-392d677353b5"
                        },
                        {
                          "name": "ipswitch",
                          "uid": "02ee2575-e343-2243-908f-3be62f9d8210"
                        },
                        {
                          "name": "Flashget",
                          "uid": "17281f2c-cb67-a04f-a30d-884554e59ae8"
                        },
                        {
                          "name": "Forum Livre",
                          "uid": "429db44e-e14a-c841-8e86-55aa86dbe95b"
                        },
                        {
                          "name": "Darren's Script Archive",
                          "uid": "5a73d7ba-8d04-6a4f-9561-585ec2a4ebeb"
                        },
                        {
                          "name": "Email Application",
                          "uid": "edcfff7c-d787-f249-bd95-8f95a1251e3c"
                        },
                        {
                          "name": "GLPI",
                          "uid": "5d470389-b195-254c-a94d-5a1f2216b7a0"
                        },
                        {
                          "name": "F5",
                          "uid": "aaa625af-0318-e847-a08c-5ab6442a7f9d"
                        },
                        {
                          "name": "427BB",
                          "uid": "181f50d8-764d-0840-84f4-801b3fb1f4ed"
                        },
                        {
                          "name": "Graphiks",
                          "uid": "8b14590c-03f9-504e-92de-0e53c8bb798e"
                        },
                        {
                          "name": "galleryproject.org",
                          "uid": "c9804144-f319-e74a-9d69-39fa4ef2467f"
                        },
                        {
                          "name": "Gracenote",
                          "uid": "7895260f-35d2-a040-b39f-0c4158d922aa"
                        },
                        {
                          "name": "Gd Graphics Library",
                          "uid": "5cb63e16-04c3-8f46-8b16-692ec44ed045"
                        },
                        {
                          "name": "Gnuturk",
                          "uid": "60df79e3-9264-c04f-845d-e3238b761a54"
                        },
                        {
                          "name": "g-neric",
                          "uid": "d8e51430-1480-cc4a-abc6-f85a826efc1f"
                        },
                        {
                          "name": "WordPress",
                          "uid": "859bd427-9229-544f-bd7c-6e2e26bf3023"
                        },
                        {
                          "name": "GoToMyPC",
                          "uid": "aa444060-3adf-cd48-8bf2-ae0eb04191a3"
                        },
                        {
                          "name": "GitList",
                          "uid": "0800543c-4f2e-ba47-a1ed-d51c949d2307"
                        },
                        {
                          "name": "GOMlab",
                          "uid": "8dda2b5e-f1c0-0d4d-9788-f179e7ab257f"
                        },
                        {
                          "name": "Flashgamescript",
                          "uid": "1237a432-9f09-6e47-ba89-bce630367585"
                        },
                        {
                          "name": "Telestream",
                          "uid": "eb44b4da-713a-4545-b2d6-00b1e14ac45a"
                        },
                        {
                          "name": "Exoopport",
                          "uid": "90136fdb-0e17-6949-9a97-e13a39404665"
                        },
                        {
                          "name": "Google Apps",
                          "uid": "7582f639-5549-084c-a7f4-1da85985e01d"
                        },
                        {
                          "name": "Rational Quality Manager",
                          "uid": "0508bc4a-023a-744e-ae41-b570724e5981"
                        },
                        {
                          "name": "gzip",
                          "uid": "7fab20ca-d244-2547-b823-82c1e2e60ab8"
                        },
                        {
                          "name": "Invisionpower",
                          "uid": "b04666e2-a5fc-b946-b1b7-d774905f7732"
                        },
                        {
                          "name": "Virtual SAN Appliance",
                          "uid": "5f4c0f6b-e17b-4d4c-906a-b35221a5ad65"
                        },
                        {
                          "name": "Sprinter",
                          "uid": "bf386561-2b05-a54c-bdef-a5e62d0005b7"
                        },
                        {
                          "name": "IcoFX",
                          "uid": "1655491e-d34a-8443-be2c-985d81bd2985"
                        },
                        {
                          "name": "Network Virtualization",
                          "uid": "1520e578-f458-5c43-b659-d197181db834"
                        },
                        {
                          "name": "Web Studio",
                          "uid": "b9d1209d-50ff-ae47-a3e9-33bd73dc8f04"
                        },
                        {
                          "name": "iMatix",
                          "uid": "fa645f75-4edb-9b45-bd8c-cc5cff34bd78"
                        },
                        {
                          "name": "nsoftware",
                          "uid": "a74bb76f-9d5e-014d-bb66-2a7605a33e93"
                        },
                        {
                          "name": "InterWoven",
                          "uid": "96181654-c38b-1449-918d-5c9b86650c69"
                        },
                        {
                          "name": "Photo Creative",
                          "uid": "e87d8ffe-5095-7d44-8332-6539a2bb2fda"
                        },
                        {
                          "name": "StorageWorks",
                          "uid": "28b4d5f8-d58c-c146-b3d1-9af5159e275e"
                        },
                        {
                          "name": "Hikvision",
                          "uid": "0f70f559-57d6-3840-9b5b-de75a179520c"
                        },
                        {
                          "name": "Application Lifecycle Management",
                          "uid": "9a67a66d-a76e-2845-9585-20376afd62b1"
                        },
                        {
                          "name": "Happymall",
                          "uid": "0879a842-5f79-bb41-80b2-b404d94ea021"
                        },
                        {
                          "name": "iNode Management Center",
                          "uid": "76cffa50-49fb-0f41-8bd3-388aab012915"
                        },
                        {
                          "name": "AIO Archive",
                          "uid": "05087e26-ba28-c541-af68-571408ceefa6"
                        },
                        {
                          "name": "GStreamer",
                          "uid": "cf5b170b-dcd9-1d46-9fc0-bee80b43e335"
                        },
                        {
                          "name": "Intellicom",
                          "uid": "9800330e-4972-7c47-b2bf-8ec1d9a74cf5"
                        },
                        {
                          "name": "RSA",
                          "uid": "46d55c3a-8362-324a-ad70-a460dc7932b4"
                        },
                        {
                          "name": "Gravity GTD",
                          "uid": "c2b1e8ad-2173-bc4f-81c0-0a6c086a17d2"
                        },
                        {
                          "name": "Diagnostics",
                          "uid": "514bd095-9c1a-534d-a03f-a4d7ab246860"
                        },
                        {
                          "name": "HylaFAX",
                          "uid": "fa86e150-6f97-fe40-a09b-fecfeb55279c"
                        },
                        {
                          "name": "Hastymail",
                          "uid": "3db742ce-0ec2-4d41-a424-9da1a935fe53"
                        },
                        {
                          "name": "InTouch",
                          "uid": "8a936396-ed25-cf48-88b5-511fb4a19343"
                        },
                        {
                          "name": "InterNetNews",
                          "uid": "f452894c-ae7d-5c45-8e8e-f2de08e1372f"
                        },
                        {
                          "name": "Service Vertualization",
                          "uid": "d5fe6136-4c74-084c-b28a-be88436ca2f0"
                        },
                        {
                          "name": "People's Republic of China",
                          "uid": "8f8c7377-ae1c-a54e-8252-7a4a6c243d8f"
                        },
                        {
                          "name": "Point of Sale",
                          "uid": "9a4dcafa-26f3-8a4a-ad8b-5d7c948cf02c"
                        },
                        {
                          "name": "System Management",
                          "uid": "d384a17c-eae6-e34c-9c47-d23f5c4ae461"
                        },
                        {
                          "name": "Ignite Realtime",
                          "uid": "c65cbfeb-9d1e-de41-9c04-558379ed55b8"
                        },
                        {
                          "name": "SiteScope",
                          "uid": "e7e4ae57-4524-f746-bee8-9e9508b43a90"
                        },
                        {
                          "name": "Network Node Manager",
                          "uid": "21ab049d-f592-9944-9ec2-59c3bad82f0b"
                        },
                        {
                          "name": "LoadRunner",
                          "uid": "f2b2f91e-3f90-1243-8f91-c04db35ee042"
                        },
                        {
                          "name": "Invisionix Systems",
                          "uid": "a752ccf1-d8e1-7b42-a1c2-026fb56088be"
                        },
                        {
                          "name": "Operations Agent",
                          "uid": "55e8bfd4-0e40-fe48-9dd2-46d2e5e324cf"
                        },
                        {
                          "name": "Easy Printer Care",
                          "uid": "be655c90-2e61-f442-b044-415cdf7fde1e"
                        },
                        {
                          "name": "Software Update Tool",
                          "uid": "efb3500c-2ee7-2841-81a8-40e644c402de"
                        },
                        {
                          "name": "Iplanet",
                          "uid": "535d9a5a-6081-154e-aeb9-9d2ad032794a"
                        },
                        {
                          "name": "HD Soft",
                          "uid": "3ca130ef-ba59-cd46-96c6-bdc4992d89a4"
                        },
                        {
                          "name": "ViRobot",
                          "uid": "600c0b91-948a-7f4d-8b82-867957bbb46f"
                        },
                        {
                          "name": "HPUX",
                          "uid": "08a3f41e-7026-2e45-8ec7-78e74b921081"
                        },
                        {
                          "name": "Honeywell",
                          "uid": "dc37500e-1b67-de46-81f5-912a80e8de68"
                        },
                        {
                          "name": "Universal CMDB",
                          "uid": "27d22ebe-a933-8749-bb10-27151c0d163c"
                        },
                        {
                          "name": "Release Control",
                          "uid": "fc5aec8c-948d-374c-bec3-92c250148b66"
                        },
                        {
                          "name": "IrfanView",
                          "uid": "77996185-db80-1d49-9401-41b29eafa9eb"
                        },
                        {
                          "name": "Power Manager",
                          "uid": "403fc0da-c513-dc40-a19b-9516900bc2d0"
                        },
                        {
                          "name": "IDAutomation",
                          "uid": "b5352c45-8da8-124b-bdbd-1b0eb4479abb"
                        },
                        {
                          "name": "Libpng",
                          "uid": "b6dd541a-7863-b949-b5ad-f9cb861eb7a7"
                        },
                        {
                          "name": "iSCSI Enterprise Target",
                          "uid": "692d9483-7589-0541-8e0b-70ea10bb976c"
                        },
                        {
                          "name": "LibVNCServer",
                          "uid": "6e27e987-f37b-a44b-8d93-b640aa2f5b25"
                        },
                        {
                          "name": "Kordil EDMS",
                          "uid": "fbd5d785-dba7-9644-90cd-6fcaa43a255f"
                        },
                        {
                          "name": "Matt Wright",
                          "uid": "777c1bf2-c7fa-8449-8ea2-ec642270ab20"
                        },
                        {
                          "name": "Ehmig",
                          "uid": "e91d653a-0c23-5548-a8d4-88a4b0da79aa"
                        },
                        {
                          "name": "Alt-N Technologies",
                          "uid": "92da4f3b-0860-7d41-9350-952aaa8b5ef3"
                        },
                        {
                          "name": "Liquid Technologies",
                          "uid": "5baa568d-9bbc-4f41-b8dd-06908d2f9caa"
                        },
                        {
                          "name": "Magento",
                          "uid": "5ef1d83d-0bc8-8541-a9c7-b97cbcaa97a0"
                        },
                        {
                          "name": "Lifesize",
                          "uid": "14c88af8-5a83-a14c-90f9-5a36feff8f99"
                        },
                        {
                          "name": "Jenkins",
                          "uid": "d61d2e5e-2161-cb48-b815-83f86a3f6767"
                        },
                        {
                          "name": "PEAR",
                          "uid": "994708e0-035e-884d-abfe-16646f7698b8"
                        },
                        {
                          "name": "Quick Heal",
                          "uid": "9e0bb6dc-caec-fc4d-9cdc-96147f9edf30"
                        },
                        {
                          "name": "Knusperleicht",
                          "uid": "e9ae1458-98fd-e745-809e-4eb07f2a78f6"
                        },
                        {
                          "name": "Logitech",
                          "uid": "9d2c0221-36ea-394a-84cc-50064aaaf6b8"
                        },
                        {
                          "name": "Lianja",
                          "uid": "a0e38a93-ee02-8b46-86cb-c9564cbd3154"
                        },
                        {
                          "name": "VirusScan",
                          "uid": "29f56213-ac1e-6f47-bee2-6b8715471b3a"
                        },
                        {
                          "name": "Atlassian",
                          "uid": "89a38f3a-59ae-b845-84ff-7e46e26f67e4"
                        },
                        {
                          "name": "Mastersfusion",
                          "uid": "84f9cb4a-c7eb-674c-9894-bd3d6c7184de"
                        },
                        {
                          "name": "Iss",
                          "uid": "1daa03b9-51e3-9140-a5c7-93a2d9d1345b"
                        },
                        {
                          "name": "David Harris",
                          "uid": "0750ce72-7c0e-7a4c-a497-8dbb0351f988"
                        },
                        {
                          "name": "Linkedin",
                          "uid": "fe4c09d9-d725-a543-9cf5-93d44792f677"
                        },
                        {
                          "name": "Joomla",
                          "uid": "1993fa0f-6e1d-4741-b0cc-72ce90469397"
                        },
                        {
                          "name": "LibTIFF",
                          "uid": "bb41d956-5a3e-ae44-9c76-aaf01e2bc085"
                        },
                        {
                          "name": "Light Weight Calendar",
                          "uid": "2d0eaf3f-b0ca-aa42-a8fc-0569d7253525"
                        },
                        {
                          "name": "KromTech",
                          "uid": "e008e6d8-a773-ec46-8ea9-20bd0f58de8a"
                        },
                        {
                          "name": "Adobe",
                          "uid": "9a4eb98f-6db0-4d4e-ae95-40c6b030ba9d"
                        },
                        {
                          "name": "Mambo",
                          "uid": "54053748-e2b1-e74f-a38f-2f06b3496268"
                        },
                        {
                          "name": "JBroFuzz",
                          "uid": "e4d21be3-1242-4948-b48e-0374ff1de6ba"
                        },
                        {
                          "name": "Kame",
                          "uid": "cf307df4-1f1e-e940-bb83-8f0e33f2b155"
                        },
                        {
                          "name": "MGI Software",
                          "uid": "766368f9-1859-554d-b9f7-9238394f3cb0"
                        },
                        {
                          "name": "JBoss",
                          "uid": "50955b55-9da8-7e46-a67f-4cd655406320"
                        },
                        {
                          "name": "LCDProc",
                          "uid": "9791cd88-2b23-6541-9a61-356b9ca7086e"
                        },
                        {
                          "name": "Measuresoft",
                          "uid": "1980fd9f-de39-734b-85d3-ceb5fd71af16"
                        },
                        {
                          "name": "Kingsoft",
                          "uid": "8b76bac0-43e1-7942-9b06-bff75d7bbc05"
                        },
                        {
                          "name": "Stormy Studios",
                          "uid": "ee9ce6cb-3850-b049-af86-239669584334"
                        },
                        {
                          "name": "Lingxia273",
                          "uid": "7ade9270-d49e-9249-89d0-ef682ce08db0"
                        },
                        {
                          "name": "Microgaming",
                          "uid": "948562b7-b9c4-7d42-aa68-8a005903f8e8"
                        },
                        {
                          "name": "Mega Nerd",
                          "uid": "2bffbd5e-5b9f-d74c-880b-d01134690c4f"
                        },
                        {
                          "name": "MailEnable",
                          "uid": "396f8543-fd56-b14f-ac45-953f2b8705dd"
                        },
                        {
                          "name": "LEADTOOLS",
                          "uid": "47514292-011a-2e41-9280-651602bfc9c7"
                        },
                        {
                          "name": "ASP.NET",
                          "uid": "22c9eaf5-a02c-5a45-9d10-5440023f0e6f"
                        },
                        {
                          "name": "Pmail",
                          "uid": "5bf575e0-b8a3-6e4b-94da-cf9a55e92b99"
                        },
                        {
                          "name": "Libav",
                          "uid": "cc9d2878-3f2d-aa48-9b0a-50efe70a7e1a"
                        },
                        {
                          "name": "KDE",
                          "uid": "ef4cc843-5ae4-e34a-9cb9-2731aee2195e"
                        },
                        {
                          "name": "Lattice Semiconductor",
                          "uid": "ec80d23c-7acf-a247-a842-8921c5d3fa75"
                        },
                        {
                          "name": "Lenovo",
                          "uid": "b5bbd0be-2664-2d4e-a12d-817771e12bda"
                        },
                        {
                          "name": "AntiXSS Library",
                          "uid": "e12cc27e-b827-2442-82b9-1db17c1e4c82"
                        },
                        {
                          "name": "ISPConfig",
                          "uid": "22b28a45-e3ec-4840-820a-6cd74a70bc05"
                        },
                        {
                          "name": "McAfee Firewall",
                          "uid": "547ba6ed-d77c-6e45-a429-e1ef3b56944e"
                        },
                        {
                          "name": "Desktop Central",
                          "uid": "8a8b8a02-cf15-fa41-8892-a78f50c61c81"
                        },
                        {
                          "name": "KingChat",
                          "uid": "808bc7df-48a2-7d40-918b-d57b44e6ba0b"
                        },
                        {
                          "name": "Mitsubishi Electric",
                          "uid": "7aa6cee8-0ae5-224c-b376-4ac00c119619"
                        },
                        {
                          "name": "MW6 Technologies",
                          "uid": "cd5a8638-15d2-c547-94c2-c33378214fd5"
                        },
                        {
                          "name": "Novell Client",
                          "uid": "5f37443e-8a00-7b4f-9326-b1a215708551"
                        },
                        {
                          "name": "Mostgear",
                          "uid": "3a8afa1c-fd9c-214a-aa84-3445e502458c"
                        },
                        {
                          "name": "IBM",
                          "uid": "541f90a8-c4ef-064d-9ef6-8de81fef79fe"
                        },
                        {
                          "name": "Mongodb",
                          "uid": "3f9fd7ab-d11a-3646-8b77-37720dd5fbeb"
                        },
                        {
                          "name": "Nodejs",
                          "uid": "4515317f-4b11-114f-a6b5-ac2c641f51f8"
                        },
                        {
                          "name": "NetWin",
                          "uid": "14ad361b-35cd-9e4a-9f85-8254755d897a"
                        },
                        {
                          "name": "Netmechanica",
                          "uid": "6e66251f-cb19-dc42-8707-4961121093d8"
                        },
                        {
                          "name": "iPrint Client",
                          "uid": "3ec9f594-d541-0848-a359-d9a4629e1486"
                        },
                        {
                          "name": "NAS4Free",
                          "uid": "08fe30f8-550f-e743-8693-26d50193a109"
                        },
                        {
                          "name": "Moinmo",
                          "uid": "b6c82d84-fa40-1c4d-be91-3cbef812617a"
                        },
                        {
                          "name": "Netop",
                          "uid": "af238d65-ba47-fc44-a341-64493d5e1045"
                        },
                        {
                          "name": "MyBB",
                          "uid": "23a520dc-752b-0c4f-a99b-38735498159b"
                        },
                        {
                          "name": "Nokia",
                          "uid": "621cd6c2-8947-574a-95b9-3242820a61aa"
                        },
                        {
                          "name": "op5 AB",
                          "uid": "80c74c10-b300-b849-88f5-96affe9a1319"
                        },
                        {
                          "name": "Motorola",
                          "uid": "980c67d1-448c-4c4e-8eaa-30ed3e5cd79b"
                        },
                        {
                          "name": "Microsoft RPC",
                          "uid": "fa1eb5bf-cca3-4f4e-8285-c1ca914e168f"
                        },
                        {
                          "name": "Visio",
                          "uid": "4eacc7e6-d5a0-074a-a857-744857353be4"
                        },
                        {
                          "name": "Justsystems",
                          "uid": "75e90dc8-5bce-9942-af80-c4b93934c93a"
                        },
                        {
                          "name": "NagiosQL",
                          "uid": "6c1361f8-0891-a146-9ae2-4b4abdde04cd"
                        },
                        {
                          "name": "MPlayer",
                          "uid": "5e90caec-9d93-0a4e-aa59-c0646d490181"
                        },
                        {
                          "name": "Miniupnp Project",
                          "uid": "adb5e5c4-b459-064a-aaf9-aeb79141cccc"
                        },
                        {
                          "name": "iManager",
                          "uid": "49ea0e1a-5ee3-e143-b9b7-a08464f6caca"
                        },
                        {
                          "name": "Moxa",
                          "uid": "827cc73a-66b4-3248-a36f-47d3df3f3955"
                        },
                        {
                          "name": "Sixapart",
                          "uid": "492f9e81-96ec-a141-8839-9de2b0c72ef0"
                        },
                        {
                          "name": "PHP Server",
                          "uid": "de7a86b4-c405-cc4d-9d0e-86c6ecdd1fec"
                        },
                        {
                          "name": "Tenable",
                          "uid": "52f1e6b7-5bc1-1b4d-b3a8-d3f09bf9d7b5"
                        },
                        {
                          "name": "Ntrglobal",
                          "uid": "67fb248a-3c93-a04e-92a9-6ffd63969495"
                        },
                        {
                          "name": "Moderngigabyte",
                          "uid": "84bc94c2-a329-a140-b479-90edc2366f98"
                        },
                        {
                          "name": "Graphics Component",
                          "uid": "7b85120e-510a-9a43-9344-bece5aa68d9a"
                        },
                        {
                          "name": "OABOARD",
                          "uid": "3856521d-51fc-ca4c-ad38-bb9bce6dbd1e"
                        },
                        {
                          "name": "LDAP Servers",
                          "uid": "665d0e2f-6e07-aa47-a2c4-c30c5915c6d9"
                        },
                        {
                          "name": "Netgear",
                          "uid": "8ae4337d-53dd-9847-845d-858a6541c93d"
                        },
                        {
                          "name": "Moodle",
                          "uid": "02fb6aee-cd37-7443-a82d-345237eefcfc"
                        },
                        {
                          "name": "SonicWALL",
                          "uid": "56e4279b-4afe-dd42-8959-31b29b536315"
                        },
                        {
                          "name": "Mutiny",
                          "uid": "e1250446-da94-9043-9be9-90006c913afd"
                        },
                        {
                          "name": "File Reporter",
                          "uid": "ba123319-24be-f946-8b05-85839a5e41cf"
                        },
                        {
                          "name": "National Instruments",
                          "uid": "2eefa182-519e-7046-8319-e14b656e655e"
                        },
                        {
                          "name": "Nikto Security Scanner",
                          "uid": "04b5d0f5-8d21-8047-9be3-43877a858309"
                        },
                        {
                          "name": "Mirc",
                          "uid": "35e8ab84-2da0-5e46-9b5d-45a6ce2bb5e9"
                        },
                        {
                          "name": "MyPhPim",
                          "uid": "f20f5210-90eb-e040-9274-8e0a7d866523"
                        },
                        {
                          "name": "Visual Studio",
                          "uid": "34fec658-b478-964d-ac05-99582b04deb9"
                        },
                        {
                          "name": "Silverlight",
                          "uid": "78d11b33-26b1-e240-8dd2-7507beeaf7cd"
                        },
                        {
                          "name": "MyNewsGroups",
                          "uid": "49f2be60-daec-3544-82b5-c3b9001872f1"
                        },
                        {
                          "name": "Exchange",
                          "uid": "058084cb-90ea-fe47-9bae-573b2b1f8882"
                        },
                        {
                          "name": "NetIQ",
                          "uid": "a4235d19-31b2-ac49-820f-a75872f6e03b"
                        },
                        {
                          "name": "Nmap",
                          "uid": "3345d06c-190b-b747-bfb7-4c3f9ab6726e"
                        },
                        {
                          "name": "Microsys",
                          "uid": "35d6994f-3413-7445-96b2-beb3ff8644b5"
                        },
                        {
                          "name": "Netsupport",
                          "uid": "58f6f03d-f14d-3349-a2b9-a9697225bf30"
                        },
                        {
                          "name": "OpenEMR",
                          "uid": "a15c16cd-fbc8-494f-bfc3-aa130dc74c86"
                        },
                        {
                          "name": "Sun",
                          "uid": "a7c28dab-17d8-a24b-91af-dfc24a553d44"
                        },
                        {
                          "name": "Piwigo",
                          "uid": "2fc0f708-f396-814b-b827-04ebc8f052d2"
                        },
                        {
                          "name": "Phpjournaler",
                          "uid": "b86ef0ab-3b2d-954e-90ca-c6b5d44f29dd"
                        },
                        {
                          "name": "Derek Leung",
                          "uid": "06bd69fb-e868-c540-a9c3-2c8a96063f8d"
                        },
                        {
                          "name": "MarsApril",
                          "uid": "8c66b7c1-e48e-a544-9432-cf38215da547"
                        },
                        {
                          "name": "OsCommerce",
                          "uid": "032924f1-78bf-3540-b9b9-c7e8ceb67ae6"
                        },
                        {
                          "name": "OPENi-CMS Group",
                          "uid": "fa5319ab-b94f-c342-b253-b150db166ad0"
                        },
                        {
                          "name": "StrongSwan",
                          "uid": "11e2a2e7-c1f7-c346-b16a-206f651b4d55"
                        },
                        {
                          "name": "Poptop",
                          "uid": "97370a4c-358f-5447-810c-0ff8f7f5543a"
                        },
                        {
                          "name": "Htmltonuke",
                          "uid": "58a393a2-e372-ad42-aed3-bb43512a7a87"
                        },
                        {
                          "name": "Photodex",
                          "uid": "318a7283-2ea3-d14c-b6f0-a7bf67d38f8b"
                        },
                        {
                          "name": "Pegasus Imaging",
                          "uid": "65a604af-f331-0646-95af-907ed15faef1"
                        },
                        {
                          "name": "Secure Reality",
                          "uid": "104963bb-5cb8-d547-8c4c-ac773561288b"
                        },
                        {
                          "name": "Peercast",
                          "uid": "770cf069-042f-ff47-ac76-52d1df96a4d8"
                        },
                        {
                          "name": "Persits Software",
                          "uid": "398af32d-d0f3-1a40-a4d6-b5dc541923fe"
                        },
                        {
                          "name": "Scadatec",
                          "uid": "c306e902-a51a-0843-a2f8-14e8a871546a"
                        },
                        {
                          "name": "Progea",
                          "uid": "61b0d01e-ada9-5245-8e30-fe87e5fcd85c"
                        },
                        {
                          "name": "PHP",
                          "uid": "89f7a3f4-c3eb-9946-aa41-482a0a1b856a"
                        },
                        {
                          "name": "OpenSwan",
                          "uid": "da416231-e475-124b-ace8-f01d8bf11f99"
                        },
                        {
                          "name": "Postfix",
                          "uid": "a5f18cb2-3b6b-be41-a321-940dbc23ef8a"
                        },
                        {
                          "name": "OpenX",
                          "uid": "fefbc4c2-380c-0b43-8bde-0a0b1befcaa8"
                        },
                        {
                          "name": "Turnkey Web Tools",
                          "uid": "4087b63b-10f9-1e40-96f1-58e25ce0ddc6"
                        },
                        {
                          "name": "Squery",
                          "uid": "c6272e58-c04c-974d-820d-208b7c65a846"
                        },
                        {
                          "name": "OS4Ed",
                          "uid": "485fbdfa-f81a-7e4b-a5f0-c2e7a2235e57"
                        },
                        {
                          "name": "Innoshock",
                          "uid": "bcdf14ef-ee6d-f54e-9fe0-135913dc1acc"
                        },
                        {
                          "name": "Electric Sheep Fencing",
                          "uid": "7dc83f0f-8e0a-544c-a43e-73832332adce"
                        },
                        {
                          "name": "Chumpsoft",
                          "uid": "d0de6749-3454-f042-9ba9-720418cd823c"
                        },
                        {
                          "name": "Persistent Systems",
                          "uid": "d2e17617-95d3-a74f-937f-aa0b91591a44"
                        },
                        {
                          "name": "Fine Free File Project",
                          "uid": "58f89eec-d389-c445-831a-6e8103a406fb"
                        },
                        {
                          "name": "Phpgedview",
                          "uid": "ece98438-3bbf-ff41-a491-6d0af9038676"
                        },
                        {
                          "name": "Pidgin",
                          "uid": "14aae891-939a-b14a-91aa-9e92b9f0a570"
                        },
                        {
                          "name": "Postguestbook",
                          "uid": "b2095b19-bf5b-8f4f-85e7-e916743de864"
                        },
                        {
                          "name": "Php-fusion",
                          "uid": "a73ca435-2122-ba41-8ecd-7d5162349370"
                        },
                        {
                          "name": "OpenMediaVault",
                          "uid": "6d6e1b7a-c56a-4847-b402-2956ae75de9c"
                        },
                        {
                          "name": "Libupnp Project",
                          "uid": "40058070-16e3-a54d-b539-752c6c82b4d4"
                        },
                        {
                          "name": "Powerdns",
                          "uid": "1bcf2493-b351-2c4a-a1b0-1f04e86a87a5"
                        },
                        {
                          "name": "Php-nuke",
                          "uid": "bf340cc3-c9a6-bb4d-9125-aab62cf8b793"
                        },
                        {
                          "name": "PhpTax",
                          "uid": "dcdc1363-cdb2-5649-ad8f-fe29ef6bc82b"
                        },
                        {
                          "name": "PosgreSQL",
                          "uid": "7cad0435-5f3c-334f-9bc4-9d982b7db61f"
                        },
                        {
                          "name": "Orbitals",
                          "uid": "13713fdd-1bae-344f-9cac-9ec221511b89"
                        },
                        {
                          "name": "OpenBSD",
                          "uid": "8a44ddd3-5b5a-d84d-ba41-6b126b1cbd98"
                        },
                        {
                          "name": "Panasonic",
                          "uid": "cc86c6f8-3718-7944-a828-6c3440538bca"
                        },
                        {
                          "name": "Phpadsnew",
                          "uid": "1e907fa2-6d59-8a48-86f2-06e79c08d372"
                        },
                        {
                          "name": "Phpbb Group",
                          "uid": "ed54adfe-856e-a141-b723-a1cb7c71f0f5"
                        },
                        {
                          "name": "Christos Zoulas",
                          "uid": "6b6c401f-1367-b846-8400-1fa98bbfd890"
                        },
                        {
                          "name": "Portable Sdk For Upnp Project",
                          "uid": "63545ceb-ec76-3c48-9b42-801d3b93b99e"
                        },
                        {
                          "name": "Jevontech",
                          "uid": "460e6639-c5ab-1347-a651-53571830b4ab"
                        },
                        {
                          "name": "Aspcode.net",
                          "uid": "8b6e6f85-bce2-4f4e-8637-096b6131d305"
                        },
                        {
                          "name": "ProFTPD",
                          "uid": "096606b5-5852-c24a-b297-3a39e16906f3"
                        },
                        {
                          "name": "Poster Software",
                          "uid": "9742b75d-cf21-974c-b367-64a959e82a53"
                        },
                        {
                          "name": "CollabNet",
                          "uid": "8f5f0d3b-040f-2d4c-a4d3-7f64845d42b4"
                        },
                        {
                          "name": "SmartBear",
                          "uid": "b9df6eac-414f-4540-96b3-773f2317e55a"
                        },
                        {
                          "name": "RARLAB",
                          "uid": "3d293848-bdf2-3e4a-b583-72dcb474aecf"
                        },
                        {
                          "name": "QuickShare",
                          "uid": "e309f381-987a-b343-a726-6d088f465605"
                        },
                        {
                          "name": "SIPfoundry",
                          "uid": "5726f404-44d8-8044-883c-67d3f7771e6f"
                        },
                        {
                          "name": "Allegrosoft",
                          "uid": "87f82fb7-127a-f845-a422-4b66f66ef3d8"
                        },
                        {
                          "name": "Revived Wire Media",
                          "uid": "62d0a293-eac8-8147-880c-fb7acf7ed92d"
                        },
                        {
                          "name": "Springsource",
                          "uid": "c7bb0996-e958-b54c-baab-c2a14f0754a6"
                        },
                        {
                          "name": "Realflex",
                          "uid": "5cabf27d-57f7-f94d-8442-04818e0a62ec"
                        },
                        {
                          "name": "Site-Assistant",
                          "uid": "99e840d5-2f81-a64f-9a69-5b1eeac90f6f"
                        },
                        {
                          "name": "Redlion",
                          "uid": "1040e85d-0477-f94a-9fef-5f8c6e56a578"
                        },
                        {
                          "name": "PMSoftware",
                          "uid": "0f347794-bf6e-7f48-87f6-21a0e2838686"
                        },
                        {
                          "name": "SaveWebPortal",
                          "uid": "16e91d5e-9dc5-dd42-9bf4-b79ea47ed8ee"
                        },
                        {
                          "name": "Skybluecanvas",
                          "uid": "607b7b56-f156-3044-8687-4ad563a98d49"
                        },
                        {
                          "name": "Sangoma",
                          "uid": "7165f873-28ea-2e44-b325-c041dccb86d8"
                        },
                        {
                          "name": "Seportal",
                          "uid": "3db3a1e5-3ad3-2241-9835-3cb80fc81018"
                        },
                        {
                          "name": "Arabless",
                          "uid": "869c18a7-e5c4-6f44-971b-f94918f92444"
                        },
                        {
                          "name": "Philippe Jounin",
                          "uid": "0829ea42-a85e-354b-b58a-6592b0ddd176"
                        },
                        {
                          "name": "RabidHamster",
                          "uid": "1f43fb88-2e55-9148-8705-b6b49590432f"
                        },
                        {
                          "name": "NCSA",
                          "uid": "3f694099-5555-5b4a-b3f5-f8b7c67cf9b1"
                        },
                        {
                          "name": "Zebrafeeds",
                          "uid": "920b9aab-7287-8a4c-8b61-6ff288522b1d"
                        },
                        {
                          "name": "ScozNet",
                          "uid": "aff9e278-7a4d-a848-aac6-ee039ee2ecca"
                        },
                        {
                          "name": "Whitsoft Development",
                          "uid": "44a6d512-7eb1-e84e-8c77-b29eb5d5ea49"
                        },
                        {
                          "name": "Thewebforum",
                          "uid": "2ebab018-7575-a948-a993-c7f62a9efef5"
                        },
                        {
                          "name": "Splunk",
                          "uid": "ae3950fe-db9a-eb40-a315-120473d958fd"
                        },
                        {
                          "name": "Turbopower",
                          "uid": "be1b67e1-2252-eb48-894a-2514d0ed4653"
                        },
                        {
                          "name": "RIM",
                          "uid": "aadf8432-2114-6545-8069-9657d9acec13"
                        },
                        {
                          "name": "Serv-U",
                          "uid": "81a71f3b-f1e0-3c44-abdc-1014b2bbe862"
                        },
                        {
                          "name": "Schneider Electric",
                          "uid": "a05eb24f-f11b-c649-862f-859db3778d35"
                        },
                        {
                          "name": "Apache",
                          "uid": "e41011c4-1a0b-e84a-81a6-abd3c167cb9e"
                        },
                        {
                          "name": "Openssl",
                          "uid": "b6448a4c-a6b1-0140-be02-4e28b3ab9b04"
                        },
                        {
                          "name": "Sabdrimer",
                          "uid": "139a641d-33bd-9643-8600-0d2c98c09b65"
                        },
                        {
                          "name": "Supermicro",
                          "uid": "3455ba9d-314d-9b46-834a-0ce9a45cb1d0"
                        },
                        {
                          "name": "Simple E-Document",
                          "uid": "ef89f642-8146-1346-aa76-6866f0d43777"
                        },
                        {
                          "name": "Senkas",
                          "uid": "7847f300-38aa-054d-9c2c-76a7df79e600"
                        },
                        {
                          "name": "Rkd Software",
                          "uid": "a826b553-d2af-464d-8b5a-ed0aceb36a86"
                        },
                        {
                          "name": "PTC",
                          "uid": "f5318f12-7b0b-e640-8c00-7031390964d4"
                        },
                        {
                          "name": "SafeNet",
                          "uid": "655e9855-0bd9-7f46-b68b-b6b8aa112039"
                        },
                        {
                          "name": "Cisco",
                          "uid": "a44d1dfb-98cf-c64f-8e0e-c832d4942446"
                        },
                        {
                          "name": "Rdesktop",
                          "uid": "b00bf73c-2bab-6e44-96bb-325d4d5d8deb"
                        },
                        {
                          "name": "Quest",
                          "uid": "5c515e55-36b4-eb40-b4e8-f60e5ab97d0b"
                        },
                        {
                          "name": "Simple Machines",
                          "uid": "570cf656-3823-db4c-b86a-15f5231fe4ec"
                        },
                        {
                          "name": "Tembria",
                          "uid": "2012b09d-8c2a-db41-b797-d856980482d0"
                        },
                        {
                          "name": "Proofpoint",
                          "uid": "005b3d21-535c-c044-aeb5-6c0e357bbe3f"
                        },
                        {
                          "name": "Lbl",
                          "uid": "33b1b1f0-df20-5f4f-ba55-8b33275759a3"
                        },
                        {
                          "name": "SugarCRM",
                          "uid": "01becdd5-5b56-8144-82e3-fd0e04b745ff"
                        },
                        {
                          "name": "Synology",
                          "uid": "35a87c01-6052-a443-bee7-d1a03a6fc920"
                        },
                        {
                          "name": "Icona",
                          "uid": "f9cee1f7-60bc-6c45-9f69-ec012f09a4d3"
                        },
                        {
                          "name": "Reprose Software",
                          "uid": "668ae220-228a-5e45-b816-cd4a3b2ead03"
                        },
                        {
                          "name": "adiscon",
                          "uid": "c97f57c6-8405-394e-a56c-409a4eb244d6"
                        },
                        {
                          "name": "Tiki",
                          "uid": "c54e1827-157b-014d-a780-9a98f9fd8cde"
                        },
                        {
                          "name": "Visual Mining",
                          "uid": "5aeacfed-8f68-8f49-b24e-a5d0998e19c2"
                        },
                        {
                          "name": "Tripwire",
                          "uid": "f7b43296-b025-dd46-baee-7d5e5f7f08b9"
                        },
                        {
                          "name": "picolix",
                          "uid": "dedf7fb4-f2b4-2b47-8121-c3a422253caa"
                        },
                        {
                          "name": "Wellintech",
                          "uid": "be7e9352-2321-4046-bdf0-24d5b7c01f87"
                        },
                        {
                          "name": "Visiwave",
                          "uid": "fb6e07a1-25d8-d84b-b907-e43c0a929e59"
                        },
                        {
                          "name": "Affordable Web Space Design",
                          "uid": "3ecb8a89-b7f0-4d48-926e-838b2d8b0b7a"
                        },
                        {
                          "name": "Venom Board",
                          "uid": "015c19db-5e98-2844-a489-0f9cfb9501e9"
                        },
                        {
                          "name": "Vicidial",
                          "uid": "29df942a-c069-2040-b06b-b27bbe65fbec"
                        },
                        {
                          "name": "Maps",
                          "uid": "80fd7b4b-2e5c-114e-bc4a-0443c64797d9"
                        },
                        {
                          "name": "Mikael Software",
                          "uid": "6e6719a8-9896-8a4e-bfbb-4bd7ee75d74a"
                        },
                        {
                          "name": "Web Server",
                          "uid": "ee24b56d-ff8d-314f-8894-3cad888bb71a"
                        },
                        {
                          "name": "South River Technologies",
                          "uid": "502c1432-139f-8044-bccf-ec53c17ddfa5"
                        },
                        {
                          "name": "WinRAR",
                          "uid": "69b48e60-e003-6b40-b801-a1c0f728d141"
                        },
                        {
                          "name": "VirtualSystem",
                          "uid": "ff74945a-239c-7c4f-99f9-2631156a2f9f"
                        },
                        {
                          "name": "Ralph Capper",
                          "uid": "9ecbfdeb-3fd2-ba4e-9070-fc06eecebe10"
                        },
                        {
                          "name": "VanDyke",
                          "uid": "008b66a4-8ee1-9545-86c5-611b09a47fbc"
                        },
                        {
                          "name": "Wavelink",
                          "uid": "e33c7c9b-ddc9-844e-8be7-043a451536b5"
                        },
                        {
                          "name": "Corel Corporation",
                          "uid": "8b685a09-b15c-794d-8b06-928694006ca7"
                        },
                        {
                          "name": "3D Visual Enterprise Viewer",
                          "uid": "db8734d4-9bb4-1e43-80d2-f955f3f833c3"
                        },
                        {
                          "name": "Vmist",
                          "uid": "966defb5-9564-0441-92af-4d11fec4dd32"
                        },
                        {
                          "name": "Tsep",
                          "uid": "06e92915-fce1-4541-bb44-3e0cf845d3a9"
                        },
                        {
                          "name": "WinFTP",
                          "uid": "1b75910d-9f74-ae40-84cd-8af3ba8e7da9"
                        },
                        {
                          "name": "TWiki",
                          "uid": "d6e8eb8c-8cc3-8a40-906b-2d64c2097612"
                        },
                        {
                          "name": "uTorrent",
                          "uid": "ee454d98-7675-5d4f-8bbc-7536b1b8cfcb"
                        },
                        {
                          "name": "Viscom Software",
                          "uid": "ee4c7930-27ae-844b-ac23-53df4d4330d4"
                        },
                        {
                          "name": "ClamAV",
                          "uid": "38634040-f079-d84c-95d5-ea829f634ead"
                        },
                        {
                          "name": "Ultra Shareware",
                          "uid": "fee27a72-69b8-614b-b1f9-e34b6c2844fd"
                        },
                        {
                          "name": "Trend Micro",
                          "uid": "e4fe5a3d-09ce-e34c-8ed7-f7f8f4540280"
                        },
                        {
                          "name": "WebUI",
                          "uid": "7b9c4848-27a6-c84c-aaa9-64d7ca66588c"
                        },
                        {
                          "name": "Wordcircle",
                          "uid": "b1a006f0-8ce3-3245-bb36-61196441ae23"
                        },
                        {
                          "name": "Trihedral",
                          "uid": "a66e4547-e86d-8c42-9468-764c0a25831e"
                        },
                        {
                          "name": "Vtiger",
                          "uid": "87258422-b2e7-564d-afde-b270be8435b4"
                        },
                        {
                          "name": "Typo3",
                          "uid": "67b874c2-df24-0645-a47a-a8b2ab9faaa9"
                        },
                        {
                          "name": "VBulletin",
                          "uid": "30562aa7-2f22-f742-ab84-abb6dea31cf8"
                        },
                        {
                          "name": "Google",
                          "uid": "32ced21b-236a-0945-a886-8faad322b4fb"
                        },
                        {
                          "name": "Php Outburst",
                          "uid": "e04e31d2-3bc5-6a49-9f79-a97bae576ed5"
                        },
                        {
                          "name": "Un4Seen",
                          "uid": "5db5e6f7-0dd2-1247-a279-35b3401d3102"
                        },
                        {
                          "name": "Wibu Systems",
                          "uid": "10bf1edb-7121-714e-a598-c8794f818464"
                        },
                        {
                          "name": "Webmin",
                          "uid": "83b1d031-d87d-df49-a129-91d9571c79d0"
                        },
                        {
                          "name": "Ultimate Fun Book",
                          "uid": "239370d5-503d-e541-808b-ae7281fdd516"
                        },
                        {
                          "name": "WebPageTest",
                          "uid": "35265942-4071-5843-a63f-a834000cb648"
                        },
                        {
                          "name": "Tropicalm",
                          "uid": "be849639-a12b-834e-9093-454c00c1b919"
                        },
                        {
                          "name": "Canonical",
                          "uid": "8bfb3afe-4ece-1546-b167-7d616a880d1c"
                        },
                        {
                          "name": "Vego",
                          "uid": "25cd7974-943b-a843-9e51-2a9192e3abf8"
                        },
                        {
                          "name": "Ubi",
                          "uid": "8d54271d-fec3-b647-b08c-3fae4d59cfc4"
                        },
                        {
                          "name": "e-merge GmbH",
                          "uid": "d60906a4-d2a7-be4f-9233-e71092717224"
                        },
                        {
                          "name": "Crawlability",
                          "uid": "a1b738de-d3e8-a746-ac22-109b8d7c6885"
                        },
                        {
                          "name": "Modsecurity",
                          "uid": "b00c5bd8-a501-4749-9405-f631b918026b"
                        },
                        {
                          "name": "WD",
                          "uid": "526f811c-4470-0f4c-b174-1d173b12166d"
                        },
                        {
                          "name": "TP-LINK",
                          "uid": "6aa7463c-d9f1-fa4a-874f-43713e14bd72"
                        },
                        {
                          "name": "Tivoli",
                          "uid": "e8a6cf7a-447e-6740-a8eb-414390872070"
                        },
                        {
                          "name": "XChat",
                          "uid": "e055c02c-fbb7-3646-a354-4ae4951c6669"
                        },
                        {
                          "name": "Edge",
                          "uid": "2008f749-0992-c74d-9315-e66ff6c55261"
                        },
                        {
                          "name": "Yahoo",
                          "uid": "144cf369-f541-3e45-aba1-6a26daa57e28"
                        },
                        {
                          "name": "GnuTLS",
                          "uid": "d86d4049-7390-cf45-a965-cbedac045ccf"
                        },
                        {
                          "name": "Applications Manager",
                          "uid": "356d399c-e52c-814d-907c-635865a51705"
                        },
                        {
                          "name": "KingView",
                          "uid": "62c90bfb-fe24-1644-90af-4aabcfb58ae7"
                        },
                        {
                          "name": "NTP",
                          "uid": "1105065c-4f28-2b47-be2c-bb2671b14f39"
                        },
                        {
                          "name": "Glyph And Cog",
                          "uid": "c59f3cac-00b5-ff4e-bd1d-9b9aebd9c5db"
                        },
                        {
                          "name": "Websense",
                          "uid": "0105841c-5c80-9044-9f06-bd92ddac5330"
                        },
                        {
                          "name": "ABBS",
                          "uid": "4802dd79-3d70-044f-9df5-1381b3b84e14"
                        },
                        {
                          "name": "artegic AG",
                          "uid": "3eeb58a9-c91a-8144-a267-4afc81b55947"
                        },
                        {
                          "name": "Lync",
                          "uid": "7a6ed99b-9746-6246-8885-7b69c93c5c38"
                        },
                        {
                          "name": "EventLog Analyzer",
                          "uid": "616d4a0f-1624-7b4e-b968-fe0d3d38d9c8"
                        },
                        {
                          "name": "ServiceDesk",
                          "uid": "16714bb5-fdf8-fa4c-af81-efa7d09f6aef"
                        },
                        {
                          "name": "OpManager",
                          "uid": "d6a17498-e50a-6e4d-9ef8-f8e8ab0d9957"
                        },
                        {
                          "name": "License Manager",
                          "uid": "1b08c63e-63d9-884c-8079-d1a32f746cd2"
                        },
                        {
                          "name": "Zend Technologies",
                          "uid": "23d4ef51-4e67-954f-b72e-d1e7966eb6b6"
                        },
                        {
                          "name": "Unified Security Management",
                          "uid": "078ca8de-95d3-604e-8a9e-340e8b4c6021"
                        },
                        {
                          "name": "Openfire",
                          "uid": "420f2939-921e-9848-b7e7-6c3d85cbc995"
                        },
                        {
                          "name": "XCV Deface Maker",
                          "uid": "ae12368d-794d-114a-a7ac-b2e97a4e4e2e"
                        },
                        {
                          "name": "Zavio",
                          "uid": "8aa08363-76ea-6548-a2f4-1b865e7131b8"
                        },
                        {
                          "name": "Digium",
                          "uid": "414e7f51-e608-8f4d-983e-b8cbbc146848"
                        },
                        {
                          "name": "Javascript",
                          "uid": "cb93b1b7-ba0e-bc44-af0d-c0fc01abd65e"
                        },
                        {
                          "name": "WU-FTPD",
                          "uid": "197ffdc4-d6f7-7848-bfae-de4fc0776650"
                        },
                        {
                          "name": "Labtam",
                          "uid": "680084cb-4931-be4c-9ffc-5c3bbddf4ec2"
                        },
                        {
                          "name": "Zenturi",
                          "uid": "fe062965-3c53-c147-b63a-44a9247f7431"
                        },
                        {
                          "name": "InduSoft Web Studio",
                          "uid": "2f9a6ae2-c8dc-4445-9eee-3f3ed2e36151"
                        },
                        {
                          "name": "Zone Labs",
                          "uid": "01d75316-2cf9-e94c-b2cb-63ac2e2d05a3"
                        },
                        {
                          "name": "AccuRev",
                          "uid": "5f656b32-1c53-c24b-9358-b6b86e754093"
                        },
                        {
                          "name": "Media Center",
                          "uid": "a2b39ce5-99c3-e640-be8f-6adcd1d1d372"
                        },
                        {
                          "name": "Xi Software",
                          "uid": "76fb13a1-e1c0-1940-a5b8-3ed3edaa8891"
                        },
                        {
                          "name": "X.Org",
                          "uid": "2db2793f-f04d-9143-8b83-94843deca7a1"
                        },
                        {
                          "name": "Zenoss",
                          "uid": "7edc9d21-c223-d04d-b475-402795d53f94"
                        },
                        {
                          "name": "Squid",
                          "uid": "19721d26-6f71-3a45-89e6-2845a0c99103"
                        },
                        {
                          "name": "Simple Ads Manager Plugin",
                          "uid": "0503e6a1-7514-c049-9910-366c13582891"
                        },
                        {
                          "name": "Apple ID",
                          "uid": "d9f1cc1a-e3dd-0a4f-b583-a4270f70a161"
                        },
                        {
                          "name": "XLink",
                          "uid": "45abbb8b-d84b-3d4b-8501-5d43706c1313"
                        },
                        {
                          "name": "WoWRoster",
                          "uid": "7bb24719-98d8-6b43-8628-0f367598a33b"
                        },
                        {
                          "name": "SmartViewer",
                          "uid": "0c2ba50a-ff50-0b41-8cce-4a5db7ecb029"
                        },
                        {
                          "name": "xMid",
                          "uid": "41e1b032-df69-9742-b754-ed9bcb60ff4d"
                        },
                        {
                          "name": "Zabbix",
                          "uid": "253efa22-4bd7-254d-ba79-cd884daac2bd"
                        },
                        {
                          "name": "Xerox",
                          "uid": "6f5645e1-bee7-4f45-814f-f4e1bc096122"
                        },
                        {
                          "name": "XnSoft",
                          "uid": "4fa0e630-ab70-c84e-a541-7f40850c7963"
                        },
                        {
                          "name": "Zimbra",
                          "uid": "64f6f2a2-583b-0f45-bf36-32ee747b7c01"
                        }
                      ]
                    },
                    {
                      "name": "File Type",
                      "uid": "6fcbc056-5179-ca46-8a11-edc090fab475",
                      "values": [
                        {
                          "name": "JTP",
                          "uid": "cc3745c2-a28c-1a4f-93b5-8d4ec4fe28bb"
                        },
                        {
                          "name": "WMF",
                          "uid": "956102e8-03cc-3e4d-953b-7c1b9fb027d1"
                        },
                        {
                          "name": "MKV",
                          "uid": "6d19cfcc-ba7f-cd49-9424-b97ee7d47636"
                        },
                        {
                          "name": "WordPerfect",
                          "uid": "3472410f-4a6e-ae4a-b4d4-b6a097570057"
                        },
                        {
                          "name": "EXE",
                          "uid": "cf3ec21f-b74e-6343-b771-051abb84bc72"
                        },
                        {
                          "name": "CAB",
                          "uid": "02097bb3-7dc8-c849-bd38-f36c69bfbad0"
                        },
                        {
                          "name": "TIFF",
                          "uid": "7d37f447-6450-4140-b360-1f218a49c67d"
                        },
                        {
                          "name": "RMF",
                          "uid": "8374de69-e114-fc4e-b1ed-acbbf2bd4c2f"
                        },
                        {
                          "name": "PDF",
                          "uid": "b6631fa1-96b5-7e4d-a071-6b77886f58e3"
                        },
                        {
                          "name": "CLASS",
                          "uid": "78d7312a-3193-6c47-93eb-d07384c8f6a7"
                        },
                        {
                          "name": "LIBPCAP",
                          "uid": "ddcaa086-0810-f84d-867d-a170b32510a4"
                        },
                        {
                          "name": "EMF",
                          "uid": "c78fc667-28a8-344d-9e36-58edceeab7b0"
                        },
                        {
                          "name": "RTF",
                          "uid": "b2faebcb-b0dd-954e-9ffd-c7931719c544"
                        },
                        {
                          "name": "MPEG",
                          "uid": "fafe9b8a-c616-6849-a581-59afbc5ac6f9"
                        },
                        {
                          "name": "FLV",
                          "uid": "3ce6a735-e69d-f644-8b63-2c3808be3601"
                        },
                        {
                          "name": "PNG",
                          "uid": "98579cd4-7b8e-a940-bd9c-1ea4a5185aa3"
                        },
                        {
                          "name": "PCX",
                          "uid": "5e681037-5f79-464b-a21d-284e3c08ebf6"
                        },
                        {
                          "name": "LNK",
                          "uid": "1ef8eccd-e2b8-b24b-957f-812c7420b996"
                        },
                        {
                          "name": "Font",
                          "uid": "278236d2-a093-dd40-b6aa-230446ecc982"
                        },
                        {
                          "name": "MP4",
                          "uid": "2f6ef30b-22a9-b146-99f1-675d5a37e6c9"
                        },
                        {
                          "name": "JP2",
                          "uid": "8a59f105-f989-b84f-aa45-b7f98efa3852"
                        },
                        {
                          "name": "EOT",
                          "uid": "27e3aedf-3973-1348-881d-dd2a24094e18"
                        },
                        {
                          "name": "SSP",
                          "uid": "95d3154e-c487-1e43-a2c6-563771717529"
                        },
                        {
                          "name": "RAR",
                          "uid": "f08d6975-97a5-204f-aa89-55d239ce4fa0"
                        },
                        {
                          "name": "ASF",
                          "uid": "09b0f713-f7ad-0e49-b6ad-f2e0e1105db2"
                        },
                        {
                          "name": "AVI",
                          "uid": "22ae25ca-e1c3-c741-a25e-e6c43b668b9e"
                        },
                        {
                          "name": "MP3",
                          "uid": "cfc3d176-6701-fa4e-97f4-219bb7abd228"
                        },
                        {
                          "name": "BMP",
                          "uid": "b5e7a602-aceb-3448-81a5-5e8f682518e6"
                        },
                        {
                          "name": "M3U",
                          "uid": "7f17db91-5dc3-fa46-8dd4-3409a6ce370b"
                        },
                        {
                          "name": "WAV",
                          "uid": "848d32f2-12e7-1240-8594-f43defa2fd16"
                        },
                        {
                          "name": "GIF",
                          "uid": "2a1193ed-a21c-174c-864f-e272449fdc56"
                        },
                        {
                          "name": "ELF",
                          "uid": "1c315d1e-6f05-9e43-bb99-4c196f4af482"
                        },
                        {
                          "name": "ICO",
                          "uid": "3a1c0167-baa4-934a-a588-3266d1a43177"
                        },
                        {
                          "name": "MDB",
                          "uid": "e84148c4-f18f-6343-b8b1-606cdac60099"
                        },
                        {
                          "name": "ARJ",
                          "uid": "d127560f-727d-9446-bed4-f2d03704f8b5"
                        },
                        {
                          "name": "TAR",
                          "uid": "34f8d433-888d-a147-9e78-162af4d8ff17"
                        },
                        {
                          "name": "JPEG",
                          "uid": "838005cc-c4a5-ea49-a96c-b2b099fdca78"
                        },
                        {
                          "name": "Coreldraw",
                          "uid": "8c669775-1edc-a44b-98ae-1f8d21da0b5a"
                        },
                        {
                          "name": "M4V",
                          "uid": "c9406fb9-27d4-8943-af84-d779930c9f8e"
                        },
                        {
                          "name": "SWF",
                          "uid": "32bad04c-6e40-d14d-a586-ec68ab8866f1"
                        },
                        {
                          "name": "GZIP",
                          "uid": "1d92fd4d-1080-e24c-a423-783fd371780a"
                        },
                        {
                          "name": "JNT",
                          "uid": "20fca405-84db-234b-96a6-cf5e4d13dfea"
                        },
                        {
                          "name": "RPM",
                          "uid": "65f7bd35-214c-3946-9405-ec7013132188"
                        },
                        {
                          "name": "Office",
                          "uid": "f8bec27c-bf61-ba4c-91e0-fd724db6141a"
                        },
                        {
                          "name": "TTF",
                          "uid": "d848445b-3371-fc45-b111-0428baaa9cbb"
                        },
                        {
                          "name": "MIDI",
                          "uid": "2c1898cb-f745-2f46-97ca-040bfe90029d"
                        },
                        {
                          "name": "ZIP",
                          "uid": "8324bc95-1c4c-6a45-ae14-fa15058e07e7"
                        },
                        {
                          "name": "WAB",
                          "uid": "a9c1e7a4-3652-ab41-b0aa-2e14966f7076"
                        },
                        {
                          "name": "Word",
                          "uid": "26dd81e2-24cb-304e-9bae-22a086094ad5"
                        },
                        {
                          "name": "123",
                          "uid": "b7cbbb3c-0cbb-8846-b6a7-14762f135406"
                        },
                        {
                          "name": "Excel",
                          "uid": "d78f85b5-6c38-6540-b5c3-3757181c63ed"
                        },
                        {
                          "name": "PowerPoint",
                          "uid": "028a00aa-8d4c-214d-8670-de39b5d51657"
                        },
                        {
                          "name": "ACCDB",
                          "uid": "2d2836fc-0ad4-4240-a0fb-7194df5f9384"
                        },
                        {
                          "name": "PLS",
                          "uid": "6a82fd04-d5c0-154b-b522-656d54d97e1f"
                        },
                        {
                          "name": "QTFF",
                          "uid": "887ff7db-138d-1046-974c-f7d61455b3ae"
                        },
                        {
                          "name": "HTML",
                          "uid": "868d0a42-8ba1-0841-832b-c70b501e0358"
                        }
                      ]
                    },
                    {
                      "name": "Protected Asset",
                      "uid": "dc9d2116-59d7-c345-a7f6-b15678d7a996",
                      "values": [
                        {
                          "name": "SERVER",
                          "uid": "f762b1b8-869e-0f4c-85ad-ca44e19ccc9c"
                        },
                        {
                          "name": "CLIENT",
                          "uid": "5f21aad1-d6d1-4a35-bf1c-ddfe320adcac"
                        }
                      ]
                    },
                    {
                      "name": "CVSS",
                      "uid": "73572e5d-40b4-314c-b474-afd4de60b3c7",
                      "values": [
                        {
                          "name": "2.9",
                          "uid": "db9ed06c-8508-0442-9150-70829ad9914d"
                        },
                        {
                          "name": "1.2",
                          "uid": "a89f3775-c788-7c43-b727-ba728c0d0357"
                        },
                        {
                          "name": "2.0",
                          "uid": "664c9501-beaa-5045-9210-eaedcfee71f8"
                        },
                        {
                          "name": "1.6",
                          "uid": "1cf526a8-8a73-e94a-9391-db0175602a87"
                        },
                        {
                          "name": "1.4",
                          "uid": "9b102c08-3a96-f344-9c2c-c6baee40b981"
                        },
                        {
                          "name": "1.8",
                          "uid": "454d112a-ef33-e148-ae59-f87307dee417"
                        },
                        {
                          "name": "2.7",
                          "uid": "fa106fc4-2be7-9840-909e-2ae6a178718c"
                        },
                        {
                          "name": "2.2",
                          "uid": "7d50dccc-6a7d-2848-af67-715318fcd1c0"
                        },
                        {
                          "name": "1.0",
                          "uid": "cb53bb64-c0a4-2a46-9027-381ab9ceba3a"
                        },
                        {
                          "name": "2.3",
                          "uid": "8458947b-37a6-3c41-b252-26dafe21783d"
                        },
                        {
                          "name": "1.9",
                          "uid": "f54ca85c-e8f7-284c-9852-dc8070925c26"
                        },
                        {
                          "name": "2.5",
                          "uid": "f262119f-2f2d-a449-8ce7-36a0dd8d5574"
                        },
                        {
                          "name": "1.1",
                          "uid": "98a3b3e8-e241-174a-8bc0-63be702a789a"
                        },
                        {
                          "name": "1.7",
                          "uid": "47903d3d-4e12-894b-8171-0c5c7c60e5db"
                        },
                        {
                          "name": "2.6",
                          "uid": "d6c1b3f0-9c0a-ff4a-8c46-c64830c14c0e"
                        },
                        {
                          "name": "2.1",
                          "uid": "c2cde531-cdb7-884d-b1ab-07ba4ad1727b"
                        },
                        {
                          "name": "1.5",
                          "uid": "65fa0c2b-7f65-1241-92dc-0e3d78b942a6"
                        },
                        {
                          "name": "3.1",
                          "uid": "41611d61-4b35-a04e-b07e-ad791df401c8"
                        },
                        {
                          "name": "3.2",
                          "uid": "4ae8acca-9ae9-8a48-85bb-db30eff7c6f6"
                        },
                        {
                          "name": "2.8",
                          "uid": "f00d8652-dd39-5649-a353-ea0005fe8bc0"
                        },
                        {
                          "name": "2.4",
                          "uid": "df3970e6-0a63-e743-b29d-27fc69a61702"
                        },
                        {
                          "name": "3.0",
                          "uid": "363def57-c25c-7d45-ae03-e5d97d459540"
                        },
                        {
                          "name": "1.3",
                          "uid": "ba5bdd92-a71a-1d41-9d19-f21146b4435f"
                        },
                        {
                          "name": "3.3",
                          "uid": "15749bf8-669f-2048-9ae9-faa5e2443224"
                        },
                        {
                          "name": "7.8",
                          "uid": "bce33b6a-57a5-da47-b9d6-892710e33110"
                        },
                        {
                          "name": "6.1",
                          "uid": "7ce8960d-c255-464f-b650-620b14b6bf08"
                        },
                        {
                          "name": "4.1",
                          "uid": "291c5a02-92b8-c44c-bc35-f2ec665303a0"
                        },
                        {
                          "name": "7.6",
                          "uid": "f42018ca-b2ff-fb4a-ac96-45bd4ea61f2c"
                        },
                        {
                          "name": "5.4",
                          "uid": "0e99e4ee-ad84-064c-9792-ed297004e951"
                        },
                        {
                          "name": "7.2",
                          "uid": "a9f8c8a2-b546-184b-b706-428d3733defd"
                        },
                        {
                          "name": "4.5",
                          "uid": "086f10da-0deb-5a4c-bbfc-8e23c04949a7"
                        },
                        {
                          "name": "5.3",
                          "uid": "041bb72b-205b-d147-83b1-0061caea1b95"
                        },
                        {
                          "name": "7.5",
                          "uid": "09617490-10c3-ee4c-b84f-e94c69011e1f"
                        },
                        {
                          "name": "8.1",
                          "uid": "e30bc0b6-e499-864f-bcaf-5004d0c9208b"
                        },
                        {
                          "name": "6.7",
                          "uid": "2a660447-40ef-184d-a1c4-7d9d53698f75"
                        },
                        {
                          "name": "8.0",
                          "uid": "e5f03341-d4f3-0b48-8927-6f2e67e8126e"
                        },
                        {
                          "name": "7.9",
                          "uid": "2545aa0a-9412-b94e-a7ea-ba8b2ec0427d"
                        },
                        {
                          "name": "6.8",
                          "uid": "ed82a84d-5356-1c4d-8079-c80b43da8242"
                        },
                        {
                          "name": "4.8",
                          "uid": "39d41b01-7421-434a-885a-23ffe4c49ed6"
                        },
                        {
                          "name": "5.8",
                          "uid": "ba7a16d5-9ccd-4245-a36d-62964bc58f25"
                        },
                        {
                          "name": "5.9",
                          "uid": "19a9fed7-ecec-d745-abdf-e0f3561bc0dd"
                        },
                        {
                          "name": "5.2",
                          "uid": "e3c9061e-d236-cc4c-b64f-562a6d2ef2c5"
                        },
                        {
                          "name": "4.0",
                          "uid": "c6f57771-f6af-2942-8b58-7d1853fd3c10"
                        },
                        {
                          "name": "4.7",
                          "uid": "722a0ff2-cb63-c547-8c01-7f84be531dbf"
                        },
                        {
                          "name": "4.6",
                          "uid": "4c93b629-e81c-e048-b3a3-0ce93a7e67d4"
                        },
                        {
                          "name": "6.3",
                          "uid": "89620326-2643-4d41-a06c-7319936bbd64"
                        },
                        {
                          "name": "3.8",
                          "uid": "70856aa6-ee5b-a042-b000-8da022fdb1f6"
                        },
                        {
                          "name": "5.6",
                          "uid": "e7ee47e5-5445-4e41-b5de-afa2958255a8"
                        },
                        {
                          "name": "4.4",
                          "uid": "ed84707a-b3f8-7f4d-8878-742b9dc2a63d"
                        },
                        {
                          "name": "3.9",
                          "uid": "7186bad3-5285-ea45-ac8a-39e09e747ab1"
                        },
                        {
                          "name": "4.9",
                          "uid": "89f81e2d-cf2c-2e4c-bd46-d6bef8bc1e64"
                        },
                        {
                          "name": "4.3",
                          "uid": "127b9247-fbcf-ca47-aad4-289b4bcd9bed"
                        },
                        {
                          "name": "8.3",
                          "uid": "d1387e1e-0722-0940-b477-089a08f35fab"
                        },
                        {
                          "name": "5.1",
                          "uid": "f1987181-1cc1-8e47-887d-2436448e2fab"
                        },
                        {
                          "name": "3.6",
                          "uid": "bdf62280-ab9c-6344-8bbd-789ca2030bd5"
                        },
                        {
                          "name": "4.2",
                          "uid": "8459fd6a-3017-ef41-b3f7-3cbfe4522158"
                        },
                        {
                          "name": "7.3",
                          "uid": "61d643dd-4c36-8d4b-b0af-ad2024773f42"
                        },
                        {
                          "name": "6.5",
                          "uid": "3ce953ea-e8ad-c849-9189-e925b5205562"
                        },
                        {
                          "name": "6.4",
                          "uid": "c8deb901-8437-794e-a020-5c9694e40e65"
                        },
                        {
                          "name": "3.5",
                          "uid": "5807a517-4146-d74e-8df4-5901dfd956b1"
                        },
                        {
                          "name": "7.7",
                          "uid": "2626fa33-c935-dc4d-a8fe-122a234daafb"
                        },
                        {
                          "name": "6.2",
                          "uid": "4e4a0b97-5c4a-6a45-aec3-35d71834f6f7"
                        },
                        {
                          "name": "7.4",
                          "uid": "75070f0f-6ffe-6446-a5fe-3d66253b7ee8"
                        },
                        {
                          "name": "6.0",
                          "uid": "df4a33af-2b15-ea47-80b4-bbd84b3c964b"
                        },
                        {
                          "name": "5.7",
                          "uid": "f8aef6de-6677-2349-9322-9495f2c77611"
                        },
                        {
                          "name": "5.5",
                          "uid": "9ed82a54-8811-0240-9a07-ac5dcbef09f2"
                        },
                        {
                          "name": "3.7",
                          "uid": "44a606d4-f764-6a45-9337-5f2b66d2370c"
                        },
                        {
                          "name": "6.6",
                          "uid": "e40ff855-17f8-be46-870f-ba97b0573159"
                        },
                        {
                          "name": "3.4",
                          "uid": "2a368130-d55a-dc4e-a2c4-6c41b69eb6f9"
                        },
                        {
                          "name": "7.0",
                          "uid": "0b4e00fa-4597-4449-a12d-174e89069a0f"
                        },
                        {
                          "name": "8.2",
                          "uid": "b5a1368c-f3ba-a241-84c9-e05a638d970c"
                        },
                        {
                          "name": "6.9",
                          "uid": "029c4b09-20f8-1446-ab54-eb8564366cb4"
                        },
                        {
                          "name": "7.1",
                          "uid": "99b85c6e-b4fb-964a-8d31-18aa9986d711"
                        },
                        {
                          "name": "5.0",
                          "uid": "c895df96-8288-2248-90f7-329a6f3724f1"
                        },
                        {
                          "name": "8.5",
                          "uid": "cccac599-637c-2043-bfaa-2076c48ea439"
                        },
                        {
                          "name": "9.3",
                          "uid": "cc0524e7-de5d-a447-b8de-6a5ea93f9ff9"
                        },
                        {
                          "name": "8.8",
                          "uid": "5d0929c8-2af8-7243-8a66-96d3b4a13b01"
                        },
                        {
                          "name": "8.7",
                          "uid": "fad37670-fa70-f240-bf0f-3ffabfb29489"
                        },
                        {
                          "name": "8.4",
                          "uid": "1456fb83-a853-f145-8d68-0fbb21d6d675"
                        },
                        {
                          "name": "9.0",
                          "uid": "53312df6-123b-5a41-b97a-666eb1d1da5e"
                        },
                        {
                          "name": "9.7",
                          "uid": "af37b9de-5d56-5f4b-b86a-aff822765492"
                        },
                        {
                          "name": "8.6",
                          "uid": "77b089ca-ee1c-004c-a1b0-ce72683263c4"
                        },
                        {
                          "name": "9.1",
                          "uid": "1710cb1e-accc-cc4b-91bb-96cbdc9907c3"
                        },
                        {
                          "name": "8.9",
                          "uid": "54e1cf04-6ac4-b643-a8fa-8515938734a5"
                        },
                        {
                          "name": "9.8",
                          "uid": "2bf06596-b6ef-f646-89b1-9501df10d0c5"
                        },
                        {
                          "name": "9.2",
                          "uid": "0a78df1b-76d1-1348-90a4-0d27ddb1abb0"
                        },
                        {
                          "name": "9.9",
                          "uid": "1cd1298f-d58b-4948-a985-848218a8086a"
                        },
                        {
                          "name": "9.6",
                          "uid": "f86493d3-847d-814a-9b43-9f18ec61d7c8"
                        },
                        {
                          "name": "9.4",
                          "uid": "0184ae18-49a9-9141-95cd-59ea12f4c18b"
                        },
                        {
                          "name": "9.5",
                          "uid": "d3f431fd-caf2-2144-8cfa-baaea36aa07a"
                        },
                        {
                          "name": "10",
                          "uid": "6d065717-ed28-654c-b29b-1e51465c1939"
                        }
                      ]
                    },
                    {
                      "name": "Protection Tuning",
                      "uid": "58d65d86-ab73-604c-a741-1175e3b64374",
                      "values": [
                        {
                          "name": "Non-Configurable",
                          "uid": "9e12fff2-71ec-084e-be5d-f46a99a70e58"
                        },
                        {
                          "name": "Configurable",
                          "uid": "59d26c4d-386c-4d06-a5b9-9d68a9b254c7"
                        }
                      ]
                    },
                    {
                      "name": "Threat Prevalence",
                      "uid": "eb5720e4-a7ae-fa44-91f4-af2f779e8aef",
                      "values": [
                        {
                          "name": "Common",
                          "uid": "b36d1847-1dd8-9740-ae38-1fc9aa2f6747"
                        },
                        {
                          "name": "Obsolete",
                          "uid": "cd6eb868-7c11-42fb-b47d-ca4d9212eb7b"
                        }
                      ]
                    },
                    {
                      "name": "Vulnerability Effect",
                      "uid": "cc35627d-e1ad-d04c-bbc4-87da80602869",
                      "values": [
                        {
                          "name": "Privilege Escalation",
                          "uid": "e23b95b3-4c4b-d046-8868-7c514f7c0856"
                        },
                        {
                          "name": "Variable Manipulation",
                          "uid": "74488737-f644-af44-976f-d553da34f8c6"
                        },
                        {
                          "name": "Cross-Site Scripting",
                          "uid": "5c2a9b1d-16c2-0d47-a807-2c0bc58eb200"
                        },
                        {
                          "name": "Boot Code Dump",
                          "uid": "b760d74f-11c8-2641-b35b-ecd4b3d1354e"
                        },
                        {
                          "name": "Information Disclosure",
                          "uid": "bae691cd-0d3e-824a-8ab5-d10b7cdeff42"
                        },
                        {
                          "name": "File Upload / Access / Execution",
                          "uid": "ca6a3a33-3b7d-df40-9105-478aaa459b9c"
                        },
                        {
                          "name": "Code Execution",
                          "uid": "a9e0c4f4-4557-f740-899e-bbec6f856098"
                        },
                        {
                          "name": "Memory Corruption",
                          "uid": "9b1526d3-14d2-0041-87bb-b2758d326f2f"
                        },
                        {
                          "name": "Directory Traversal",
                          "uid": "7a2af117-0e26-4548-8be4-348e25407101"
                        },
                        {
                          "name": "Authentication Bypass",
                          "uid": "d0e79192-9f67-fd4c-93ff-62d6bbee7f8b"
                        },
                        {
                          "name": "Denial of Service",
                          "uid": "4378886a-9163-f640-bfba-feae3b8ea235"
                        },
                        {
                          "name": "Command Execution",
                          "uid": "422221ba-4294-6b47-8b6b-7ecce8b6ed60"
                        },
                        {
                          "name": "Shell Upload",
                          "uid": "7147fd4f-73a4-6c48-b543-0c399b9b9c9d"
                        },
                        {
                          "name": "Stack Corruption",
                          "uid": "8e221b61-439b-724b-9536-2c6b7cb3cdeb"
                        },
                        {
                          "name": "File Deletion and Overwriting",
                          "uid": "23d10a6b-ae0e-484d-a03f-24408ceb33b1"
                        },
                        {
                          "name": "Cross-Site Request Forgery",
                          "uid": "c38c3bed-aef9-0240-9900-a0173608d883"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/run-threat-emulation-file-types-offline-update": {
      "post": {
        "tags": [
          "ThreatEmulation"
        ],
        "operationId": "runThreatEmulationFileTypesOfflineUpdate",
        "description": "The parameters and request body are for method: runThreatEmulationFileTypesOfflineUpdate. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "message": "Update of file types supported by Threat Emulation completed successfully."
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/verify-policy": {
      "post": {
        "tags": [
          "Policy"
        ],
        "operationId": "verifyPolicy",
        "description": "The parameters and request body are for method: verifyPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/install-policy": {
      "post": {
        "tags": [
          "Policy"
        ],
        "operationId": "installPolicy",
        "description": "The parameters and request body are for method: installPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-package": {
      "post": {
        "tags": [
          "PolicyPackage"
        ],
        "operationId": "addPackage",
        "description": "The parameters and request body are for method: addPackage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "name": {
                      "type": "string"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "access": {
                      "type": "boolean"
                    },
                    "access-layers": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "vpn-traditional-mode": {
                      "type": "boolean"
                    },
                    "nat-policy": {
                      "type": "boolean"
                    },
                    "qos": {
                      "type": "boolean"
                    },
                    "qos-policy-type": {
                      "type": "string"
                    },
                    "desktop-security": {
                      "type": "boolean"
                    },
                    "threat-prevention": {
                      "type": "boolean"
                    },
                    "installation-targets": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "38b4ed6e-711c-49fa-b9f4-638290d621be",
                  "folder": {
                    "uid": "3a1d42e8-b138-4f91-bf9e-4c79247d2ded",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1430896142009,
                      "iso-8601": "2015-05-06T10:09+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1430896142009,
                      "iso-8601": "2015-05-06T10:09+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "name": "New Standard Package 1",
                  "comments": "My Comments",
                  "color": "green",
                  "icon": "Blades/Access",
                  "access": true,
                  "access-layers": [
                    {
                      "folder": {
                        "uid": "3a1d42e8-b138-4f91-bf9e-4c79247d2ded",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "layer",
                      "name": "New Standard Package 1 Network",
                      "uid": "0029eebd-27a3-4a9f-a9e4-20e083226555"
                    }
                  ],
                  "vpn-traditional-mode": false,
                  "nat-policy": true,
                  "qos": false,
                  "qos-policy-type": "recommended",
                  "desktop-security": false,
                  "threat-prevention": false,
                  "installation-targets": "all"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-package": {
      "post": {
        "tags": [
          "PolicyPackage"
        ],
        "operationId": "showPackage",
        "description": "The parameters and request body are for method: showPackage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-package": {
      "post": {
        "tags": [
          "PolicyPackage"
        ],
        "operationId": "setPackage",
        "description": "The parameters and request body are for method: setPackage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "name": {
                      "type": "string"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    },
                    "access": {
                      "type": "boolean"
                    },
                    "access-layers": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "threat-layers": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "vpn-traditional-mode": {
                      "type": "boolean"
                    },
                    "nat-policy": {
                      "type": "boolean"
                    },
                    "qos": {
                      "type": "boolean"
                    },
                    "qos-policy-type": {
                      "type": "string"
                    },
                    "desktop-security": {
                      "type": "boolean"
                    },
                    "threat-prevention": {
                      "type": "boolean"
                    },
                    "installation-targets": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "5b33bf86-1349-4ad6-ba41-592706f47e54",
                  "folder": {
                    "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "local domain",
                    "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                    "name": "SMC User"
                  },
                  "meta-info": {
                    "lock": "unlocked",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1435741821828,
                      "iso-8601": "2015-07-01T12:10+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1435646381592,
                      "iso-8601": "2015-06-30T09:39+0300"
                    },
                    "creator": "Check Point"
                  },
                  "tags": [],
                  "name": "Standard",
                  "comments": "",
                  "color": "black",
                  "icon": "Blades/Access",
                  "access": true,
                  "access-layers": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "access-layer",
                      "name": "Network",
                      "uid": "5d9b6eab-fefa-4a9e-92d3-3b7721c3a20c"
                    },
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "access-layer",
                      "name": "New Access Layer 1",
                      "uid": "61842a83-e39c-41d7-9ad0-ca88a3cdb7e9"
                    }
                  ],
                  "threat-layers": [
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "threat-layer",
                      "name": "Threat Prevention",
                      "uid": "7c69ed00-4f6d-4215-aa65-abcb4ed2a205"
                    },
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "threat-layer",
                      "name": "L1",
                      "uid": "ec5e08b2-27f3-4099-8965-7d9cd4a48139"
                    },
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "threat-layer",
                      "name": "IPS",
                      "uid": "c6e44726-5195-4c04-a1a8-c4be143118c0"
                    },
                    {
                      "folder": {
                        "uid": "3b1764a5-363a-4f63-a2ab-2ef90746c70c",
                        "name": "/Global Objects"
                      },
                      "domain": {
                        "domain-type": "local domain",
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User"
                      },
                      "type": "threat-layer",
                      "name": "New Layer 1",
                      "uid": "f769db97-5a7b-4290-a898-ba4a2582181d"
                    }
                  ],
                  "vpn-traditional-mode": false,
                  "nat-policy": true,
                  "qos": false,
                  "qos-policy-type": "recommended",
                  "desktop-security": false,
                  "threat-prevention": true,
                  "installation-targets": "all"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-package": {
      "post": {
        "tags": [
          "PolicyPackage"
        ],
        "operationId": "deletePackage",
        "description": "The parameters and request body are for method: deletePackage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-packages": {
      "post": {
        "tags": [
          "PolicyPackage"
        ],
        "operationId": "showPackages",
        "description": "The parameters and request body are for method: showPackages. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-domain": {
      "post": {
        "tags": [
          "Domain"
        ],
        "operationId": "addDomain",
        "description": "The parameters and request body are for method: addDomain. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-domain": {
      "post": {
        "tags": [
          "Domain"
        ],
        "operationId": "showDomain",
        "description": "The parameters and request body are for method: showDomain. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-domain": {
      "post": {
        "tags": [
          "Domain"
        ],
        "operationId": "setDomain",
        "description": "The parameters and request body are for method: setDomain. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-domain": {
      "post": {
        "tags": [
          "Domain"
        ],
        "operationId": "deleteDomain",
        "description": "The parameters and request body are for method: deleteDomain. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-domains": {
      "post": {
        "tags": [
          "Domain"
        ],
        "operationId": "showDomains",
        "description": "The parameters and request body are for method: showDomains. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-global-domain": {
      "post": {
        "tags": [
          "GlobalDomain"
        ],
        "operationId": "showGlobalDomain",
        "description": "The parameters and request body are for method: showGlobalDomain. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-global-domain": {
      "post": {
        "tags": [
          "GlobalDomain"
        ],
        "operationId": "setGlobalDomain",
        "description": "The parameters and request body are for method: setGlobalDomain. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-mds": {
      "post": {
        "tags": [
          "MultiDomainServerMDS"
        ],
        "operationId": "showMds",
        "description": "The parameters and request body are for method: showMds. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-mdss": {
      "post": {
        "tags": [
          "MultiDomainServerMDS"
        ],
        "operationId": "showMdss",
        "description": "The parameters and request body are for method: showMdss. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "folder": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "domain-type": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              }
                            }
                          },
                          "type": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "uid": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 1,
                  "total": 1,
                  "objects": [
                    {
                      "folder": {
                        "uid": "a3a104fc-3987-4d22-9bf1-3fdbec0af39e",
                        "name": "Global Objects"
                      },
                      "domain": {
                        "domain-type": "system domain",
                        "uid": "a0eebc99-afed-4ef8-bb6d-fedfedfedfed",
                        "name": "System Data"
                      },
                      "type": "mds",
                      "name": "test_mds",
                      "uid": "d4ea2802-a148-48ac-8f21-fcce69588700"
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-place-holder": {
      "post": {
        "tags": [
          "Placeholder"
        ],
        "operationId": "showPlaceHolder",
        "description": "The parameters and request body are for method: showPlaceHolder. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uid": {
                      "type": "string"
                    },
                    "folder": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "domain": {
                      "type": "object",
                      "properties": {
                        "domain-type": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    },
                    "meta-info": {
                      "type": "object",
                      "properties": {
                        "lock": {
                          "type": "string"
                        },
                        "validation-state": {
                          "type": "string"
                        },
                        "read-only": {
                          "type": "boolean"
                        },
                        "last-modify-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "last-modifier": {
                          "type": "string"
                        },
                        "creation-time": {
                          "type": "object",
                          "properties": {
                            "posix": {
                              "type": "number"
                            },
                            "iso-8601": {
                              "type": "string"
                            }
                          }
                        },
                        "creator": {
                          "type": "string"
                        }
                      }
                    },
                    "tags": {
                      "type": "object"
                    },
                    "comments": {
                      "type": "string"
                    },
                    "color": {
                      "type": "string"
                    },
                    "icon": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uid": "29e05a19-d536-40af-afb2-baaf79068127",
                  "folder": {
                    "uid": "b21f9c05-5354-472e-a82f-e4cd6b69acc6",
                    "name": "/Global Objects"
                  },
                  "domain": {
                    "domain-type": "global domain",
                    "uid": "1e294ce0-367a-11e3-aa6e-0800200c9a66",
                    "name": "Global"
                  },
                  "meta-info": {
                    "lock": "locked by current session",
                    "validation-state": "ok",
                    "read-only": false,
                    "last-modify-time": {
                      "posix": 1431609465363,
                      "iso-8601": "2015-05-14T16:17+0300"
                    },
                    "last-modifier": "aa",
                    "creation-time": {
                      "posix": 1431609465363,
                      "iso-8601": "2015-05-14T16:17+0300"
                    },
                    "creator": "aa"
                  },
                  "tags": [],
                  "comments": "",
                  "color": "black",
                  "icon": "General/globalsNa"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-global-assignment": {
      "post": {
        "tags": [
          "GlobalAssignment"
        ],
        "operationId": "addGlobalAssignment",
        "description": "The parameters and request body are for method: addGlobalAssignment. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-global-assignment": {
      "post": {
        "tags": [
          "GlobalAssignment"
        ],
        "operationId": "showGlobalAssignment",
        "description": "The parameters and request body are for method: showGlobalAssignment. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-global-assignment": {
      "post": {
        "tags": [
          "GlobalAssignment"
        ],
        "operationId": "setGlobalAssignment",
        "description": "The parameters and request body are for method: setGlobalAssignment. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-global-assignment": {
      "post": {
        "tags": [
          "GlobalAssignment"
        ],
        "operationId": "deleteGlobalAssignment",
        "description": "The parameters and request body are for method: deleteGlobalAssignment. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-global-assignments": {
      "post": {
        "tags": [
          "GlobalAssignment"
        ],
        "operationId": "showGlobalAssignments",
        "description": "The parameters and request body are for method: showGlobalAssignments. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/assign-global-assignment": {
      "post": {
        "tags": [
          "GlobalAssignment"
        ],
        "operationId": "assignGlobalAssignment",
        "description": "The parameters and request body are for method: assignGlobalAssignment. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/where-used": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "whereUsed",
        "description": "The parameters and request body are for method: whereUsed. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "used-directly": {
                      "type": "object",
                      "properties": {
                        "total": {
                          "type": "number"
                        },
                        "objects": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "folder": {
                                "type": "object",
                                "properties": {
                                  "uid": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": "string"
                                  }
                                }
                              },
                              "domain": {
                                "type": "object",
                                "properties": {
                                  "domain-type": {
                                    "type": "string"
                                  },
                                  "uid": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": "string"
                                  }
                                }
                              },
                              "type": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "uid": {
                                "type": "string"
                              }
                            }
                          }
                        },
                        "threat-prevention-rules": {
                          "type": "object"
                        },
                        "nat-rules": {
                          "type": "object"
                        },
                        "access-control-rules": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "rule": {
                                "type": "object",
                                "properties": {
                                  "folder": {
                                    "type": "object",
                                    "properties": {
                                      "uid": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": "string"
                                      }
                                    }
                                  },
                                  "domain": {
                                    "type": "object",
                                    "properties": {
                                      "domain-type": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": "string"
                                      }
                                    }
                                  },
                                  "type": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": "string"
                                  },
                                  "uid": {
                                    "type": "string"
                                  }
                                }
                              },
                              "position": {
                                "type": "string"
                              },
                              "owner": {
                                "type": "object",
                                "properties": {
                                  "folder": {
                                    "type": "object",
                                    "properties": {
                                      "uid": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": "string"
                                      }
                                    }
                                  },
                                  "domain": {
                                    "type": "object",
                                    "properties": {
                                      "domain-type": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": "string"
                                      }
                                    }
                                  },
                                  "type": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": "string"
                                  },
                                  "uid": {
                                    "type": "string"
                                  }
                                }
                              },
                              "policy": {
                                "type": "object",
                                "properties": {
                                  "folder": {
                                    "type": "object",
                                    "properties": {
                                      "uid": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": "string"
                                      }
                                    }
                                  },
                                  "domain": {
                                    "type": "object",
                                    "properties": {
                                      "domain-type": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": "string"
                                      }
                                    }
                                  },
                                  "type": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": "string"
                                  },
                                  "uid": {
                                    "type": "string"
                                  }
                                }
                              },
                              "layer": {
                                "type": "object",
                                "properties": {
                                  "folder": {
                                    "type": "object",
                                    "properties": {
                                      "uid": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": "string"
                                      }
                                    }
                                  },
                                  "domain": {
                                    "type": "object",
                                    "properties": {
                                      "domain-type": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": "string"
                                      }
                                    }
                                  },
                                  "type": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": "string"
                                  },
                                  "uid": {
                                    "type": "string"
                                  }
                                }
                              },
                              "layer-position": {
                                "type": "number"
                              },
                              "package": {
                                "type": "object",
                                "properties": {
                                  "folder": {
                                    "type": "object",
                                    "properties": {
                                      "uid": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": "string"
                                      }
                                    }
                                  },
                                  "domain": {
                                    "type": "object",
                                    "properties": {
                                      "domain-type": {
                                        "type": "string"
                                      },
                                      "uid": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": "string"
                                      }
                                    }
                                  },
                                  "type": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": "string"
                                  },
                                  "uid": {
                                    "type": "string"
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "used-directly": {
                    "total": 2,
                    "objects": [
                      {
                        "folder": {
                          "uid": "fafc7ed4-e021-496d-b6f9-8d0f7c81209f",
                          "name": "Global Objects"
                        },
                        "domain": {
                          "domain-type": "local domain",
                          "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                          "name": "SMC User"
                        },
                        "type": "group",
                        "name": "Network group 1",
                        "uid": "f5c7640d-92eb-4c91-b7ad-c9c972ec31d6"
                      }
                    ],
                    "threat-prevention-rules": [],
                    "nat-rules": [],
                    "access-control-rules": [
                      {
                        "rule": {
                          "folder": {
                            "uid": "fafc7ed4-e021-496d-b6f9-8d0f7c81209f",
                            "name": "Global Objects"
                          },
                          "domain": {
                            "domain-type": "local domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "access-rule",
                          "name": "Access Rule 2",
                          "uid": "6c4fc003-4a45-4a09-9438-b76745c55674"
                        },
                        "position": "2",
                        "owner": {
                          "folder": {
                            "uid": "fafc7ed4-e021-496d-b6f9-8d0f7c81209f",
                            "name": "Global Objects"
                          },
                          "domain": {
                            "domain-type": "local domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "layer",
                          "name": "Network",
                          "uid": "f799c262-0942-4cb7-a7da-c5daed16b27b"
                        },
                        "policy": {
                          "folder": {
                            "uid": "fafc7ed4-e021-496d-b6f9-8d0f7c81209f",
                            "name": "Global Objects"
                          },
                          "domain": {
                            "domain-type": "local domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "AccessPolicy",
                          "name": "Standard",
                          "uid": "21bef0f6-026d-4730-80b2-b8159a0bc11a"
                        },
                        "layer": {
                          "folder": {
                            "uid": "fafc7ed4-e021-496d-b6f9-8d0f7c81209f",
                            "name": "Global Objects"
                          },
                          "domain": {
                            "domain-type": "local domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "layer",
                          "name": "Network",
                          "uid": "f799c262-0942-4cb7-a7da-c5daed16b27b"
                        },
                        "layer-position": 0,
                        "package": {
                          "folder": {
                            "uid": "fafc7ed4-e021-496d-b6f9-8d0f7c81209f",
                            "name": "Global Objects"
                          },
                          "domain": {
                            "domain-type": "local domain",
                            "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                            "name": "SMC User"
                          },
                          "type": "package",
                          "name": "Standard",
                          "uid": "68451b5c-c330-4b5c-a9f4-4c9ff97b7b2d"
                        }
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-task": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "showTask",
        "description": "The parameters and request body are for method: showTask. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/run-script": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "runScript",
        "description": "The parameters and request body are for method: runScript. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-unused-objects": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "showUnusedObjects",
        "description": "The parameters and request body are for method: showUnusedObjects. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/export": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "export",
        "description": "The parameters and request body are for method: export. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-changes": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "showChangesBetweenTheDates",
        "description": "The parameters and request body are for method: showChangesBetweenTheDates. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "tasks": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "task-name": {
                            "type": "string"
                          },
                          "task-id": {
                            "type": "string"
                          },
                          "status": {
                            "type": "string"
                          },
                          "progress-percentage": {
                            "type": "number"
                          },
                          "progress-description": {
                            "type": "string"
                          },
                          "suppressed": {
                            "type": "boolean"
                          },
                          "task-details": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "changes": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "session": {
                                        "type": "object",
                                        "properties": {
                                          "session-uid": {
                                            "type": "string"
                                          },
                                          "user-name": {
                                            "type": "string"
                                          },
                                          "publish-time": {
                                            "type": "object",
                                            "properties": {
                                              "posix": {
                                                "type": "number"
                                              },
                                              "iso-8601": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "domain-info": {
                                            "type": "object",
                                            "properties": {
                                              "uid": {
                                                "type": "string"
                                              },
                                              "name": {
                                                "type": "string"
                                              },
                                              "domain-type": {
                                                "type": "string"
                                              }
                                            }
                                          }
                                        }
                                      },
                                      "operations": {
                                        "type": "object",
                                        "properties": {
                                          "added-objects": {
                                            "type": "array",
                                            "items": {
                                              "type": "object",
                                              "properties": {
                                                "uid": {
                                                  "type": "string"
                                                },
                                                "name": {
                                                  "type": "string"
                                                },
                                                "type": {
                                                  "type": "string"
                                                },
                                                "domain": {
                                                  "type": "object",
                                                  "properties": {
                                                    "uid": {
                                                      "type": "string"
                                                    },
                                                    "name": {
                                                      "type": "string"
                                                    },
                                                    "domain-type": {
                                                      "type": "string"
                                                    }
                                                  }
                                                }
                                              }
                                            }
                                          },
                                          "modified-objects": {
                                            "type": "array",
                                            "items": {
                                              "type": "object",
                                              "properties": {
                                                "old-object": {
                                                  "type": "object",
                                                  "properties": {
                                                    "uid": {
                                                      "type": "string"
                                                    },
                                                    "name": {
                                                      "type": "string"
                                                    },
                                                    "type": {
                                                      "type": "string"
                                                    },
                                                    "domain": {
                                                      "type": "object",
                                                      "properties": {
                                                        "uid": {
                                                          "type": "string"
                                                        },
                                                        "name": {
                                                          "type": "string"
                                                        },
                                                        "domain-type": {
                                                          "type": "string"
                                                        }
                                                      }
                                                    }
                                                  }
                                                },
                                                "new-object": {
                                                  "type": "object",
                                                  "properties": {
                                                    "uid": {
                                                      "type": "string"
                                                    },
                                                    "name": {
                                                      "type": "string"
                                                    },
                                                    "type": {
                                                      "type": "string"
                                                    },
                                                    "domain": {
                                                      "type": "object",
                                                      "properties": {
                                                        "uid": {
                                                          "type": "string"
                                                        },
                                                        "name": {
                                                          "type": "string"
                                                        },
                                                        "domain-type": {
                                                          "type": "string"
                                                        }
                                                      }
                                                    }
                                                  }
                                                }
                                              }
                                            }
                                          },
                                          "deleted-objects": {
                                            "type": "array",
                                            "items": {
                                              "type": "object",
                                              "properties": {
                                                "uid": {
                                                  "type": "string"
                                                },
                                                "name": {
                                                  "type": "string"
                                                },
                                                "type": {
                                                  "type": "string"
                                                },
                                                "domain": {
                                                  "type": "object",
                                                  "properties": {
                                                    "uid": {
                                                      "type": "string"
                                                    },
                                                    "name": {
                                                      "type": "string"
                                                    },
                                                    "domain-type": {
                                                      "type": "string"
                                                    }
                                                  }
                                                }
                                              }
                                            }
                                          }
                                        }
                                      }
                                    }
                                  }
                                },
                                "limit": {
                                  "type": "number"
                                },
                                "offset": {
                                  "type": "number"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "tasks": [
                    {
                      "task-name": "Show Changes",
                      "task-id": "abcdef01-2345-6789-bd5e-98e9d5b89d9b",
                      "status": "succeeded",
                      "progress-percentage": 100,
                      "progress-description": "Operation Complete",
                      "suppressed": false,
                      "task-details": [
                        {
                          "changes": [
                            {
                              "session": {
                                "session-uid": "40b969d3-6b3c-48a0-a4d7-7cfeeea1bc5a",
                                "user-name": "aa",
                                "publish-time": {
                                  "posix": 1485930056333,
                                  "iso-8601": "2017-02-01T08:20+0200"
                                },
                                "domain-info": {
                                  "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                                  "name": "SMC User",
                                  "domain-type": "domain"
                                }
                              },
                              "operations": {
                                "added-objects": [
                                  {
                                    "uid": "408c7054-eb6d-4557-8a15-cb1b6160b80b",
                                    "name": "MyRule3",
                                    "type": "access-rule",
                                    "domain": {
                                      "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                                      "name": "SMC User",
                                      "domain-type": "domain"
                                    }
                                  }
                                ],
                                "modified-objects": [
                                  {
                                    "old-object": {
                                      "uid": "fad17be7-6b4e-4033-b27f-b7769520e0a1",
                                      "name": "MyRule2",
                                      "type": "access-rule",
                                      "domain": {
                                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                                        "name": "SMC User",
                                        "domain-type": "domain"
                                      }
                                    },
                                    "new-object": {
                                      "uid": "fad17be7-6b4e-4033-b27f-b7769520e0a1",
                                      "name": "MyRule4",
                                      "type": "access-rule",
                                      "domain": {
                                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                                        "name": "SMC User",
                                        "domain-type": "domain"
                                      }
                                    }
                                  }
                                ],
                                "deleted-objects": [
                                  {
                                    "uid": "7bded5dc-ad1d-4300-8405-12f9afdbdba3",
                                    "name": "MyRule1",
                                    "type": "access-rule",
                                    "domain": {
                                      "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                                      "name": "SMC User",
                                      "domain-type": "domain"
                                    }
                                  }
                                ]
                              }
                            }
                          ],
                          "limit": 10,
                          "offset": 0
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-gateways-and-servers": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "showGatewaysAndServers",
        "description": "The parameters and request body are for method: showGatewaysAndServers. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "number"
                    },
                    "to": {
                      "type": "number"
                    },
                    "total": {
                      "type": "number"
                    },
                    "objects": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uid": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "domain": {
                            "type": "object",
                            "properties": {
                              "uid": {
                                "type": "string"
                              },
                              "name": {
                                "type": "string"
                              },
                              "domain-type": {
                                "type": "string"
                              }
                            }
                          },
                          "meta-info": {
                            "type": "object",
                            "properties": {
                              "lock": {
                                "type": "string"
                              },
                              "validation-state": {
                                "type": "string"
                              },
                              "last-modify-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "last-modifier": {
                                "type": "string"
                              },
                              "creation-time": {
                                "type": "object",
                                "properties": {
                                  "posix": {
                                    "type": "number"
                                  },
                                  "iso-8601": {
                                    "type": "string"
                                  }
                                }
                              },
                              "creator": {
                                "type": "string"
                              }
                            }
                          },
                          "tags": {
                            "type": "object"
                          },
                          "read-only": {
                            "type": "boolean"
                          },
                          "comments": {
                            "type": "string"
                          },
                          "color": {
                            "type": "string"
                          },
                          "icon": {
                            "type": "string"
                          },
                          "groups": {
                            "type": "object"
                          },
                          "ipv4-address": {
                            "type": "string"
                          },
                          "operating-system": {
                            "type": "string"
                          },
                          "hardware": {
                            "type": "string"
                          },
                          "version": {
                            "type": "string"
                          },
                          "sic-status": {
                            "type": "string"
                          },
                          "policy": {
                            "type": "object"
                          },
                          "network-security-blades": {
                            "type": "object",
                            "properties": {
                              "firewall": {
                                "type": "boolean"
                              }
                            }
                          },
                          "management-blades": {
                            "type": "object"
                          },
                          "vpn-encryption-domain": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "from": 1,
                  "to": 2,
                  "total": 2,
                  "objects": [
                    {
                      "uid": "302bcc2c-b3f1-405b-93dc-a5884288e499",
                      "name": "gw_192.0.2.14",
                      "type": "simple-gateway",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "last-modify-time": {
                          "posix": 1479302713354,
                          "iso-8601": "2016-11-16T15:25+0200"
                        },
                        "last-modifier": "aa",
                        "creation-time": {
                          "posix": 1479292558134,
                          "iso-8601": "2016-11-16T12:35+0200"
                        },
                        "creator": "aa"
                      },
                      "tags": [],
                      "read-only": true,
                      "comments": "",
                      "color": "black",
                      "icon": "NetworkObjects/CheckPoint/GWs/xGW_CP",
                      "groups": [],
                      "ipv4-address": "192.0.2.14",
                      "operating-system": "Gaia",
                      "hardware": "Open server",
                      "version": "R80",
                      "sic-status": "uninitialized",
                      "policy": {},
                      "network-security-blades": {
                        "firewall": true
                      },
                      "management-blades": {},
                      "vpn-encryption-domain": "addresses_behind_gw"
                    },
                    {
                      "uid": "844d7c07-66ff-f34b-8a53-71eae36dae9a",
                      "name": "mgmt_192.0.2.201",
                      "type": "CpmiHostCkp",
                      "domain": {
                        "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                        "name": "SMC User",
                        "domain-type": "domain"
                      },
                      "meta-info": {
                        "lock": "unlocked",
                        "validation-state": "ok",
                        "last-modify-time": {
                          "posix": 1479284861834,
                          "iso-8601": "2016-11-16T10:27+0200"
                        },
                        "last-modifier": "System",
                        "creation-time": {
                          "posix": 1479284857837,
                          "iso-8601": "2016-11-16T10:27+0200"
                        },
                        "creator": "System"
                      },
                      "tags": [],
                      "read-only": true,
                      "comments": "",
                      "color": "black",
                      "icon": "NetworkObjects/CheckPoint/Hosts/xHost_CP",
                      "groups": [],
                      "ipv4-address": "192.0.2.201",
                      "operating-system": "Gaia",
                      "hardware": "Open server",
                      "version": "R80",
                      "sic-status": "communicating",
                      "interfaces": [
                        {
                          "interface-name": "eth0",
                          "ipv4-address": "192.0.2.201",
                          "ipv4-network-mask": "255.255.255.0",
                          "ipv4-mask-length": 24,
                          "topology": {
                            "security-zone": {
                              "uid": "237a4cbc-7fb6-4d50-872a-4904468271c4",
                              "name": "ExternalZone",
                              "type": "security-zone",
                              "domain": {
                                "uid": "a0bbbc99-adef-4ef8-bb6d-defdefdefdef",
                                "name": "Check Point Data",
                                "domain-type": "data domain"
                              }
                            },
                            "leads-to-internet": true
                          },
                          "dynamic-ip": false
                        }
                      ],
                      "policy": {},
                      "network-security-blades": {},
                      "management-blades": {
                        "logging-and-status": true,
                        "network-policy-management": true
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-objects": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "showObjectsOfTypeGroup",
        "description": "The parameters and request body are for method: showObjectsOfTypeGroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-validations": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "showValidations",
        "description": "The parameters and request body are for method: showValidations. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "warnings-total": {
                      "type": "number"
                    },
                    "errors-total": {
                      "type": "number"
                    },
                    "blocking-errors-total": {
                      "type": "number"
                    },
                    "warnings": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "message": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "errors": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "message": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "blocking-errors": {
                      "type": "object"
                    }
                  }
                },
                "example": {
                  "warnings-total": 1,
                  "errors-total": 1,
                  "blocking-errors-total": 0,
                  "warnings": [
                    {
                      "message": "IPv4 address is invalid. IP address suggestion: 192.0.2.0"
                    }
                  ],
                  "errors": [
                    {
                      "message": "More than one object named 'New Host 1' exists."
                    }
                  ],
                  "blocking-errors": []
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-tasks": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "showTasks",
        "description": "The parameters and request body are for method: showTasks. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-api-versions": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "showApiVersions",
        "description": "The parameters and request body are for method: showApiVersions. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "current-version": {
                      "type": "string"
                    },
                    "supported-versions": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": {
                  "current-version": "1.1",
                  "supported-versions": [
                    "1",
                    "1.1"
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-object": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "showObject",
        "description": "The parameters and request body are for method: showObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "object": {
                      "type": "object",
                      "properties": {
                        "folder": {
                          "type": "object",
                          "properties": {
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "domain": {
                          "type": "object",
                          "properties": {
                            "domain-type": {
                              "type": "string"
                            },
                            "uid": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "type": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "uid": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": {
                  "object": {
                    "folder": {
                      "uid": "a25a7783-9adb-4a65-9850-b97ee7860530",
                      "name": "/Global Objects"
                    },
                    "domain": {
                      "domain-type": "local domain",
                      "uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
                      "name": "SMC User"
                    },
                    "type": "ThreatRulebase",
                    "name": "ThreatStandard",
                    "uid": "ef82887c-d08f-49a3-a18f-a376be633848"
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-commands": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "showCommands",
        "description": "The parameters and request body are for method: showCommands. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/put-file": {
      "post": {
        "tags": [
          "Misc"
        ],
        "operationId": "putFile",
        "description": "The parameters and request body are for method: putFile. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-administrator": {
      "post": {
        "tags": [
          "Administrator"
        ],
        "operationId": "addAdministrator",
        "description": "The parameters and request body are for method: addAdministrator. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-administrator": {
      "post": {
        "tags": [
          "Administrator"
        ],
        "operationId": "showAdministrator",
        "description": "The parameters and request body are for method: showAdministrator. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-administrator": {
      "post": {
        "tags": [
          "Administrator"
        ],
        "operationId": "setAdministrator",
        "description": "The parameters and request body are for method: setAdministrator. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-administrator": {
      "post": {
        "tags": [
          "Administrator"
        ],
        "operationId": "deleteAdministrator",
        "description": "The parameters and request body are for method: deleteAdministrator. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-administrators": {
      "post": {
        "tags": [
          "Administrator"
        ],
        "operationId": "showAdministrators",
        "description": "The parameters and request body are for method: showAdministrators. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/unlock-administrator": {
      "post": {
        "tags": [
          "Administrator"
        ],
        "operationId": "unlockAdministrator",
        "description": "The parameters and request body are for method: unlockAdministrator. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-api-settings": {
      "post": {
        "tags": [
          "APISettings"
        ],
        "operationId": "showApiSettings",
        "description": "The parameters and request body are for method: showApiSettings. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/set-api-settings": {
      "post": {
        "tags": [
          "APISettings"
        ],
        "operationId": "setApiSettings",
        "description": "The parameters and request body are for method: setApiSettings. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/verify-software-package": {
      "post": {
        "tags": [
          "PackageDeployment"
        ],
        "operationId": "verifySoftwarePackage",
        "description": "The parameters and request body are for method: verifySoftwarePackage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/install-software-package": {
      "post": {
        "tags": [
          "PackageDeployment"
        ],
        "operationId": "installSoftwarePackage",
        "description": "The parameters and request body are for method: installSoftwarePackage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/uninstall-software-package": {
      "post": {
        "tags": [
          "PackageDeployment"
        ],
        "operationId": "uninstallSoftwarePackage",
        "description": "The parameters and request body are for method: uninstallSoftwarePackage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/add-repository-package": {
      "post": {
        "tags": [
          "PackageDeployment"
        ],
        "operationId": "addRepositoryPackage",
        "description": "The parameters and request body are for method: addRepositoryPackage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-repository-package": {
      "post": {
        "tags": [
          "PackageDeployment"
        ],
        "operationId": "showRepositoryPackage",
        "description": "The parameters and request body are for method: showRepositoryPackage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-software-package-details": {
      "post": {
        "tags": [
          "PackageDeployment"
        ],
        "operationId": "showSoftwarePackageDetails",
        "description": "The parameters and request body are for method: showSoftwarePackageDetails. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-software-packages-per-targets": {
      "post": {
        "tags": [
          "PackageDeployment"
        ],
        "operationId": "showSoftwarePackagesPerTargets",
        "description": "The parameters and request body are for method: showSoftwarePackagesPerTargets. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/delete-repository-package": {
      "post": {
        "tags": [
          "PackageDeployment"
        ],
        "operationId": "deleteRepositoryPackage",
        "description": "The parameters and request body are for method: deleteRepositoryPackage. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/show-repository-packages": {
      "post": {
        "tags": [
          "PackageDeployment"
        ],
        "operationId": "showRepositoryPackages",
        "description": "The parameters and request body are for method: showRepositoryPackages. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {}
  }
}