openapi: 3.0.0
info:
  title: Checkpoint Management API
  description: ''
  contact: {}
  version: '1.0'
servers:
- url: https://{host}/web_api/v1.5
  variables:
    host:
      default: hostDefaultValue
paths:
  /login:
    post:
      tags:
      - Session Management
      summary: Login
      description: Login request to receive session token.
      operationId: Login
      parameters: []
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/loginrequest'
              - example:
                  user: aa
                  password: aaaa
            example:
              user: aa
              password: aaaa
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/login'
                - 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
              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
      deprecated: false
  /publish:
    post:
      tags:
      - Session Management
      summary: Publish
      description: Publish the last changes. Use the show-task command to check the progress of the task.
      operationId: Publish
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/publish'
                - example:
                    task-id: 01234567-89ab-cdef-a930-8c37a59972b3
              example:
                task-id: 01234567-89ab-cdef-a930-8c37a59972b3
      deprecated: false
  /discard:
    post:
      tags:
      - Session Management
      summary: Discard
      description: Discard the changes
      operationId: Discard
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/discard'
                - example:
                    message: OK
                    number-of-discarded-changes: 0
              example:
                message: OK
                number-of-discarded-changes: 0
      deprecated: false
  /logout:
    post:
      tags:
      - Session Management
      summary: Logout
      description: Log out from the existing session
      operationId: Logout
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/logout'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /disconnect:
    post:
      tags:
      - Session Management
      summary: Disconnect
      description: Disconnect a private session
      operationId: Disconnect
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/disconnectrequest'
              - example:
                  uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            example:
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/disconnect'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /keepalive:
    post:
      tags:
      - Session Management
      summary: Keepalive
      description: Keep the session alive
      operationId: Keepalive
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/keepalive'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-session:
    post:
      tags:
      - Session
      summary: ShowSession
      description: show-session
      operationId: ShowSession
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-session:
    post:
      tags:
      - Session
      summary: SetSession
      description: set-session
      operationId: SetSession
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-session-request'
              - example:
                  description: Session to work on ticket number CR00323665
            example:
              description: Session to work on ticket number CR00323665
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /continue-session-in-smartconsole:
    post:
      tags:
      - Session
      summary: ContinueSessionInSmartconsole
      description: Continue an existing API session who's UID is "bae159e7-d3ef-44ab-a8a8-ea3ce7ee25a5" in SmartConsole.
      operationId: ContinueSessionInSmartconsole
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/continue-session-in-smartconsole-request'
              - example:
                  uid: bae159e7-d3ef-44ab-a8a8-ea3ce7ee25a5
            example:
              uid: bae159e7-d3ef-44ab-a8a8-ea3ce7ee25a5
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/continue-session-in-smartconsole'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-last-published-session:
    post:
      tags:
      - Session
      summary: ShowLastPublishedSession
      description: Show last published session
      operationId: ShowLastPublishedSession
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /purge-published-sessions:
    post:
      tags:
      - Session
      summary: PurgePublishedSessions by count
      description: Purge all sessions except the specified number of newest sessions to preserve.
      operationId: PurgePublishedSessionsbycount
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/purge-published-sessionsbycountrequest'
              - example:
                  number-of-sessions-to-preserve: '10'
            example:
              number-of-sessions-to-preserve: '10'
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /switch-session:
    post:
      tags:
      - Session
      summary: SwitchSession
      description: switch-session
      operationId: SwitchSession
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/switch-session-request'
              - example:
                  uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            example:
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /assign-session:
    post:
      tags:
      - Session
      summary: AssignSession
      description: Assign an existing session with UID "41e821a0-3720-11e3-aa6e-0800200c9fde" to current administrator.
      operationId: AssignSession
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/assign-session-request'
              - example:
                  uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            example:
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /take-over-session:
    post:
      tags:
      - Session
      summary: TakeOverSession
      description: Take over an existing session with UID "41e821a0-3720-11e3-aa6e-0800200c9fde".
      operationId: TakeOverSession
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/take-over-session-request'
              - example:
                  uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                  disconnect-active-session: true
            example:
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              disconnect-active-session: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-sessions:
    post:
      tags:
      - Session
      summary: ShowSessions
      description: 'Show all the sessions. Details level: UID'
      operationId: ShowSessions
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-sessions-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-sessions'
                - 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
              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
      deprecated: false
  /show-login-message:
    post:
      tags:
      - Login Message
      summary: ShowLoginMessage
      description: show-login-message
      operationId: ShowLoginMessage
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-login-message:
    post:
      tags:
      - Login Message
      summary: SetLoginMessage
      description: set-login-message
      operationId: SetLoginMessage
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-login-message-request'
              - example:
                  show-message: 'true'
                  header: Warning
                  message: Unauthorized access of this server is prohibited and punished by law
                  warning: 'true'
            example:
              show-message: 'true'
              header: Warning
              message: Unauthorized access of this server is prohibited and punished by law
              warning: 'true'
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-host:
    post:
      tags:
      - Host
      summary: AddHost
      description: Adds simple host
      operationId: AddHost
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-host-request'
              - example:
                  name: New Host 1
                  ip-address: 192.0.2.1
            example:
              name: New Host 1
              ip-address: 192.0.2.1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-host'
                - 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: ''
              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: ''
      deprecated: false
  /show-host:
    post:
      tags:
      - Host
      summary: ShowHost
      description: show-host
      operationId: ShowHost
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-host-request'
              - example:
                  name: New Host 1
            example:
              name: New Host 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-host:
    post:
      tags:
      - Host
      summary: SetHost
      description: set-host
      operationId: SetHost
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-host-request'
              - example:
                  name: New Host 1
                  ipv4-address: 192.0.2.2
                  color: green
            example:
              name: New Host 1
              ipv4-address: 192.0.2.2
              color: green
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-host:
    post:
      tags:
      - Host
      summary: DeleteHost
      description: delete-host
      operationId: DeleteHost
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-host-request'
              - example:
                  name: New Host 1
            example:
              name: New Host 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-hosts:
    post:
      tags:
      - Host
      summary: ShowHosts
      description: show-hosts
      operationId: ShowHosts
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-hosts-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-network:
    post:
      tags:
      - Network
      summary: AddNetwork
      description: add-network
      operationId: AddNetwork
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-network-request'
              - example:
                  name: New Network 1
                  subnet: 192.0.2.0
                  subnet-mask: 255.255.255.0
            example:
              name: New Network 1
              subnet: 192.0.2.0
              subnet-mask: 255.255.255.0
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-network:
    post:
      tags:
      - Network
      summary: ShowNetwork
      description: show-network
      operationId: ShowNetwork
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-network-request'
              - example:
                  name: New Network 1
            example:
              name: New Network 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-network:
    post:
      tags:
      - Network
      summary: SetNetwork
      description: set-network
      operationId: SetNetwork
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-network-request'
              - example:
                  name: New Network 1
                  new-name: New Network 2
                  color: green
                  subnet: 192.0.0.0
                  mask-length: 16
                  groups: New Group 1
            example:
              name: New Network 1
              new-name: New Network 2
              color: green
              subnet: 192.0.0.0
              mask-length: 16
              groups: New Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-network:
    post:
      tags:
      - Network
      summary: DeleteNetwork
      description: delete-network
      operationId: DeleteNetwork
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-network-request'
              - example:
                  name: New Network 2
            example:
              name: New Network 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-networks:
    post:
      tags:
      - Network
      summary: ShowNetworks
      description: show-networks
      operationId: ShowNetworks
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-networks-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-wildcard:
    post:
      tags:
      - Wildcard
      summary: AddWildcard
      description: Adds a new Wildcard
      operationId: AddWildcard
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-wildcard-request'
              - example:
                  name: New Wildcard 1
                  ipv4-address: 192.168.2.1
                  ipv4-mask-wildcard: 0.0.0.128
            example:
              name: New Wildcard 1
              ipv4-address: 192.168.2.1
              ipv4-mask-wildcard: 0.0.0.128
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-wildcard:
    post:
      tags:
      - Wildcard
      summary: ShowWildcard
      description: Displays a Wildcard
      operationId: ShowWildcard
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-wildcard-request'
              - example:
                  name: New Wildcard 1
            example:
              name: New Wildcard 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-wildcard:
    post:
      tags:
      - Wildcard
      summary: SetWildcard
      description: Edits an existing Wildcard
      operationId: SetWildcard
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-wildcard-request'
              - example:
                  name: New Wildcard 1
                  new-name: New Wildcard 3
                  color: green
                  ipv6-address: 2001:db8::1111
                  ipv6-mask-wildcard: ffff:ffff::f0f0
                  groups: New Group 1
            example:
              name: New Wildcard 1
              new-name: New Wildcard 3
              color: green
              ipv6-address: 2001:db8::1111
              ipv6-mask-wildcard: ffff:ffff::f0f0
              groups: New Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-wildcard:
    post:
      tags:
      - Wildcard
      summary: DeleteWildcard
      description: Deletes an existing Wildcard
      operationId: DeleteWildcard
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-wildcard-request'
              - example:
                  name: New Wildcard 1
            example:
              name: New Wildcard 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-wildcards:
    post:
      tags:
      - Wildcard
      summary: ShowWildcards
      description: Displays all Wildcards
      operationId: ShowWildcards
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-wildcards-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-group:
    post:
      tags:
      - Group
      summary: AddGroup with group
      description: add-group with group
      operationId: AddGroupwithgroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-groupwithgrouprequest'
              - example:
                  name: New Group 5
                  members:
                  - New Host 1
                  - My Test Host 3
                  groups:
                  - New Group 1
                  - New Group 2
            example:
              name: New Group 5
              members:
              - New Host 1
              - My Test Host 3
              groups:
              - New Group 1
              - New Group 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-groupwithgroup'
                - 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
              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
      deprecated: false
  /show-group:
    post:
      tags:
      - Group
      summary: ShowGroup
      description: show-group
      operationId: ShowGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-group-request'
              - example:
                  name: Demo_Group
            example:
              name: Demo_Group
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-group:
    post:
      tags:
      - Group
      summary: SetGroup
      description: set-group
      operationId: SetGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-group-request'
              - example:
                  name: New Group 1
                  members:
                    add: New Host 2
                  groups: New Group 2
            example:
              name: New Group 1
              members:
                add: New Host 2
              groups: New Group 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-group:
    post:
      tags:
      - Group
      summary: DeleteGroup
      description: delete-group
      operationId: DeleteGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-group-request'
              - example:
                  name: New Group 1
            example:
              name: New Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-groups:
    post:
      tags:
      - Group
      summary: ShowGroups
      description: show-groups
      operationId: ShowGroups
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-groups-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-address-range:
    post:
      tags:
      - Address Range
      summary: AddAddressRange
      description: add-address-range
      operationId: AddAddressRange
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-address-range-request'
              - example:
                  name: New Address Range 1
                  ip-address-first: 192.0.2.1
                  ip-address-last: 192.0.2.10
            example:
              name: New Address Range 1
              ip-address-first: 192.0.2.1
              ip-address-last: 192.0.2.10
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-address-range:
    post:
      tags:
      - Address Range
      summary: ShowAddressRange
      description: show-address-range
      operationId: ShowAddressRange
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-address-range-request'
              - example:
                  name: New Address Range 1
            example:
              name: New Address Range 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-address-range:
    post:
      tags:
      - Address Range
      summary: SetAddressRange
      description: set-address-range
      operationId: SetAddressRange
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-address-range-request'
              - example:
                  name: New Address Range 1
                  new-name: New Address Range 2
                  color: green
                  ip-address-first: 192.0.2.1
                  ip-address-last: 192.0.2.1
                  groups: New Group 1
            example:
              name: New Address Range 1
              new-name: New Address Range 2
              color: green
              ip-address-first: 192.0.2.1
              ip-address-last: 192.0.2.1
              groups: New Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-address-range:
    post:
      tags:
      - Address Range
      summary: DeleteAddressRange
      description: delete-address-range
      operationId: DeleteAddressRange
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-address-range-request'
              - example:
                  name: New Address Range 2
            example:
              name: New Address Range 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-address-ranges:
    post:
      tags:
      - Address Range
      summary: ShowAddressRanges
      description: show-address-ranges
      operationId: ShowAddressRanges
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-address-ranges-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-multicast-address-range:
    post:
      tags:
      - Multicast Address Range
      summary: AddMulticastAddressRangeIpRange
      description: Adds a new Multicast Address Range using a range of IP Addresses
      operationId: AddMulticastAddressRangeIpRange
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-multicast-address-range-ip-range-request'
              - example:
                  name: New Multicast Address Range
                  ip-address-first: 224.0.0.1
                  ip-address-last: 224.0.0.4
            example:
              name: New Multicast Address Range
              ip-address-first: 224.0.0.1
              ip-address-last: 224.0.0.4
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-multicast-address-range-ip-range'
                - 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
              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
      deprecated: false
  /show-multicast-address-range:
    post:
      tags:
      - Multicast Address Range
      summary: ShowMulticastAddressRange
      description: Displays a Multicast Address Range
      operationId: ShowMulticastAddressRange
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-multicast-address-range-request'
              - example:
                  name: New Multicast Address Range
            example:
              name: New Multicast Address Range
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-multicast-address-range'
                - 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
              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
      deprecated: false
  /set-multicast-address-range:
    post:
      tags:
      - Multicast Address Range
      summary: SetMulticastAddressRange
      description: Edits an existing Multicast Address Range
      operationId: SetMulticastAddressRange
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-multicast-address-range-request'
              - example:
                  name: New Multicast Address Range
                  ip-address-first: 224.0.0.7
                  ip-address-last: 224.0.0.10
            example:
              name: New Multicast Address Range
              ip-address-first: 224.0.0.7
              ip-address-last: 224.0.0.10
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-multicast-address-range'
                - 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
              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
      deprecated: false
  /delete-multicast-address-range:
    post:
      tags:
      - Multicast Address Range
      summary: DeleteMulticastAddressRange
      description: Deletes a Multicast Address Range
      operationId: DeleteMulticastAddressRange
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-multicast-address-range-request'
              - example:
                  name: New Multicast Address Range
            example:
              name: New Multicast Address Range
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-multicast-address-range'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-multicast-address-ranges:
    post:
      tags:
      - Multicast Address Range
      summary: ShowMulticastAddressRanges
      description: Displays all Multicast Address Ranges
      operationId: ShowMulticastAddressRanges
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-multicast-address-ranges-request'
              - example:
                  details-level: full
            example:
              details-level: full
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-multicast-address-ranges'
                - 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
              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
      deprecated: false
  /add-group-with-exclusion:
    post:
      tags:
      - Group with exclusion
      summary: AddGroupWithExclusion
      description: add-group-with-exclusion
      operationId: AddGroupWithExclusion
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-group-with-exclusion-request'
              - example:
                  name: Group with exclusion
                  include: New Group 1
                  except: New Group 2
            example:
              name: Group with exclusion
              include: New Group 1
              except: New Group 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-group-with-exclusion:
    post:
      tags:
      - Group with exclusion
      summary: ShowGroupWithExclusion
      description: show-group-with-exclusion
      operationId: ShowGroupWithExclusion
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-group-with-exclusion-request'
              - example:
                  name: Group with exclusion
            example:
              name: Group with exclusion
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-group-with-exclusion:
    post:
      tags:
      - Group with exclusion
      summary: SetGroupWithExclusion
      description: set-group-with-exclusion
      operationId: SetGroupWithExclusion
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-group-with-exclusion-request'
              - example:
                  name: Group with exclusion
                  include: New Group 2
                  except: New Group 1
            example:
              name: Group with exclusion
              include: New Group 2
              except: New Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-group-with-exclusion:
    post:
      tags:
      - Group with exclusion
      summary: DeleteGroupWithExclusion
      description: delete-group-with-exclusion
      operationId: DeleteGroupWithExclusion
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-group-with-exclusion-request'
              - example:
                  name: Group with exclusion
            example:
              name: Group with exclusion
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-groups-with-exclusion:
    post:
      tags:
      - Group with exclusion
      summary: ShowGroupsWithExclusion
      description: show-groups-with-exclusion
      operationId: ShowGroupsWithExclusion
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-groups-with-exclusion-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-simple-gateway:
    post:
      tags:
      - Simple Gateway
      summary: AddSimpleGateway
      description: add-simple-gateway
      operationId: AddSimpleGateway
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-simple-gateway-request'
              - example:
                  name: gw1
                  ip-address: 192.0.2.1
            example:
              name: gw1
              ip-address: 192.0.2.1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-simple-gateway'
                - 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
              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
      deprecated: false
  /show-simple-gateway:
    post:
      tags:
      - Simple Gateway
      summary: ShowSimpleGateway
      description: show-simple-gateway
      operationId: ShowSimpleGateway
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-simple-gateway-request'
              - example:
                  name: gw1
            example:
              name: gw1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-simple-gateway:
    post:
      tags:
      - Simple Gateway
      summary: SetSimpleGateway
      description: set-simple-gateway
      operationId: SetSimpleGateway
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-simple-gateway-request'
              - example:
                  name: test_gateway
                  vpn: true
                  application-control: true
                  url-filtering: true
                  ips: true
                  anti-bot: true
                  anti-virus: true
                  threat-emulation: true
            example:
              name: test_gateway
              vpn: true
              application-control: true
              url-filtering: true
              ips: true
              anti-bot: true
              anti-virus: true
              threat-emulation: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-simple-gateway:
    post:
      tags:
      - Simple Gateway
      summary: DeleteSimpleGateway
      description: Delete simple gateway
      operationId: DeleteSimpleGateway
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-simple-gateway-request'
              - example:
                  name: gw1
            example:
              name: gw1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-simple-gateways:
    post:
      tags:
      - Simple Gateway
      summary: ShowSimpleGateways
      description: show-simple-gateways
      operationId: ShowSimpleGateways
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-simple-gateways-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-security-zone:
    post:
      tags:
      - Security Zone
      summary: AddSecurityZone
      description: add-security-zone
      operationId: AddSecurityZone
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-security-zone-request'
              - example:
                  name: SZone1
                  comments: My Security Zone 1
                  color: yellow
            example:
              name: SZone1
              comments: My Security Zone 1
              color: yellow
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-security-zone:
    post:
      tags:
      - Security Zone
      summary: ShowSecurityZone
      description: show-security-zone
      operationId: ShowSecurityZone
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-security-zone-request'
              - example:
                  name: SZone1
            example:
              name: SZone1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-security-zone:
    post:
      tags:
      - Security Zone
      summary: SetSecurityZone
      description: set-security-zone
      operationId: SetSecurityZone
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-security-zone-request'
              - example:
                  name: SZone1
                  new-name: SZone2
            example:
              name: SZone1
              new-name: SZone2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-security-zone:
    post:
      tags:
      - Security Zone
      summary: DeleteSecurityZone
      description: delete-security-zone
      operationId: DeleteSecurityZone
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-security-zone-request'
              - example:
                  name: SZone2
            example:
              name: SZone2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-security-zones:
    post:
      tags:
      - Security Zone
      summary: ShowSecurityZones
      description: Show all the security zones
      operationId: ShowSecurityZones
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-security-zones'
                - 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
              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
      deprecated: false
  /add-time:
    post:
      tags:
      - Time
      summary: AddTime
      description: add-time
      operationId: AddTime
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-time-request'
              - example:
                  name: timeObject1
                  start-now: 'true'
                  end:
                    date: 24-Nov-2014
                    time: 21:22
                  end-never: 'false'
                  hours-ranges:
                  - from: 00:00
                    to: 00:00
                    enabled: true
                    index: 1
                  - from: 00:00
                    to: 00:00
                    enabled: false
                    index: 2
                  recurrence:
                    pattern: Daily
                    month: Any
                    weekdays:
                    - Sun
                    - Mon
                    days:
                    - '1'
            example:
              name: timeObject1
              start-now: 'true'
              end:
                date: 24-Nov-2014
                time: 21:22
              end-never: 'false'
              hours-ranges:
              - from: 00:00
                to: 00:00
                enabled: true
                index: 1
              - from: 00:00
                to: 00:00
                enabled: false
                index: 2
              recurrence:
                pattern: Daily
                month: Any
                weekdays:
                - Sun
                - Mon
                days:
                - '1'
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-time:
    post:
      tags:
      - Time
      summary: ShowTime
      description: show-time
      operationId: ShowTime
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-time-request'
              - example:
                  name: timeObject1
            example:
              name: timeObject1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-time:
    post:
      tags:
      - Time
      summary: SetTime
      description: set-time
      operationId: SetTime
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-time-request'
              - example:
                  name: timeObject1
                  hours-ranges:
                  - from: 00:22
                    to: 00:33
                  recurrence:
                    pattern: Weekly
                    weekdays:
                    - Fri
                    month: Any
            example:
              name: timeObject1
              hours-ranges:
              - from: 00:22
                to: 00:33
              recurrence:
                pattern: Weekly
                weekdays:
                - Fri
                month: Any
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-time:
    post:
      tags:
      - Time
      summary: DeleteTime
      description: delete-time
      operationId: DeleteTime
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-time-request'
              - example:
                  name: timeObject1
            example:
              name: timeObject1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-times:
    post:
      tags:
      - Time
      summary: ShowTimes
      description: show-times
      operationId: ShowTimes
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-times-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-time-group:
    post:
      tags:
      - Time Group
      summary: AddTimeGroup
      description: add-time-group
      operationId: AddTimeGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-time-group-request'
              - example:
                  name: timeGroup-1
            example:
              name: timeGroup-1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-time-group:
    post:
      tags:
      - Time Group
      summary: ShowTimeGroup
      description: show-time-group
      operationId: ShowTimeGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-time-group-request'
              - example:
                  name: timeGroup-1
            example:
              name: timeGroup-1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-time-group:
    post:
      tags:
      - Time Group
      summary: SetTimeGroup
      description: set-time-group
      operationId: SetTimeGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-time-group-request'
              - example:
                  name: timeGroup-1
                  members:
                    add: timeGroup-2
            example:
              name: timeGroup-1
              members:
                add: timeGroup-2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-time-group:
    post:
      tags:
      - Time Group
      summary: DeleteTimeGroup
      description: delete-time-group
      operationId: DeleteTimeGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-time-group-request'
              - example:
                  name: timeGroup-1
            example:
              name: timeGroup-1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-time-groups:
    post:
      tags:
      - Time Group
      summary: ShowTimeGroups
      description: show-time-groups
      operationId: ShowTimeGroups
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-time-groups-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-access-role:
    post:
      tags:
      - Access Role
      summary: AddAccessRole
      description: add-access-role
      operationId: AddAccessRole
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-access-role-request'
              - example:
                  name: New Access Role 1
                  networks: any
                  users: any
                  machines: all identified
                  remote-access-clients: any
            example:
              name: New Access Role 1
              networks: any
              users: any
              machines: all identified
              remote-access-clients: any
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-access-role:
    post:
      tags:
      - Access Role
      summary: ShowAccessRole
      description: show-access-role
      operationId: ShowAccessRole
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-access-role-request'
              - example:
                  name: New Access Role 1
            example:
              name: New Access Role 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-access-role:
    post:
      tags:
      - Access Role
      summary: SetAccessRole
      description: set-access-role
      operationId: SetAccessRole
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-access-role-request'
              - example:
                  name: New Access Role 1
                  users: all identified
                  machines: any
            example:
              name: New Access Role 1
              users: all identified
              machines: any
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-access-role:
    post:
      tags:
      - Access Role
      summary: DeleteAccessRole
      description: delete-access-role
      operationId: DeleteAccessRole
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-access-role-request'
              - example:
                  name: New Access Role 1
            example:
              name: New Access Role 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-access-roles:
    post:
      tags:
      - Access Role
      summary: ShowAccessRoles
      description: Show all the access roles
      operationId: ShowAccessRoles
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-access-roles-request'
              - example:
                  details-level: full
            example:
              details-level: full
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-dynamic-object:
    post:
      tags:
      - Dynamic Object
      summary: AddDynamicObject
      description: Adds new dynamic object
      operationId: AddDynamicObject
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-dynamic-object-request'
              - example:
                  name: Dynamic_Object_1
                  comments: My Dynamic Object 1
                  color: yellow
            example:
              name: Dynamic_Object_1
              comments: My Dynamic Object 1
              color: yellow
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-dynamic-object'
                - 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
              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
      deprecated: false
  /show-dynamic-object:
    post:
      tags:
      - Dynamic Object
      summary: ShowDynamicObject
      description: Retieves existing dynamic object
      operationId: ShowDynamicObject
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-dynamic-object-request'
              - example:
                  name: Dynamic_Object_1
            example:
              name: Dynamic_Object_1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-dynamic-object'
                - 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
              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
      deprecated: false
  /set-dynamic-object:
    post:
      tags:
      - Dynamic Object
      summary: SetDynamicObject
      description: Edit existing dynamic object
      operationId: SetDynamicObject
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-dynamic-object-request'
              - example:
                  name: Dynamic_Object_1
                  new-name: Dynamic_Object_2
            example:
              name: Dynamic_Object_1
              new-name: Dynamic_Object_2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-dynamic-object'
                - 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
              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
      deprecated: false
  /delete-dynamic-object:
    post:
      tags:
      - Dynamic Object
      summary: DeleteDynamicObject
      description: Delete existing dynamic object
      operationId: DeleteDynamicObject
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-dynamic-object-request'
              - example:
                  name: Dynamic_Object_2
            example:
              name: Dynamic_Object_2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-dynamic-object'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-dynamic-objects:
    post:
      tags:
      - Dynamic Object
      summary: ShowDynamicObjects
      description: Show all the dynamic objects
      operationId: ShowDynamicObjects
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-dynamic-objects'
                - 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
              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
      deprecated: false
  /add-trusted-client:
    post:
      tags:
      - Trusted Client
      summary: AddTrustedClient
      description: add-trusted-client
      operationId: AddTrustedClient
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-trusted-client-request'
              - example:
                  name: my client
                  type: ANY
            example:
              name: my client
              type: ANY
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-trusted-client:
    post:
      tags:
      - Trusted Client
      summary: ShowTrustedClient
      description: show-trusted-client
      operationId: ShowTrustedClient
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-trusted-client-request'
              - example:
                  name: anyHost
            example:
              name: anyHost
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-trusted-client:
    post:
      tags:
      - Trusted Client
      summary: SetTrustedClient
      description: set-trusted-client
      operationId: SetTrustedClient
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-trusted-client-request'
              - example:
                  name: my client
                  type: NETMASK
                  ip-address: 192.0.2.1
                  mask-length: '24'
            example:
              name: my client
              type: NETMASK
              ip-address: 192.0.2.1
              mask-length: '24'
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-trusted-client:
    post:
      tags:
      - Trusted Client
      summary: DeleteTrustedClient
      description: delete-trusted-client
      operationId: DeleteTrustedClient
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-trusted-client-request'
              - example:
                  name: my client
            example:
              name: my client
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-trusted-clients:
    post:
      tags:
      - Trusted Client
      summary: ShowTrustedClients
      description: show-trusted-clients
      operationId: ShowTrustedClients
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-trusted-clients-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-tag:
    post:
      tags:
      - Tags
      summary: AddTag
      description: Add tag
      operationId: AddTag
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-tag-request'
              - example:
                  name: My New Tag1
                  tags:
                  - tag1
                  - tag2
            example:
              name: My New Tag1
              tags:
              - tag1
              - tag2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-tag'
                - 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
              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
      deprecated: false
  /show-tag:
    post:
      tags:
      - Tags
      summary: ShowTag
      description: Show tag
      operationId: ShowTag
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-tag-request'
              - example:
                  name: f96b37ec-e22e-4945-8bbf-d37b117914e0
            example:
              name: f96b37ec-e22e-4945-8bbf-d37b117914e0
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-tag'
                - 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
              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
      deprecated: false
  /set-tag:
    post:
      tags:
      - Tags
      summary: SetTag
      description: Set tag
      operationId: SetTag
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-tag-request'
              - example:
                  name: My New Tag1
                  new-name: My New Tag21
                  tags:
                    add: tag3
            example:
              name: My New Tag1
              new-name: My New Tag21
              tags:
                add: tag3
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-tag'
                - 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
              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
      deprecated: false
  /delete-tag:
    post:
      tags:
      - Tags
      summary: DeleteTag
      description: Delete tag
      operationId: DeleteTag
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-tag-request'
              - example:
                  name: dda885bb-0d5b-4529-96eb-55b757847092
            example:
              name: dda885bb-0d5b-4529-96eb-55b757847092
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-tags:
    post:
      tags:
      - Tags
      summary: ShowTags
      description: Show all the tags
      operationId: ShowTags
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-tags'
                - 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
              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
      deprecated: false
  /add-dns-domain:
    post:
      tags:
      - DNS Domain
      summary: AddDnsDomain
      description: add-dns-domain
      operationId: AddDnsDomain
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-dns-domain-request'
              - example:
                  name: .www.example.com
                  is-sub-domain: false
            example:
              name: .www.example.com
              is-sub-domain: false
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-dns-domain'
                - 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
              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
      deprecated: false
  /show-dns-domain:
    post:
      tags:
      - DNS Domain
      summary: ShowDnsDomain
      description: show-dns-domain
      operationId: ShowDnsDomain
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-dns-domain-request'
              - example:
                  name: .www.example.com
            example:
              name: .www.example.com
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-dns-domain'
                - 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
              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
      deprecated: false
  /set-dns-domain:
    post:
      tags:
      - DNS Domain
      summary: SetDnsDomain
      description: set-dns-domain
      operationId: SetDnsDomain
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-dns-domain-request'
              - example:
                  name: .www.example.com
                  new-name: .example.com
                  is-sub-domain: true
            example:
              name: .www.example.com
              new-name: .example.com
              is-sub-domain: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-dns-domain'
                - 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
              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
      deprecated: false
  /delete-dns-domain:
    post:
      tags:
      - DNS Domain
      summary: DeleteDnsDomain
      description: delete-dns-domain
      operationId: DeleteDnsDomain
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-dns-domain-request'
              - example:
                  name: .example.com
            example:
              name: .example.com
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-dns-domain'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-dns-domains:
    post:
      tags:
      - DNS Domain
      summary: ShowDnsDomains
      description: show-dns-domains
      operationId: ShowDnsDomains
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-dns-domains-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-dns-domains'
                - 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
              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
      deprecated: false
  /add-opsec-application:
    post:
      tags:
      - OPSEC Application
      summary: AddOpsecApplication
      description: Adds an OPSEC Application
      operationId: AddOpsecApplication
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-opsec-application-request'
              - example:
                  name: MyOpsecApplication
                  host: SomeHost
                  cpmi:
                    enabled: 'true'
                    use-administrator-credentials: 'false'
                    administrator-profile: Super User
                  lea:
                    enabled: 'false'
                  one-time-password: SomePassword
            example:
              name: MyOpsecApplication
              host: SomeHost
              cpmi:
                enabled: 'true'
                use-administrator-credentials: 'false'
                administrator-profile: Super User
              lea:
                enabled: 'false'
              one-time-password: SomePassword
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-opsec-application'
                - 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
              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
      deprecated: false
  /show-opsec-application:
    post:
      tags:
      - OPSEC Application
      summary: ShowOpsecApplication
      description: Displays an OPSEC Application
      operationId: ShowOpsecApplication
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-opsec-application-request'
              - example:
                  name: MyUpdatedOpsecApplication
            example:
              name: MyUpdatedOpsecApplication
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-opsec-application'
                - 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
              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
      deprecated: false
  /set-opsec-application:
    post:
      tags:
      - OPSEC Application
      summary: SetOpsecApplication
      description: Edits an OPSEC Application
      operationId: SetOpsecApplication
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-opsec-application-request'
              - example:
                  name: MyOpsecApplication
                  new-name: MyUpdatedOpsecapplication
                  cpmi:
                    enabled: 'false'
                  lea:
                    enabled: 'true'
                    access-permissions: Show All
            example:
              name: MyOpsecApplication
              new-name: MyUpdatedOpsecapplication
              cpmi:
                enabled: 'false'
              lea:
                enabled: 'true'
                access-permissions: Show All
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-opsec-application'
                - 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
              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
      deprecated: false
  /delete-opsec-application:
    post:
      tags:
      - OPSEC Application
      summary: DeleteOpsecApplication
      description: Deletes an OPSEC Application
      operationId: DeleteOpsecApplication
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-opsec-application-request'
              - example:
                  name: MySecondOpsecApplication
            example:
              name: MySecondOpsecApplication
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-opsec-application'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-opsec-applications:
    post:
      tags:
      - OPSEC Application
      summary: ShowOpsecApplications
      description: Displays all OPSEC Applications
      operationId: ShowOpsecApplications
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-opsec-applications'
                - 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
              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
      deprecated: false
  /show-data-center-content:
    post:
      tags:
      - Data Center
      summary: ShowDataCenterContent
      description: show-data-center-content
      operationId: ShowDataCenterContent
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-data-center-content-request'
              - example:
                  data-center-name: vCenter 1
            example:
              data-center-name: vCenter 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-data-center-content'
                - 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
              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
      deprecated: false
  /show-data-center:
    post:
      tags:
      - Data Center
      summary: ShowDataCenter
      description: show-data-center
      operationId: ShowDataCenter
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-data-center-request'
              - example:
                  name: vCenter 1
            example:
              name: vCenter 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-data-center'
                - 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
              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
      deprecated: false
  /show-data-centers:
    post:
      tags:
      - Data Center
      summary: ShowDataCenters
      description: show-data-centers
      operationId: ShowDataCenters
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-data-centers'
                - 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
              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
      deprecated: false
  /add-data-center-object:
    post:
      tags:
      - Data Center Object
      summary: AddDataCenterObject with group
      description: add-data-center-object with group
      operationId: AddDataCenterObjectwithgroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-data-center-objectwithgrouprequest'
              - example:
                  data-center-name: vCenter 1
                  uri: /Datacenters/VMs/My VM1
                  name: VM1 mgmt name
                  groups:
                  - Database VMs Group
            example:
              data-center-name: vCenter 1
              uri: /Datacenters/VMs/My VM1
              name: VM1 mgmt name
              groups:
              - Database VMs Group
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-data-center-objectwithgroup'
                - 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
              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
      deprecated: false
  /show-data-center-object:
    post:
      tags:
      - Data Center Object
      summary: ShowDataCenterObject
      description: show-data-center-object
      operationId: ShowDataCenterObject
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-data-center-object-request'
              - example:
                  name: VM1 mgmt name
            example:
              name: VM1 mgmt name
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-data-center-object'
                - 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
              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
      deprecated: false
  /delete-data-center-object:
    post:
      tags:
      - Data Center Object
      summary: DeleteDataCenterObject
      description: delete-data-center-object
      operationId: DeleteDataCenterObject
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-data-center-object-request'
              - example:
                  name: VM1 mgmt name
            example:
              name: VM1 mgmt name
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-data-center-object'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-data-center-objects:
    post:
      tags:
      - Data Center Object
      summary: ShowDataCenterObjects
      description: show-data-center-objects
      operationId: ShowDataCenterObjects
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-data-center-objects'
                - 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
              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
      deprecated: false
  /show-updatable-objects-repository-content:
    post:
      tags:
      - Updatable Objects Repository
      summary: ShowUpdatableObjectsRepositoryContent
      description: Show the content of the Updatable Objects Repository
      operationId: ShowUpdatableObjectsRepositoryContent
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-updatable-objects-repository-content-request'
              - example:
                  limit: 1
            example:
              limit: 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-updatable-objects-repository-content'
                - 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
              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
      deprecated: false
  /update-updatable-objects-repository-content:
    post:
      tags:
      - Updatable Objects Repository
      summary: UpdateUpdatableObjectsRepositoryContent
      description: Update the objects in the Updatable Objects repository. Use the show-task command to check the progress of the task.
      operationId: UpdateUpdatableObjectsRepositoryContent
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/update-updatable-objects-repository-content'
                - example:
                    task-id: 01234567-89ab-cdef-a930-8c37a59972b3
              example:
                task-id: 01234567-89ab-cdef-a930-8c37a59972b3
      deprecated: false
  /add-updatable-object:
    post:
      tags:
      - Updatable Object
      summary: AddUpdatableObject
      description: Add updatable object using URI
      operationId: AddUpdatableObject
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-updatable-object-request'
              - example:
                  uri: '{{uri}}'
            example:
              uri: '{{uri}}'
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-updatable-object'
                - 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
              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
      deprecated: false
  /show-updatable-object:
    post:
      tags:
      - Updatable Object
      summary: ShowUpdatableObject
      description: Show updatable object using it's name
      operationId: ShowUpdatableObject
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-updatable-object-request'
              - example:
                  name: CodeBuild US East 1
            example:
              name: CodeBuild US East 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-updatable-object'
                - 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
              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
      deprecated: false
  /delete-updatable-object:
    post:
      tags:
      - Updatable Object
      summary: DeleteUpdatableObject
      description: Delete an updatable object
      operationId: DeleteUpdatableObject
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-updatable-object-request'
              - example:
                  name: CodeBuild US East 1
            example:
              name: CodeBuild US East 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-updatable-object'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-updatable-objects:
    post:
      tags:
      - Updatable Object
      summary: ShowUpdatableObjects
      description: Shows all the imported updatable objects
      operationId: ShowUpdatableObjects
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-updatable-objects'
                - 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
              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
      deprecated: false
  /add-service-tcp:
    post:
      tags:
      - Service TCP
      summary: AddServiceTcp
      description: add-service-tcp
      operationId: AddServiceTcp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-service-tcp-request'
              - example:
                  name: New_TCP_Service_1
                  port: 5669
                  keep-connections-open-after-policy-installation: false
                  session-timeout: 0
                  match-for-any: true
                  sync-connections-on-cluster: true
                  aggressive-aging:
                    enable: true
                    timeout: 360
                    use-default-timeout: false
            example:
              name: New_TCP_Service_1
              port: 5669
              keep-connections-open-after-policy-installation: false
              session-timeout: 0
              match-for-any: true
              sync-connections-on-cluster: true
              aggressive-aging:
                enable: true
                timeout: 360
                use-default-timeout: false
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-service-tcp'
                - 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
              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
      deprecated: false
  /show-service-tcp:
    post:
      tags:
      - Service TCP
      summary: ShowServiceTcp
      description: show-service-tcp
      operationId: ShowServiceTcp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-service-tcp-request'
              - example:
                  name: https
            example:
              name: https
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-service-tcp'
                - 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
              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
      deprecated: false
  /set-service-tcp:
    post:
      tags:
      - Service TCP
      summary: SetServiceTcp
      description: set-service-tcp
      operationId: SetServiceTcp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-service-tcp-request'
              - example:
                  name: New_TCP_Service_1
                  new-name: New_TCP_Service_2
                  color: green
                  port: 5656
                  aggressive-aging:
                    default-timeout: 3600
            example:
              name: New_TCP_Service_1
              new-name: New_TCP_Service_2
              color: green
              port: 5656
              aggressive-aging:
                default-timeout: 3600
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-service-tcp'
                - 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
              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
      deprecated: false
  /delete-service-tcp:
    post:
      tags:
      - Service TCP
      summary: DeleteServiceTcp
      description: delete-service-tcp
      operationId: DeleteServiceTcp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-service-tcp-request'
              - example:
                  name: New_TCP_Service_1
            example:
              name: New_TCP_Service_1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-service-tcp'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-services-tcp:
    post:
      tags:
      - Service TCP
      summary: ShowServicesTcp
      description: show-services-tcp
      operationId: ShowServicesTcp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-services-tcp-request'
              - example:
                  limit: 10
                  offset: 0
                  details-level: standard
            example:
              limit: 10
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-services-tcp'
                - 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'
              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'
      deprecated: false
  /add-service-udp:
    post:
      tags:
      - Service UDP
      summary: AddServiceUdp
      description: add-service-udp
      operationId: AddServiceUdp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-service-udp-request'
              - example:
                  name: New_UDP_Service_1
                  port: 5669
                  keep-connections-open-after-policy-installation: false
                  session-timeout: 0
                  match-for-any: true
                  sync-connections-on-cluster: true
                  aggressive-aging:
                    enable: true
                    timeout: 360
                    use-default-timeout: false
                  accept-replies: false
            example:
              name: New_UDP_Service_1
              port: 5669
              keep-connections-open-after-policy-installation: false
              session-timeout: 0
              match-for-any: true
              sync-connections-on-cluster: true
              aggressive-aging:
                enable: true
                timeout: 360
                use-default-timeout: false
              accept-replies: false
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-service-udp'
                - 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
              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
      deprecated: false
  /show-service-udp:
    post:
      tags:
      - Service UDP
      summary: ShowServiceUdp
      description: show-service-udp
      operationId: ShowServiceUdp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-service-udp-request'
              - example:
                  name: bootp
            example:
              name: bootp
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-service-udp'
                - 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
              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
      deprecated: false
  /set-service-udp:
    post:
      tags:
      - Service UDP
      summary: SetServiceUdp
      description: set-service-udp
      operationId: SetServiceUdp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-service-udp-request'
              - example:
                  name: New_UDP_Service_1
                  new-name: New_UDP_Service_4
                  color: green
                  port: 5656
                  aggressive-aging:
                    default-timeout: 3600
                  accept-replies: true
            example:
              name: New_UDP_Service_1
              new-name: New_UDP_Service_4
              color: green
              port: 5656
              aggressive-aging:
                default-timeout: 3600
              accept-replies: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-service-udp'
                - 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
              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
      deprecated: false
  /delete-service-udp:
    post:
      tags:
      - Service UDP
      summary: DeleteServiceUdp
      description: delete-service-udp
      operationId: DeleteServiceUdp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-service-udp-request'
              - example:
                  name: New_UDP_Service_2
            example:
              name: New_UDP_Service_2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-service-udp'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-services-udp:
    post:
      tags:
      - Service UDP
      summary: ShowServicesUdp
      description: show-services-udp
      operationId: ShowServicesUdp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-services-udp-request'
              - example:
                  limit: 10
                  offset: 0
                  details-level: standard
            example:
              limit: 10
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-services-udp'
                - 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'
              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'
      deprecated: false
  /add-service-icmp:
    post:
      tags:
      - Service ICMP
      summary: AddServiceIcmp
      description: add-service-icmp
      operationId: AddServiceIcmp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-service-icmp-request'
              - example:
                  name: Icmp1
                  icmp-type: 5
                  icmp-code: 7
            example:
              name: Icmp1
              icmp-type: 5
              icmp-code: 7
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-service-icmp'
                - 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: []
              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: []
      deprecated: false
  /show-service-icmp:
    post:
      tags:
      - Service ICMP
      summary: ShowServiceIcmp
      description: show-service-icmp
      operationId: ShowServiceIcmp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-service-icmp-request'
              - example:
                  name: info-req
            example:
              name: info-req
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-service-icmp'
                - 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
              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
      deprecated: false
  /set-service-icmp:
    post:
      tags:
      - Service ICMP
      summary: SetServiceIcmp
      description: set-service-icmp
      operationId: SetServiceIcmp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-service-icmp-request'
              - example:
                  name: icmp1
                  new-name: icmp2
                  icmp-type: 45
                  icmp-code: 13
            example:
              name: icmp1
              new-name: icmp2
              icmp-type: 45
              icmp-code: 13
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-service-icmp'
                - 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: []
              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: []
      deprecated: false
  /delete-service-icmp:
    post:
      tags:
      - Service ICMP
      summary: DeleteServiceIcmp
      description: delete-service-icmp
      operationId: DeleteServiceIcmp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-service-icmp-request'
              - example:
                  name: icmp3
            example:
              name: icmp3
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-service-icmp'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-services-icmp:
    post:
      tags:
      - Service ICMP
      summary: ShowServicesIcmp
      description: show-services-icmp
      operationId: ShowServicesIcmp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-services-icmp-request'
              - example:
                  limit: 4
                  offset: 3
            example:
              limit: 4
              offset: 3
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-services-icmp'
                - 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
              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
      deprecated: false
  /add-service-icmp6:
    post:
      tags:
      - Service ICMP6
      summary: AddServiceIcmp6
      description: add-service-icmp6
      operationId: AddServiceIcmp6
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-service-icmp6-request'
              - example:
                  name: Icmp1
                  icmp-type: 5
                  icmp-code: 7
            example:
              name: Icmp1
              icmp-type: 5
              icmp-code: 7
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-service-icmp'
                - 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: []
              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: []
      deprecated: false
  /show-service-icmp6:
    post:
      tags:
      - Service ICMP6
      summary: ShowServiceIcmp6
      description: show-service-icmp6
      operationId: ShowServiceIcmp6
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-service-icmp6-request'
              - example:
                  name: echo-reply6
            example:
              name: echo-reply6
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-service-icmp6'
                - 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: []
              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: []
      deprecated: false
  /set-service-icmp6:
    post:
      tags:
      - Service ICMP6
      summary: SetServiceIcmp6
      description: set-service-icmp6
      operationId: SetServiceIcmp6
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-service-icmp6-request'
              - example:
                  name: icmp1
                  new-name: icmp2
                  icmp-type: 45
                  icmp-code: 13
            example:
              name: icmp1
              new-name: icmp2
              icmp-type: 45
              icmp-code: 13
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-service-icmp'
                - 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: []
              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: []
      deprecated: false
  /delete-service-icmp6:
    post:
      tags:
      - Service ICMP6
      summary: DeleteServiceIcmp6
      description: delete-service-icmp6
      operationId: DeleteServiceIcmp6
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-service-icmp6-request'
              - example:
                  name: icmp2
            example:
              name: icmp2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-service-icmp'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-services-icmp6:
    post:
      tags:
      - Service ICMP6
      summary: ShowServicesIcmp6
      description: show-services-icmp6
      operationId: ShowServicesIcmp6
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-services-icmp6-request'
              - example:
                  limit: 2
                  offset: 4
            example:
              limit: 2
              offset: 4
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-services-icmp'
                - 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
              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
      deprecated: false
  /add-service-sctp:
    post:
      tags:
      - Service SCTP
      summary: AddServiceSctp
      description: add-service-sctp
      operationId: AddServiceSctp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-service-sctp-request'
              - example:
                  name: New_SCTP_Service_1
                  port: 5669
                  keep-connections-open-after-policy-installation: false
                  session-timeout: 0
                  match-for-any: true
                  sync-connections-on-cluster: true
                  aggressive-aging:
                    enable: true
                    timeout: 360
                    use-default-timeout: false
            example:
              name: New_SCTP_Service_1
              port: 5669
              keep-connections-open-after-policy-installation: false
              session-timeout: 0
              match-for-any: true
              sync-connections-on-cluster: true
              aggressive-aging:
                enable: true
                timeout: 360
                use-default-timeout: false
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-service-sctp'
                - 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'
              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'
      deprecated: false
  /show-service-sctp:
    post:
      tags:
      - Service SCTP
      summary: ShowServiceSctp
      description: show-service-sctp
      operationId: ShowServiceSctp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-service-sctp-request'
              - example:
                  name: New_SCTP_Service_1
            example:
              name: New_SCTP_Service_1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-service-sctp'
                - 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'
              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'
      deprecated: false
  /set-service-sctp:
    post:
      tags:
      - Service SCTP
      summary: SetServiceSctp
      description: set-service-sctp
      operationId: SetServiceSctp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-service-sctp-request'
              - example:
                  name: New_SCTP_Service_1
                  new-name: New_SCTP_Service_2
                  color: green
                  port: 5656
                  aggressive-aging:
                    default-timeout: 3600
            example:
              name: New_SCTP_Service_1
              new-name: New_SCTP_Service_2
              color: green
              port: 5656
              aggressive-aging:
                default-timeout: 3600
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-service-sctp'
                - 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'
              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'
      deprecated: false
  /delete-service-sctp:
    post:
      tags:
      - Service SCTP
      summary: DeleteServiceSctp
      description: delete-service-sctp
      operationId: DeleteServiceSctp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-service-sctp-request'
              - example:
                  name: New_SCTP_Service_2
            example:
              name: New_SCTP_Service_2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-service-sctp'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-services-sctp:
    post:
      tags:
      - Service SCTP
      summary: ShowServicesSctp
      description: show-services-sctp
      operationId: ShowServicesSctp
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-services-sctp-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-services-sctp'
                - 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
              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
      deprecated: false
  /add-service-other:
    post:
      tags:
      - Service Other
      summary: AddServiceOther
      description: add-service-other
      operationId: AddServiceOther
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-service-other-request'
              - example:
                  name: New_Service_1
                  keep-connections-open-after-policy-installation: false
                  session-timeout: 0
                  match-for-any: true
                  sync-connections-on-cluster: true
                  ip-protocol: 51
                  aggressive-aging:
                    enable: true
                    timeout: 360
                    use-default-timeout: false
            example:
              name: New_Service_1
              keep-connections-open-after-policy-installation: false
              session-timeout: 0
              match-for-any: true
              sync-connections-on-cluster: true
              ip-protocol: 51
              aggressive-aging:
                enable: true
                timeout: 360
                use-default-timeout: false
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-service-other'
                - 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
              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
      deprecated: false
  /show-service-other:
    post:
      tags:
      - Service Other
      summary: ShowServiceOther
      description: show-service-other
      operationId: ShowServiceOther
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-service-other-request'
              - example:
                  name: New_Service_1
            example:
              name: New_Service_1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-service-other'
                - 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
              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
      deprecated: false
  /set-service-other:
    post:
      tags:
      - Service Other
      summary: SetServiceOther
      description: set-service-other
      operationId: SetServiceOther
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-service-other-request'
              - example:
                  name: New_Service_1
                  new-name: New_Service_3
                  color: green
                  aggressive-aging:
                    default-timeout: 3600
            example:
              name: New_Service_1
              new-name: New_Service_3
              color: green
              aggressive-aging:
                default-timeout: 3600
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-service-other'
                - 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
              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
      deprecated: false
  /delete-service-other:
    post:
      tags:
      - Service Other
      summary: DeleteServiceOther
      description: delete-service-other
      operationId: DeleteServiceOther
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-service-other-request'
              - example:
                  name: New_Service_2
            example:
              name: New_Service_2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-service-other'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-services-other:
    post:
      tags:
      - Service Other
      summary: ShowServicesOther
      description: show-services-other
      operationId: ShowServicesOther
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-services-other-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-services-other'
                - 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
              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
      deprecated: false
  /add-service-group:
    post:
      tags:
      - Service Group
      summary: AddServiceGroup
      description: add-service-group
      operationId: AddServiceGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-service-group-request'
              - example:
                  name: New Service Group 1
                  members:
                  - https
                  - bootp
                  - nisplus
                  - HP-OpCdistm
            example:
              name: New Service Group 1
              members:
              - https
              - bootp
              - nisplus
              - HP-OpCdistm
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-service-group:
    post:
      tags:
      - Service Group
      summary: ShowServiceGroup
      description: show-service-group
      operationId: ShowServiceGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-service-group-request'
              - example:
                  name: New Service Group 1
            example:
              name: New Service Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-service-group:
    post:
      tags:
      - Service Group
      summary: SetServiceGroup
      description: set-service-group
      operationId: SetServiceGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-service-group-request'
              - example:
                  name: New Service Group 1
                  members:
                    add: http
            example:
              name: New Service Group 1
              members:
                add: http
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-service-group:
    post:
      tags:
      - Service Group
      summary: DeleteServiceGroup
      description: delete-service-group
      operationId: DeleteServiceGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-service-group-request'
              - example:
                  name: New Service Group 1
            example:
              name: New Service Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-service-groups:
    post:
      tags:
      - Service Group
      summary: ShowServiceGroups
      description: show-service-groups
      operationId: ShowServiceGroups
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-service-groups-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-application-site:
    post:
      tags:
      - Application
      summary: AddApplicationSite
      description: add-application-site
      operationId: AddApplicationSite
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-application-site-request'
              - example:
                  name: New Application Site 1
                  primary-category: Social Networking
                  description: My Application Site
                  additional-categories:
                  - Instant Chat
                  - Supports Streaming
                  - New Application Site Category 1
                  url-list:
                  - www.cnet.com
                  - www.stackoverflow.com
                  urls-defined-as-regular-expression: false
            example:
              name: New Application Site 1
              primary-category: Social Networking
              description: My Application Site
              additional-categories:
              - Instant Chat
              - Supports Streaming
              - New Application Site Category 1
              url-list:
              - www.cnet.com
              - www.stackoverflow.com
              urls-defined-as-regular-expression: false
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-application-site:
    post:
      tags:
      - Application
      summary: ShowApplicationSite
      description: show-application-site
      operationId: ShowApplicationSite
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-application-site-request'
              - example:
                  name: facebook
            example:
              name: facebook
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-application-site:
    post:
      tags:
      - Application
      summary: SetApplicationSite
      description: set-application-site
      operationId: SetApplicationSite
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-application-site-request'
              - example:
                  name: New Application Site 1
                  new-name: New Application Site 2
                  primary-category: Instant Chat
                  description: My New Application Site
                  additional-categories:
                    remove:
                    - Instant Chat
                    - Supports Streaming
                  url-list:
                    add: www.download.com
                  urls-defined-as-regular-expression: true
                  groups: New Application Site Group 1
            example:
              name: New Application Site 1
              new-name: New Application Site 2
              primary-category: Instant Chat
              description: My New Application Site
              additional-categories:
                remove:
                - Instant Chat
                - Supports Streaming
              url-list:
                add: www.download.com
              urls-defined-as-regular-expression: true
              groups: New Application Site Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-application-site:
    post:
      tags:
      - Application
      summary: DeleteApplicationSite
      description: delete-application-site
      operationId: DeleteApplicationSite
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-application-site-request'
              - example:
                  name: New Application Site 2
            example:
              name: New Application Site 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-application-sites:
    post:
      tags:
      - Application
      summary: ShowApplicationSites
      description: show-application-sites
      operationId: ShowApplicationSites
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-application-sites-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-application-site-category:
    post:
      tags:
      - Application Category
      summary: AddApplicationSiteCategory
      description: add-application-site-category
      operationId: AddApplicationSiteCategory
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-application-site-category-request'
              - example:
                  name: New Application Site Category 1
                  description: My Application Site category
            example:
              name: New Application Site Category 1
              description: My Application Site category
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-application-site-category:
    post:
      tags:
      - Application Category
      summary: ShowApplicationSiteCategory
      description: show-application-site-category
      operationId: ShowApplicationSiteCategory
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-application-site-category-request'
              - example:
                  name: Social Networking
            example:
              name: Social Networking
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-application-site-category:
    post:
      tags:
      - Application Category
      summary: SetApplicationSiteCategory
      description: set-application-site-category
      operationId: SetApplicationSiteCategory
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-application-site-category-request'
              - example:
                  name: New Application Site Category 1
                  new-name: New Application Site Category 2
                  description: My new Application Site category
                  groups: New Application Site Group 1
            example:
              name: New Application Site Category 1
              new-name: New Application Site Category 2
              description: My new Application Site category
              groups: New Application Site Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-application-site-category:
    post:
      tags:
      - Application Category
      summary: DeleteApplicationSiteCategory
      description: delete-application-site-category
      operationId: DeleteApplicationSiteCategory
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-application-site-category-request'
              - example:
                  name: New Application Site Category 2
            example:
              name: New Application Site Category 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-application-site-categories:
    post:
      tags:
      - Application Category
      summary: ShowApplicationSiteCategories
      description: show-application-site-categories
      operationId: ShowApplicationSiteCategories
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-application-site-categories-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-application-site-group:
    post:
      tags:
      - Application Group
      summary: AddApplicationSiteGroup
      description: add-application-site-group
      operationId: AddApplicationSiteGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-application-site-group-request'
              - example:
                  name: New Application Site Group 1
                  members:
                  - facebook
                  - Social Networking
                  - New Application Site 1
                  - New Application Site Category 1
            example:
              name: New Application Site Group 1
              members:
              - facebook
              - Social Networking
              - New Application Site 1
              - New Application Site Category 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-application-site-group:
    post:
      tags:
      - Application Group
      summary: ShowApplicationSiteGroup
      description: show-application-site-group
      operationId: ShowApplicationSiteGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-application-site-group-request'
              - example:
                  name: New Application Site Group 1
            example:
              name: New Application Site Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-application-site-group:
    post:
      tags:
      - Application Group
      summary: SetApplicationSiteGroup
      description: set-application-site-group
      operationId: SetApplicationSiteGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-application-site-group-request'
              - example:
                  name: New Application Site Group 1
                  members:
                    add: AliveProxy
                  groups: New Application Site Group 2
            example:
              name: New Application Site Group 1
              members:
                add: AliveProxy
              groups: New Application Site Group 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-application-site-group:
    post:
      tags:
      - Application Group
      summary: DeleteApplicationSiteGroup
      description: delete-application-site-group
      operationId: DeleteApplicationSiteGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-application-site-group-request'
              - example:
                  name: New Application Site Group 1
            example:
              name: New Application Site Group 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-application-site-groups:
    post:
      tags:
      - Application Group
      summary: ShowApplicationSiteGroups
      description: show-application-site-groups
      operationId: ShowApplicationSiteGroups
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-application-site-groups-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-service-dce-rpc:
    post:
      tags:
      - Service DCE-RPC
      summary: AddServiceDceRpc
      description: add-service-dce-rpc
      operationId: AddServiceDceRpc
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-service-dce-rpc-request'
              - example:
                  name: New_DCE-RPC_Service_1
                  interface-uuid: 97aeb460-9aea-11d5-bd16-0090272ccb30
                  keep-connections-open-after-policy-installation: false
            example:
              name: New_DCE-RPC_Service_1
              interface-uuid: 97aeb460-9aea-11d5-bd16-0090272ccb30
              keep-connections-open-after-policy-installation: false
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-service-dce-rpc'
                - 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
              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
      deprecated: false
  /show-service-dce-rpc:
    post:
      tags:
      - Service DCE-RPC
      summary: ShowServiceDceRpc
      description: show-service-dce-rpc
      operationId: ShowServiceDceRpc
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-service-dce-rpc-request'
              - example:
                  name: HP-OpCdistm
            example:
              name: HP-OpCdistm
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-service-dce-rpc'
                - 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
              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
      deprecated: false
  /set-service-dce-rpc:
    post:
      tags:
      - Service DCE-RPC
      summary: SetServiceDceRpc
      description: set-service-dce-rpc
      operationId: SetServiceDceRpc
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-service-dce-rpc-request'
              - example:
                  name: New_DCE-RPC_Service_1
                  new-name: New_DCE-RPC_Service_3
                  color: green
                  interface-uuid: 44aeb460-9aea-11d5-bd16-009027266b30
            example:
              name: New_DCE-RPC_Service_1
              new-name: New_DCE-RPC_Service_3
              color: green
              interface-uuid: 44aeb460-9aea-11d5-bd16-009027266b30
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-service-dce-rpc'
                - 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
              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
      deprecated: false
  /delete-service-dce-rpc:
    post:
      tags:
      - Service DCE-RPC
      summary: DeleteServiceDceRpc
      description: delete-service-dce-rpc
      operationId: DeleteServiceDceRpc
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-service-dce-rpc-request'
              - example:
                  name: New_DCE-RPC_Service_2
            example:
              name: New_DCE-RPC_Service_2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-service-dce-rpc'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-services-dce-rpc:
    post:
      tags:
      - Service DCE-RPC
      summary: ShowServicesDceRpc
      description: show-services-dce-rpc
      operationId: ShowServicesDceRpc
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-services-dce-rpc-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-services-dce-rpc'
                - 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
              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
      deprecated: false
  /add-service-rpc:
    post:
      tags:
      - Service RPC
      summary: AddServiceRpc
      description: add-service-rpc
      operationId: AddServiceRpc
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-service-rpc-request'
              - example:
                  name: New_RPC_Service_1
                  program-number: 5669
                  keep-connections-open-after-policy-installation: false
            example:
              name: New_RPC_Service_1
              program-number: 5669
              keep-connections-open-after-policy-installation: false
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-service-rpc'
                - example:
                    message: Validation failed with 1 error
                    code: generic_error
                    errors:
                    - message: More than one object named 'New_RPC_Service_1' exists.
              example:
                message: Validation failed with 1 error
                code: generic_error
                errors:
                - message: More than one object named 'New_RPC_Service_1' exists.
      deprecated: false
  /show-service-rpc:
    post:
      tags:
      - Service RPC
      summary: ShowServiceRpc
      description: show-service-rpc
      operationId: ShowServiceRpc
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-service-rpc-request'
              - example:
                  name: nisplus
            example:
              name: nisplus
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-service-rpc'
                - 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
              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
      deprecated: false
  /set-service-rpc:
    post:
      tags:
      - Service RPC
      summary: SetServiceRpc
      description: set-service-rpc
      operationId: SetServiceRpc
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-service-rpc-request'
              - example:
                  name: New_RPC_Service_1
                  new-name: New_RPC_Service_5
                  color: green
                  program-number: 5656
            example:
              name: New_RPC_Service_1
              new-name: New_RPC_Service_5
              color: green
              program-number: 5656
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-service-rpc'
                - 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
              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
      deprecated: false
  /delete-service-rpc:
    post:
      tags:
      - Service RPC
      summary: DeleteServiceRpc
      description: delete-service-rpc
      operationId: DeleteServiceRpc
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-service-rpc-request'
              - example:
                  name: New_RPC_Service_2
            example:
              name: New_RPC_Service_2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/delete-service-rpc'
                - example:
                    message: OK
              example:
                message: OK
      deprecated: false
  /show-services-rpc:
    post:
      tags:
      - Service RPC
      summary: ShowServicesRpc
      description: show-services-rpc
      operationId: ShowServicesRpc
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-services-rpc-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-services-rpc'
                - 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
              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
      deprecated: false
  /add-access-rule:
    post:
      tags:
      - Access Rule
      summary: AddAccessRule
      description: add-access-rule
      operationId: AddAccessRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-access-rule-request'
              - example:
                  layer: Network
                  position: 1
                  name: Rule 1
                  service:
                  - SMTP
                  - AOL
                  vpn: MyIntranet
            example:
              layer: Network
              position: 1
              name: Rule 1
              service:
              - SMTP
              - AOL
              vpn: MyIntranet
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-access-rule'
                - 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: ''
              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: ''
      deprecated: false
  /show-access-rulebase:
    post:
      tags:
      - Access Rule
      summary: ShowAccessRulebase
      description: Shows the entire Access Rules Rulebase.
      operationId: ShowAccessRulebase
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-access-rulebase-request'
              - example:
                  offset: 0
                  limit: 20
                  name: Network
                  details-level: standard
                  use-object-dictionary: true
            example:
              offset: 0
              limit: 20
              name: Network
              details-level: standard
              use-object-dictionary: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/show-access-rulebase'
      deprecated: false
  /show-access-rule:
    post:
      tags:
      - Access Rule
      summary: ShowAccessRule
      description: show-access-rule
      operationId: ShowAccessRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-access-rule-request'
              - example:
                  name: Rule 1
                  layer: Network
            example:
              name: Rule 1
              layer: Network
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-access-rule:
    post:
      tags:
      - Access Rule
      summary: SetAccessRule
      description: set-access-rule
      operationId: SetAccessRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-access-rule-request'
              - example:
                  name: Rule 1
                  layer: Network
                  action: Ask
                  action-settings:
                    enable-identity-captive-portal: true
                    limit: Upload_1Gbps
            example:
              name: Rule 1
              layer: Network
              action: Ask
              action-settings:
                enable-identity-captive-portal: true
                limit: Upload_1Gbps
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-access-rule:
    post:
      tags:
      - Access Rule
      summary: DeleteAccessRule
      description: delete-access-rule
      operationId: DeleteAccessRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-access-rule-request'
              - example:
                  name: Rule 2
                  layer: Network
            example:
              name: Rule 2
              layer: Network
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-access-section:
    post:
      tags:
      - Access Section
      summary: AddAccessSection
      description: add-access-section
      operationId: AddAccessSection
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-access-section-request'
              - example:
                  layer: Network
                  position: 1
                  name: New Section 1
            example:
              layer: Network
              position: 1
              name: New Section 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-access-section:
    post:
      tags:
      - Access Section
      summary: ShowAccessSection
      description: show-access-section
      operationId: ShowAccessSection
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-access-section-request'
              - example:
                  layer: Network
                  name: New Section 1
            example:
              layer: Network
              name: New Section 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-access-section:
    post:
      tags:
      - Access Section
      summary: SetAccessSection
      description: set-access-section
      operationId: SetAccessSection
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-access-section-request'
              - example:
                  layer: Network
                  name: New Section 1
                  new-name: New Section 2
            example:
              layer: Network
              name: New Section 1
              new-name: New Section 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-access-section:
    post:
      tags:
      - Access Section
      summary: DeleteAccessSection
      description: delete-access-section
      operationId: DeleteAccessSection
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-access-section-request'
              - example:
                  layer: Network
                  name: New Section 2
            example:
              layer: Network
              name: New Section 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-access-layer:
    post:
      tags:
      - Access Layer
      summary: AddAccessLayer
      description: Add access layer
      operationId: AddAccessLayer
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-access-layer-request'
              - example:
                  name: New Layer 1
            example:
              name: New Layer 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-access-layer'
                - 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
              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
      deprecated: false
  /show-access-layer:
    post:
      tags:
      - Access Layer
      summary: ShowAccessLayer
      description: show-access-layer
      operationId: ShowAccessLayer
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-access-layer-request'
              - example:
                  name: New Layer 1
            example:
              name: New Layer 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-access-layer:
    post:
      tags:
      - Access Layer
      summary: SetAccessLayer
      description: Set access layer
      operationId: SetAccessLayer
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-access-layer-request'
              - example:
                  name: New Layer 1
                  new-name: New Layer 2
                  applications-and-url-filtering: false
                  data-awareness: true
            example:
              name: New Layer 1
              new-name: New Layer 2
              applications-and-url-filtering: false
              data-awareness: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-access-layer'
                - 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
              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
      deprecated: false
  /delete-access-layer:
    post:
      tags:
      - Access Layer
      summary: DeleteAccessLayer
      description: Delete access layer
      operationId: DeleteAccessLayer
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-access-layer-request'
              - example:
                  name: New Layer 2
            example:
              name: New Layer 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-access-layers:
    post:
      tags:
      - Access Layer
      summary: ShowAccessLayers
      description: show-access-layers
      operationId: ShowAccessLayers
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-access-layers-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-nat-rule:
    post:
      tags:
      - NAT Rule
      summary: AddNatRule
      description: add-nat-rule
      operationId: AddNatRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-nat-rule-request'
              - example:
                  package: standard
                  position: 1
                  comments: comment example1 nat999
                  enabled: false
                  install-on:
                  - Policy Targets
                  original-source: Any
                  original-destination: All_Internet
            example:
              package: standard
              position: 1
              comments: comment example1 nat999
              enabled: false
              install-on:
              - Policy Targets
              original-source: Any
              original-destination: All_Internet
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-nat-rulebase:
    post:
      tags:
      - NAT Rule
      summary: ShowNatRulebase
      description: Shows the entire NAT Rules Rulebase.
      operationId: ShowNatRulebase
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-nat-rulebase-request'
              - example:
                  offset: 1
                  limit: 2
                  details-level: standard
                  use-object-dictionary: true
                  package: standard
            example:
              offset: 1
              limit: 2
              details-level: standard
              use-object-dictionary: true
              package: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-nat-rulebase'
                - 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
              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
      deprecated: false
  /show-nat-rule:
    post:
      tags:
      - NAT Rule
      summary: ShowNatRule
      description: show-nat-rule
      operationId: ShowNatRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-nat-rule-request'
              - example:
                  rule-number: 1
                  package: standard
            example:
              rule-number: 1
              package: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-nat-rule:
    post:
      tags:
      - NAT Rule
      summary: SetNatRule
      description: set-nat-rule
      operationId: SetNatRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-nat-rule-request'
              - example:
                  rule-number: 1
                  package: standard
                  enabled: false
                  original-service: ssh_version_2
                  original-source: Any
                  comments: rule for RND members  RNDNetwork-> RND to Internal Network
            example:
              rule-number: 1
              package: standard
              enabled: false
              original-service: ssh_version_2
              original-source: Any
              comments: rule for RND members  RNDNetwork-> RND to Internal Network
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-nat-rule:
    post:
      tags:
      - NAT Rule
      summary: DeleteNatRule
      description: delete-nat-rule
      operationId: DeleteNatRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-nat-rule-request'
              - example:
                  rule-number: 1
                  package: standard
            example:
              rule-number: 1
              package: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-nat-section:
    post:
      tags:
      - NAT Section
      summary: AddNatSection
      description: add-nat-section
      operationId: AddNatSection
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-nat-section-request'
              - example:
                  package: standard
                  name: New Section 1
                  position: 2
            example:
              package: standard
              name: New Section 1
              position: 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-nat-section:
    post:
      tags:
      - NAT Section
      summary: ShowNatSection
      description: show-nat-section
      operationId: ShowNatSection
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-nat-section-request'
              - example:
                  package: standard
                  name: New Section 1
            example:
              package: standard
              name: New Section 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-nat-section:
    post:
      tags:
      - NAT Section
      summary: SetNatSection
      description: set-nat-section
      operationId: SetNatSection
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-nat-section-request'
              - example:
                  package: standard
                  name: New Section 1
                  new-name: New Section 2
            example:
              package: standard
              name: New Section 1
              new-name: New Section 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-nat-section:
    post:
      tags:
      - NAT Section
      summary: DeleteNatSection
      description: delete-nat-section
      operationId: DeleteNatSection
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-nat-section-request'
              - example:
                  package: standard
                  name: New Section 1
            example:
              package: standard
              name: New Section 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-vpn-community-meshed:
    post:
      tags:
      - VPN Community Meshed
      summary: AddVpnCommunityMeshed
      description: Adds a new VPN Meshed Community
      operationId: AddVpnCommunityMeshed
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-vpn-community-meshed-request'
              - example:
                  name: New_VPN_Community_Meshed_1
                  encryption-method: prefer ikev2 but support ikev1
                  encryption-suite: custom
                  ike-phase-1:
                    data-integrity: sha1
                    encryption-algorithm: aes-128
                    diffie-hellman-group: group 19
                  ike-phase-2:
                    data-integrity: aes-xcbc
                    encryption-algorithm: aes-gcm-128
            example:
              name: New_VPN_Community_Meshed_1
              encryption-method: prefer ikev2 but support ikev1
              encryption-suite: custom
              ike-phase-1:
                data-integrity: sha1
                encryption-algorithm: aes-128
                diffie-hellman-group: group 19
              ike-phase-2:
                data-integrity: aes-xcbc
                encryption-algorithm: aes-gcm-128
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-vpn-community-meshed'
                - 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: []
              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: []
      deprecated: false
  /show-vpn-community-meshed:
    post:
      tags:
      - VPN Community Meshed
      summary: ShowVpnCommunityMeshed
      description: Displays a VPN Meshed Community
      operationId: ShowVpnCommunityMeshed
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-vpn-community-meshed-request'
              - example:
                  name: New_VPN_Community_Meshed_1
            example:
              name: New_VPN_Community_Meshed_1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-vpn-community-meshed'
                - 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: []
              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: []
      deprecated: false
  /set-vpn-community-meshed:
    post:
      tags:
      - VPN Community Meshed
      summary: SetVpnCommunityMeshed
      description: Modifies an existing VPN Meshed Community
      operationId: SetVpnCommunityMeshed
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-vpn-community-meshed-request'
              - example:
                  name: New_VPN_Community_Meshed_1
                  encryption-method: ikev2 only
                  encryption-suite: custom
                  ike-phase-1:
                    data-integrity: sha1
                    encryption-algorithm: aes-128
                    diffie-hellman-group: group 19
                  ike-phase-2:
                    data-integrity: aes-xcbc
                    encryption-algorithm: aes-gcm-128
            example:
              name: New_VPN_Community_Meshed_1
              encryption-method: ikev2 only
              encryption-suite: custom
              ike-phase-1:
                data-integrity: sha1
                encryption-algorithm: aes-128
                diffie-hellman-group: group 19
              ike-phase-2:
                data-integrity: aes-xcbc
                encryption-algorithm: aes-gcm-128
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-vpn-community-meshed'
                - 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: []
              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: []
      deprecated: false
  /delete-vpn-community-meshed:
    post:
      tags:
      - VPN Community Meshed
      summary: DeleteVpnCommunityMeshed
      description: delete-vpn-community-meshed
      operationId: DeleteVpnCommunityMeshed
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-vpn-community-meshed-request'
              - example:
                  name: New_VPN_Community_Meshed_1
            example:
              name: New_VPN_Community_Meshed_1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-vpn-communities-meshed:
    post:
      tags:
      - VPN Community Meshed
      summary: ShowVpnCommunitiesMeshed
      description: Displays several VPN Meshed Communities
      operationId: ShowVpnCommunitiesMeshed
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-vpn-communities-meshed-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: full
            example:
              limit: 50
              offset: 0
              details-level: full
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-vpn-communities-meshed'
                - 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: []
              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: []
      deprecated: false
  /add-vpn-community-star:
    post:
      tags:
      - VPN Community Star
      summary: AddVpnCommunityStar
      description: Adds a new VPN Star Community
      operationId: AddVpnCommunityStar
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-vpn-community-star-request'
              - example:
                  name: New_VPN_Community_Star_1
                  center-gateways: Second_Security_Gateway
                  encryption-method: prefer ikev2 but support ikev1
                  encryption-suite: custom
                  ike-phase-1:
                    data-integrity: sha1
                    encryption-algorithm: aes-128
                    diffie-hellman-group: group 19
                  ike-phase-2:
                    data-integrity: aes-xcbc
                    encryption-algorithm: aes-gcm-128
            example:
              name: New_VPN_Community_Star_1
              center-gateways: Second_Security_Gateway
              encryption-method: prefer ikev2 but support ikev1
              encryption-suite: custom
              ike-phase-1:
                data-integrity: sha1
                encryption-algorithm: aes-128
                diffie-hellman-group: group 19
              ike-phase-2:
                data-integrity: aes-xcbc
                encryption-algorithm: aes-gcm-128
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-vpn-community-star'
                - 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
              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
      deprecated: false
  /show-vpn-community-star:
    post:
      tags:
      - VPN Community Star
      summary: ShowVpnCommunityStar
      description: Displays a VPN Star Community
      operationId: ShowVpnCommunityStar
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-vpn-community-star-request'
              - example:
                  name: New_VPN_Community_Meshed_1
            example:
              name: New_VPN_Community_Meshed_1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-vpn-community-star'
                - 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
              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
      deprecated: false
  /set-vpn-community-star:
    post:
      tags:
      - VPN Community Star
      summary: SetVpnCommunityStar
      description: Modifies an existing VPN Star Community
      operationId: SetVpnCommunityStar
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-vpn-community-star-request'
              - example:
                  name: New_VPN_Community_Star_1
                  encryption-method: ikev2 only
                  encryption-suite: custom
                  ike-phase-1:
                    data-integrity: sha1
                    encryption-algorithm: aes-128
                    diffie-hellman-group: group 19
                  ike-phase-2:
                    data-integrity: aes-xcbc
                    encryption-algorithm: aes-gcm-128
            example:
              name: New_VPN_Community_Star_1
              encryption-method: ikev2 only
              encryption-suite: custom
              ike-phase-1:
                data-integrity: sha1
                encryption-algorithm: aes-128
                diffie-hellman-group: group 19
              ike-phase-2:
                data-integrity: aes-xcbc
                encryption-algorithm: aes-gcm-128
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-vpn-community-star'
                - 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
              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
      deprecated: false
  /delete-vpn-community-star:
    post:
      tags:
      - VPN Community Star
      summary: DeleteVpnCommunityStar
      description: delete-vpn-community-star
      operationId: DeleteVpnCommunityStar
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-vpn-community-star-request'
              - example:
                  name: New_VPN_Community_Star_1
            example:
              name: New_VPN_Community_Star_1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-vpn-communities-star:
    post:
      tags:
      - VPN Community Star
      summary: ShowVpnCommunitiesStar
      description: Displays several VPN Star Communities
      operationId: ShowVpnCommunitiesStar
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-vpn-communities-star-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: full
            example:
              limit: 50
              offset: 0
              details-level: full
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-vpn-communities-star'
                - 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
              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
      deprecated: false
  /add-threat-rule:
    post:
      tags:
      - Threat Rule
      summary: AddThreatRule
      description: Add threat prevention rule
      operationId: AddThreatRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-threat-rule-request'
              - example:
                  layer: New Layer 1
                  position: top
                  name: First threat rule
                  comments: ''
                  track: None
                  protected-scope: All_Internet
                  install-on: Policy Targets
            example:
              layer: New Layer 1
              position: top
              name: First threat rule
              comments: ''
              track: None
              protected-scope: All_Internet
              install-on: Policy Targets
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-threat-rule'
                - 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
              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
      deprecated: false
  /show-threat-rulebase:
    post:
      tags:
      - Threat Rule
      summary: ShowThreatRulebase
      description: Shows the entire Threat Rules Rulebase.
      operationId: ShowThreatRulebase
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-rulebase-request'
              - example:
                  name: Threat Prevention
                  offset: 0
                  limit: 20
                  details-level: standard
                  use-object-dictionary: false
                  filter: ''
            example:
              name: Threat Prevention
              offset: 0
              limit: 20
              details-level: standard
              use-object-dictionary: false
              filter: ''
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/show-threat-rulebase'
      deprecated: false
  /show-threat-rule:
    post:
      tags:
      - Threat Rule
      summary: ShowThreatRule
      description: show-threat-rule
      operationId: ShowThreatRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-rule-request'
              - example:
                  rule-number: 1
                  layer: New Layer 1
            example:
              rule-number: 1
              layer: New Layer 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-threat-rule:
    post:
      tags:
      - Threat Rule
      summary: SetThreatRule
      description: set-threat-rule
      operationId: SetThreatRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-threat-rule-request'
              - example:
                  rule-number: 2
                  layer: New Layer 1
                  comments: commnet for the first rule
                  protected-scope: All_Internet
                  action: New Profile 1
                  install-on: Policy Targets
            example:
              rule-number: 2
              layer: New Layer 1
              comments: commnet for the first rule
              protected-scope: All_Internet
              action: New Profile 1
              install-on: Policy Targets
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-threat-rule'
                - 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
              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
      deprecated: false
  /delete-threat-rule:
    post:
      tags:
      - Threat Rule
      summary: DeleteThreatRule
      description: delete-threat-rule
      operationId: DeleteThreatRule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-threat-rule-request'
              - example:
                  rule-number: 1
                  layer: New Layer 1
            example:
              rule-number: 1
              layer: New Layer 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-threat-exception:
    post:
      tags:
      - Threat Exception
      summary: AddThreatException
      description: Add threat prevention exception
      operationId: AddThreatException
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-threat-exception-request'
              - example:
                  layer: New Layer 1
                  rule-number: 1
                  position: 1
                  name: Exception Rule
                  track: Log
                  protected-scope: All_Internet
                  protection-or-site: Adware.a
            example:
              layer: New Layer 1
              rule-number: 1
              position: 1
              name: Exception Rule
              track: Log
              protected-scope: All_Internet
              protection-or-site: Adware.a
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-threat-exception'
                - 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
              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
      deprecated: false
  /show-threat-rule-exception-rulebase:
    post:
      tags:
      - Threat Exception
      summary: ShowThreatRuleExceptionRulebase
      description: show threat exception rulebase of a threat rule
      operationId: ShowThreatRuleExceptionRulebase
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-rule-exception-rulebase-request'
              - example:
                  name: Standard Threat Prevention
                  rule-number: 1
            example:
              name: Standard Threat Prevention
              rule-number: 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-threat-rule-exception-rulebase'
                - 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
              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
      deprecated: false
  /show-threat-exception:
    post:
      tags:
      - Threat Exception
      summary: ShowThreatException
      description: show-threat-exception
      operationId: ShowThreatException
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-exception-request'
              - example:
                  rule-number: 1
                  exception-number: 1
                  layer: New Layer 1
            example:
              rule-number: 1
              exception-number: 1
              layer: New Layer 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-threat-exception'
                - 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
              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
      deprecated: false
  /set-threat-exception:
    post:
      tags:
      - Threat Exception
      summary: SetThreatException
      description: Set threat prevention exception
      operationId: SetThreatException
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-threat-exception-request'
              - example:
                  name: Exception Rule
                  layer: New Layer 1
                  rule-number: 1
                  new-name: Last rule
            example:
              name: Exception Rule
              layer: New Layer 1
              rule-number: 1
              new-name: Last rule
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-threat-exception'
                - 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
              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
      deprecated: false
  /delete-threat-exception:
    post:
      tags:
      - Threat Exception
      summary: DeleteThreatException
      description: Delete threat exception
      operationId: DeleteThreatException
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-threat-exception-request'
              - example:
                  rule-number: 1
                  exception-number: 1
                  layer: New Layer 1
            example:
              rule-number: 1
              exception-number: 1
              layer: New Layer 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-exception-group:
    post:
      tags:
      - Threat Exception Group
      summary: AddExceptionGroup
      description: add-exception-group
      operationId: AddExceptionGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-exception-group-request'
              - example:
                  name: exception_group_2
            example:
              name: exception_group_2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-exception-group:
    post:
      tags:
      - Threat Exception Group
      summary: ShowExceptionGroup
      description: show-exception-group
      operationId: ShowExceptionGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-exception-group-request'
              - example:
                  name: exception_group_2
            example:
              name: exception_group_2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-exception-group:
    post:
      tags:
      - Threat Exception Group
      summary: SetExceptionGroup
      description: Set exception group
      operationId: SetExceptionGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-exception-group-request'
              - example:
                  name: exception_group_2
                  new-name: exception_group_2.1
                  tags: tag3
            example:
              name: exception_group_2
              new-name: exception_group_2.1
              tags: tag3
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-exception-group:
    post:
      tags:
      - Threat Exception Group
      summary: DeleteExceptionGroup
      description: Delete exception group
      operationId: DeleteExceptionGroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-exception-group-request'
              - example:
                  name: exception_group_2
            example:
              name: exception_group_2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-exception-groups:
    post:
      tags:
      - Threat Exception Group
      summary: ShowExceptionGroups
      description: show-exception-groups
      operationId: ShowExceptionGroups
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-exception-groups-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-threat-protection:
    post:
      tags:
      - Threat Protection
      summary: ShowThreatProtection
      description: show-threat-protection
      operationId: ShowThreatProtection
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-protection-request'
              - example:
                  name: FTP Commands
            example:
              name: FTP Commands
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-threat-protection:
    post:
      tags:
      - Threat Protection
      summary: SetThreatProtection
      description: Sets an override to an existing profile for a specific protection.<br>In the example below, one override will be set for "New Profile 1".
      operationId: SetThreatProtection
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-threat-protection-request'
              - example:
                  name: FTP Commands
                  overrides:
                  - profile: New Profile 1
                    action: inactive
                    track: None
                    capture-packets: true
            example:
              name: FTP Commands
              overrides:
              - profile: New Profile 1
                action: inactive
                track: None
                capture-packets: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-threat-protections:
    post:
      tags:
      - Threat Protection
      summary: ShowThreatProtections
      description: show-threat-protections
      operationId: ShowThreatProtections
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-protections-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-threat-protections:
    post:
      tags:
      - Threat Protection
      summary: AddThreatProtections
      description: Adding threat protections
      operationId: AddThreatProtections
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-threat-protections-request'
              - example:
                  package-path: /path/to/community.rules
                  package-format: snort
            example:
              package-path: /path/to/community.rules
              package-format: snort
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-threat-protections'
                - example:
                    task-id: 6b2e5c77-0622-4e7f-a9bf-4e1f21899553
              example:
                task-id: 6b2e5c77-0622-4e7f-a9bf-4e1f21899553
      deprecated: false
  /delete-threat-protections:
    post:
      tags:
      - Threat Protection
      summary: DeleteThreatProtections
      description: Delete threat protections
      operationId: DeleteThreatProtections
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-threat-protections-request'
              - example:
                  package-format: snort
            example:
              package-format: snort
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-threat-profile:
    post:
      tags:
      - Threat Profile
      summary: AddThreatProfile
      description: add-threat-profile
      operationId: AddThreatProfile
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-threat-profile-request'
              - example:
                  name: New Profile 1
                  active-protections-performance-impact: low
                  active-protections-severity: low or above
                  confidence-level-medium: prevent
                  confidence-level-high: prevent
                  threat-emulation: true
                  anti-virus: true
                  anti-bot: true
                  ips: true
                  ips-settings:
                    newly-updated-protections: staging
                    exclude-protection-with-performance-impact: true
                    exclude-protection-with-performance-impact-mode: high or lower
            example:
              name: New Profile 1
              active-protections-performance-impact: low
              active-protections-severity: low or above
              confidence-level-medium: prevent
              confidence-level-high: prevent
              threat-emulation: true
              anti-virus: true
              anti-bot: true
              ips: true
              ips-settings:
                newly-updated-protections: staging
                exclude-protection-with-performance-impact: true
                exclude-protection-with-performance-impact-mode: high or lower
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-threat-profile:
    post:
      tags:
      - Threat Profile
      summary: ShowThreatProfile
      description: show-threat-profile
      operationId: ShowThreatProfile
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-profile-request'
              - example:
                  name: Recommended_Profile
            example:
              name: Recommended_Profile
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-threat-profile:
    post:
      tags:
      - Threat Profile
      summary: SetThreatProfile
      description: set-threat-profile
      operationId: SetThreatProfile
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-threat-profile-request'
              - example:
                  name: New Profile 1
                  new-name: New Profile 2
                  comments: update recommended profile
                  active-protections-performance-impact: low
                  active-protections-severity: low or above
                  confidence-level-low: prevent
                  confidence-level-medium: prevent
                  confidence-level-high: prevent
                  threat-emulation: true
                  anti-virus: false
                  anti-bot: true
                  ips: false
                  ips-settings:
                    newly-updated-protections: active
                    exclude-protection-with-performance-impact: true
                    exclude-protection-with-performance-impact-mode: high or lower
            example:
              name: New Profile 1
              new-name: New Profile 2
              comments: update recommended profile
              active-protections-performance-impact: low
              active-protections-severity: low or above
              confidence-level-low: prevent
              confidence-level-medium: prevent
              confidence-level-high: prevent
              threat-emulation: true
              anti-virus: false
              anti-bot: true
              ips: false
              ips-settings:
                newly-updated-protections: active
                exclude-protection-with-performance-impact: true
                exclude-protection-with-performance-impact-mode: high or lower
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-threat-profile:
    post:
      tags:
      - Threat Profile
      summary: DeleteThreatProfile
      description: delete-threat-profile
      operationId: DeleteThreatProfile
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-threat-profile-request'
              - example:
                  name: New Profile 1
            example:
              name: New Profile 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-threat-profiles:
    post:
      tags:
      - Threat Profile
      summary: ShowThreatProfiles
      description: show-threat-profiles
      operationId: ShowThreatProfiles
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-profiles-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-threat-indicator:
    post:
      tags:
      - Threat Indicator
      summary: AddThreatIndicator
      description: Adding a threat indicator
      operationId: AddThreatIndicator
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-threat-indicator-request'
              - example:
                  name: My_Indicator
                  observables:
                  - name: My_Observable
                    mail-to: someone@somewhere.com
                    confidence: medium
                    severity: low
                    product: AV
                  action: ask
                  profile-overrides:
                  - profile: My_Profile
                    action: detect
                  ignore-warnings: true
            example:
              name: My_Indicator
              observables:
              - name: My_Observable
                mail-to: someone@somewhere.com
                confidence: medium
                severity: low
                product: AV
              action: ask
              profile-overrides:
              - profile: My_Profile
                action: detect
              ignore-warnings: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-threat-indicator:
    post:
      tags:
      - Threat Indicator
      summary: ShowThreatIndicator
      description: Showing a threat indicator
      operationId: ShowThreatIndicator
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-indicator-request'
              - example:
                  name: My_Indicator
            example:
              name: My_Indicator
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-threat-indicator'
                - 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
              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
      deprecated: false
  /set-threat-indicator:
    post:
      tags:
      - Threat Indicator
      summary: SetThreatIndicator
      description: Setting a threat indicator
      operationId: SetThreatIndicator
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-threat-indicator-request'
              - example:
                  name: My_Indicator
                  action: prevent
                  profile-overrides:
                    remove: My_Profile
                  ignore-warnings: true
            example:
              name: My_Indicator
              action: prevent
              profile-overrides:
                remove: My_Profile
              ignore-warnings: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-threat-indicator'
                - 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
              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
      deprecated: false
  /delete-threat-indicator:
    post:
      tags:
      - Threat Indicator
      summary: DeleteThreatIndicator
      description: Deleting a threat indicator
      operationId: DeleteThreatIndicator
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-threat-indicator-request'
              - example:
                  name: My_Indicator
            example:
              name: My_Indicator
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-threat-indicators:
    post:
      tags:
      - Threat Indicator
      summary: ShowThreatIndicators
      description: Showing a list of threat indicators
      operationId: ShowThreatIndicators
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-threat-indicators'
                - 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
              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
      deprecated: false
  /add-threat-layer:
    post:
      tags:
      - Threat Layer
      summary: AddThreatLayer
      description: Add threat layer
      operationId: AddThreatLayer
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-threat-layer-request'
              - example:
                  name: New Layer 1
            example:
              name: New Layer 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-threat-layer:
    post:
      tags:
      - Threat Layer
      summary: ShowThreatLayer
      description: Show threat layer
      operationId: ShowThreatLayer
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-layer-request'
              - example:
                  name: New Layer 1
            example:
              name: New Layer 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-threat-layer:
    post:
      tags:
      - Threat Layer
      summary: SetThreatLayer
      description: Set threat layer
      operationId: SetThreatLayer
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-threat-layer-request'
              - example:
                  name: New Layer 1
                  new-name: New Layer 2
            example:
              name: New Layer 1
              new-name: New Layer 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-threat-layer:
    post:
      tags:
      - Threat Layer
      summary: DeleteThreatLayer
      description: Delete threat layer
      operationId: DeleteThreatLayer
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-threat-layer-request'
              - example:
                  name: New Layer 2
            example:
              name: New Layer 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-threat-layers:
    post:
      tags:
      - Threat Layer
      summary: ShowThreatLayers
      description: Show threat layers
      operationId: ShowThreatLayers
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-threat-layers-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-threat-layers'
                - 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
              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
      deprecated: false
  /show-ips-update-schedule:
    post:
      tags:
      - IPS
      summary: ShowIpsUpdateSchedule
      description: Show IPS update schedule
      operationId: ShowIpsUpdateSchedule
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-ips-update-schedule'
                - example:
                    enabled: true
                    time: 0:00
                    recurrence:
                      pattern: Daily
              example:
                enabled: true
                time: 0:00
                recurrence:
                  pattern: Daily
      deprecated: false
  /set-ips-update-schedule:
    post:
      tags:
      - IPS
      summary: SetIpsUpdateScheduleInterval
      description: Set IPS update schedule (interval basis)
      operationId: SetIpsUpdateScheduleInterval
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-ips-update-schedule-interval-request'
              - example:
                  enabled: true
                  recurrence:
                    pattern: interval
                    minutes: 45
            example:
              enabled: true
              recurrence:
                pattern: interval
                minutes: 45
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-ips-update-schedule-interval'
                - example:
                    enabled: true
                    recurrence:
                      pattern: Interval
                      minutes: 45
              example:
                enabled: true
                recurrence:
                  pattern: Interval
                  minutes: 45
      deprecated: false
  /run-ips-update:
    post:
      tags:
      - IPS
      summary: RunIpsUpdate
      description: Run IPS update
      operationId: RunIpsUpdate
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/run-ips-update'
                - example:
                    task-id: 6b2e5c77-0622-4e7f-a9bf-4e1f21899553
              example:
                task-id: 6b2e5c77-0622-4e7f-a9bf-4e1f21899553
      deprecated: false
  /show-ips-status:
    post:
      tags:
      - IPS
      summary: ShowIpsStatus
      description: Show IPS database status
      operationId: ShowIpsStatus
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-ips-status'
                - 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
              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
      deprecated: false
  /show-ips-protection-extended-attribute:
    post:
      tags:
      - IPS Extended Attributes
      summary: ShowIpsProtectionExtendedAttribute
      description: Show IPS protection extended Attribute
      operationId: ShowIpsProtectionExtendedAttribute
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-ips-protection-extended-attribute-request'
              - example:
                  name: Vulnerability Effect
            example:
              name: Vulnerability Effect
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-ips-protection-extended-attribute'
                - 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
              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
      deprecated: false
  /show-ips-protection-extended-attributes:
    post:
      tags:
      - IPS Extended Attributes
      summary: ShowIpsProtectionExtendedAttributes
      description: Show IPS protection extended Attributes
      operationId: ShowIpsProtectionExtendedAttributes
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-ips-protection-extended-attributes'
                - 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
              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
      deprecated: false
  /run-threat-emulation-file-types-offline-update:
    post:
      tags:
      - Threat Emulation
      summary: RunThreatEmulationFileTypesOfflineUpdate
      description: Updates Threat Emulation file types offline.
      operationId: RunThreatEmulationFileTypesOfflineUpdate
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/run-threat-emulation-file-types-offline-update-request'
              - example:
                  file-path: /tmp/FileTypeUpdate.xml
            example:
              file-path: /tmp/FileTypeUpdate.xml
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/run-threat-emulation-file-types-offline-update'
                - example:
                    message: Update of file types supported by Threat Emulation completed successfully.
              example:
                message: Update of file types supported by Threat Emulation completed successfully.
      deprecated: false
  /verify-policy:
    post:
      tags:
      - Policy
      summary: VerifyPolicy
      description: verify-policy
      operationId: VerifyPolicy
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/verify-policy-request'
              - example:
                  policy-package: standard
            example:
              policy-package: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /install-policy:
    post:
      tags:
      - Policy
      summary: InstallPolicy
      description: install-policy
      operationId: InstallPolicy
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/install-policy-request'
              - example:
                  policy-package: standard
                  access: true
                  threat-prevention: true
                  targets:
                  - corporate-gateway
            example:
              policy-package: standard
              access: true
              threat-prevention: true
              targets:
              - corporate-gateway
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-package:
    post:
      tags:
      - Policy Package
      summary: AddPackage
      description: Add package
      operationId: AddPackage
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-package-request'
              - example:
                  name: New_Standard_Package_1
                  comments: My Comments
                  color: green
                  threat-prevention: false
                  access: true
            example:
              name: New_Standard_Package_1
              comments: My Comments
              color: green
              threat-prevention: false
              access: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/add-package'
                - 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
              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
      deprecated: false
  /show-package:
    post:
      tags:
      - Policy Package
      summary: ShowPackage
      description: show-package
      operationId: ShowPackage
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-package-request'
              - example:
                  name: New_Standard_Package_1
            example:
              name: New_Standard_Package_1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-package:
    post:
      tags:
      - Policy Package
      summary: SetPackage
      description: set-package
      operationId: SetPackage
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-package-request'
              - example:
                  name: Standard
                  access-layers:
                    add:
                    - name: New Access Layer 1
                      position: 1
                  threat-layers:
                    add:
                    - name: New Layer 1
                      position: 2
            example:
              name: Standard
              access-layers:
                add:
                - name: New Access Layer 1
                  position: 1
              threat-layers:
                add:
                - name: New Layer 1
                  position: 2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/set-package'
                - 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
              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
      deprecated: false
  /delete-package:
    post:
      tags:
      - Policy Package
      summary: DeletePackage
      description: delete-package
      operationId: DeletePackage
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-package-request'
              - example:
                  name: New Standard Package 1
            example:
              name: New Standard Package 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-packages:
    post:
      tags:
      - Policy Package
      summary: ShowPackages
      description: show-packages
      operationId: ShowPackages
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-packages-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-domain:
    post:
      tags:
      - Domain
      summary: AddDomain
      description: add-domain
      operationId: AddDomain
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-domain-request'
              - example:
                  name: domain1
                  servers:
                    ip-address: 192.0.2.1
                    name: domain1_ManagementServer_1
                    multi-domain-server: MDM_Server
            example:
              name: domain1
              servers:
                ip-address: 192.0.2.1
                name: domain1_ManagementServer_1
                multi-domain-server: MDM_Server
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-domain:
    post:
      tags:
      - Domain
      summary: ShowDomain
      description: show-domain
      operationId: ShowDomain
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-domain-request'
              - example:
                  name: domain1
            example:
              name: domain1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-domain:
    post:
      tags:
      - Domain
      summary: SetDomain
      description: set-domain
      operationId: SetDomain
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-domain-request'
              - example:
                  name: domain1
                  comments: This is domain1 comment
            example:
              name: domain1
              comments: This is domain1 comment
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-domain:
    post:
      tags:
      - Domain
      summary: DeleteDomain
      description: delete-domain
      operationId: DeleteDomain
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-domain-request'
              - example:
                  name: domain1
            example:
              name: domain1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-domains:
    post:
      tags:
      - Domain
      summary: ShowDomains
      description: show-domains
      operationId: ShowDomains
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-domains-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-global-domain:
    post:
      tags:
      - Global Domain
      summary: ShowGlobalDomain
      description: show-global-domain
      operationId: ShowGlobalDomain
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-global-domain-request'
              - example:
                  name: Global2
            example:
              name: Global2
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-global-domain:
    post:
      tags:
      - Global Domain
      summary: SetGlobalDomain
      description: set-global-domain
      operationId: SetGlobalDomain
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-global-domain-request'
              - example:
                  name: Global2
                  comments: this is my Global domain
            example:
              name: Global2
              comments: this is my Global domain
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-mds:
    post:
      tags:
      - Multi-Domain Server (MDS)
      summary: ShowMds
      description: show-mds
      operationId: ShowMds
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-mds-request'
              - example:
                  name: test_mds1
            example:
              name: test_mds1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-mdss:
    post:
      tags:
      - Multi-Domain Server (MDS)
      summary: ShowMdss
      description: Show all the domains
      operationId: ShowMdss
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-mdss'
                - 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
              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
      deprecated: false
  /show-place-holder:
    post:
      tags:
      - Placeholder
      summary: ShowPlaceHolder
      description: Show rules placeholder in the global policy
      operationId: ShowPlaceHolder
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-place-holder-request'
              - example:
                  uid: 5df27676-83a6-4d38-beaa-0413838a7f85
            example:
              uid: 5df27676-83a6-4d38-beaa-0413838a7f85
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-place-holder'
                - 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
              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
      deprecated: false
  /add-global-assignment:
    post:
      tags:
      - Global Assignment
      summary: AddGlobalAssignment
      description: add-global-assignment
      operationId: AddGlobalAssignment
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-global-assignment-request'
              - example:
                  global-domain: Global
                  dependent-domain: domain2
                  global-access-policy: standard
                  global-threat-prevention-policy: standard
                  manage-protection-actions: true
            example:
              global-domain: Global
              dependent-domain: domain2
              global-access-policy: standard
              global-threat-prevention-policy: standard
              manage-protection-actions: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-global-assignment:
    post:
      tags:
      - Global Assignment
      summary: ShowGlobalAssignment
      description: show-global-assignment
      operationId: ShowGlobalAssignment
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-global-assignment-request'
              - example:
                  global-domain: Global2
                  dependent-domain: domain1
            example:
              global-domain: Global2
              dependent-domain: domain1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-global-assignment:
    post:
      tags:
      - Global Assignment
      summary: SetGlobalAssignment
      description: set-global-assignment
      operationId: SetGlobalAssignment
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-global-assignment-request'
              - example:
                  global-domain: Global2
                  dependent-domain: domain1
                  global-threat-prevention-policy: ''
                  manage-protection-actions: false
            example:
              global-domain: Global2
              dependent-domain: domain1
              global-threat-prevention-policy: ''
              manage-protection-actions: false
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-global-assignment:
    post:
      tags:
      - Global Assignment
      summary: DeleteGlobalAssignment
      description: delete-global-assignment
      operationId: DeleteGlobalAssignment
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-global-assignment-request'
              - example:
                  global-domain: Global2
                  dependent-domain: domain1
            example:
              global-domain: Global2
              dependent-domain: domain1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-global-assignments:
    post:
      tags:
      - Global Assignment
      summary: ShowGlobalAssignments
      description: show-global-assignments
      operationId: ShowGlobalAssignments
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-global-assignments-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /assign-global-assignment:
    post:
      tags:
      - Global Assignment
      summary: AssignGlobalAssignment
      description: assign-global-assignment
      operationId: AssignGlobalAssignment
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/assign-global-assignment-request'
              - example:
                  global-domains: Global2
                  dependent-domains: domain1
            example:
              global-domains: Global2
              dependent-domains: domain1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /where-used:
    post:
      tags:
      - Misc.
      summary: WhereUsed
      description: Searches for direct usage of target object in other objects and rules
      operationId: WhereUsed
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/where-used-request'
              - example:
                  name: Host 1
            example:
              name: Host 1
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/where-used'
                - 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
              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
      deprecated: false
  /show-task:
    post:
      tags:
      - Misc.
      summary: ShowTask
      description: show-task
      operationId: ShowTask
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-task-request'
              - example:
                  task-id: 2eec70e5-78a8-4bdb-9a76-cfb5601d0bcb
            example:
              task-id: 2eec70e5-78a8-4bdb-9a76-cfb5601d0bcb
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /run-script:
    post:
      tags:
      - Misc.
      summary: RunScript
      description: run-script
      operationId: RunScript
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/run-script-request'
              - example:
                  script-name: 'Script Example: List files under / dir'
                  script: ls -l /
                  targets:
                  - corporate-gateway
            example:
              script-name: 'Script Example: List files under / dir'
              script: ls -l /
              targets:
              - corporate-gateway
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-unused-objects:
    post:
      tags:
      - Misc.
      summary: ShowUnusedObjects
      description: Show unused objects
      operationId: ShowUnusedObjects
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/showunusedobjectsrequest'
              - example:
                  offset: 0
                  limit: 50
                  details-level: standard
            example:
              offset: 0
              limit: 50
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /export:
    post:
      tags:
      - Misc.
      summary: Export
      description: export
      operationId: Export
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/exportrequest'
              - example:
                  export-files-by-class: true
            example:
              export-files-by-class: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-changes:
    post:
      tags:
      - Misc.
      summary: ShowChanges between the dates
      description: Request for changes by start and end date. Use the show-task command to check the progress of the task. Output below is the output of the show-task command.
      operationId: ShowChangesbetweenthedates
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-changesbetweenthedatesrequest'
              - example:
                  from-date: 2017-02-01T08:20:50
                  to-date: 2017-02-21
            example:
              from-date: 2017-02-01T08:20:50
              to-date: 2017-02-21
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-changesbetweenthedates'
                - 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
              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
      deprecated: false
  /show-gateways-and-servers:
    post:
      tags:
      - Misc.
      summary: ShowGatewaysAndServers
      description: Shows Gateways & Servers
      operationId: ShowGatewaysAndServers
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-gateways-and-servers-request'
              - example:
                  details-level: full
            example:
              details-level: full
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-gateways-and-servers'
                - 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
              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
      deprecated: false
  /show-objects:
    post:
      tags:
      - Misc.
      summary: ShowObjects of type group
      description: show-objects of type group
      operationId: ShowObjectsoftypegroup
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-objectsoftypegrouprequest'
              - example:
                  limit: 50
                  offset: 0
                  order:
                  - ASC: name
                  type: group
            example:
              limit: 50
              offset: 0
              order:
              - ASC: name
              type: group
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-validations:
    post:
      tags:
      - Misc.
      summary: ShowValidations
      description: Show all validation incidents.
      operationId: ShowValidations
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-validations'
                - 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: []
              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: []
      deprecated: false
  /show-tasks:
    post:
      tags:
      - Misc.
      summary: ShowTasks
      description: Show all successful tasks initiated by administrator admin1, last updated after date 2018-05-23T08:00:00.
      operationId: ShowTasks
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-tasks-request'
              - example:
                  initiator: admin1
                  status: successful
                  from-date: 2018-05-23T08:00:00
            example:
              initiator: admin1
              status: successful
              from-date: 2018-05-23T08:00:00
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-api-versions:
    post:
      tags:
      - Misc.
      summary: ShowApiVersions
      description: show-api-versions
      operationId: ShowApiVersions
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-api-versions'
                - example:
                    current-version: '1.1'
                    supported-versions:
                    - '1'
                    - '1.1'
              example:
                current-version: '1.1'
                supported-versions:
                - '1'
                - '1.1'
      deprecated: false
  /show-object:
    post:
      tags:
      - Misc.
      summary: ShowObject
      description: Show object
      operationId: ShowObject
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-object-request'
              - example:
                  uid: ef82887c-d08f-49a3-a18f-a376be633848
            example:
              uid: ef82887c-d08f-49a3-a18f-a376be633848
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/show-object'
                - 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
              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
      deprecated: false
  /show-commands:
    post:
      tags:
      - Misc.
      summary: ShowCommands
      description: Show all the commands supported by the API server
      operationId: ShowCommands
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /put-file:
    post:
      tags:
      - Misc.
      summary: PutFile
      description: put-file
      operationId: PutFile
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/put-file-request'
              - example:
                  file-path: /home/admin/
                  file-name: vsx_conf
                  file-content: >-
                    vs ip 192.0.2.1

                    vs2 ip 192.0.2.2
                  targets:
                  - corporate-gateway
            example:
              file-path: /home/admin/
              file-name: vsx_conf
              file-content: >-
                vs ip 192.0.2.1

                vs2 ip 192.0.2.2
              targets:
              - corporate-gateway
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /add-administrator:
    post:
      tags:
      - Administrator
      summary: AddAdministrator
      description: add-administrator
      operationId: AddAdministrator
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/add-administrator-request'
              - example:
                  name: admin
                  password: secret
                  must-change-password: false
                  email: admin@gmail.com
                  phone-number: 1800-800-800
                  authentication-method: INTERNAL_PASSWORD
                  permissions-profile: read write all
            example:
              name: admin
              password: secret
              must-change-password: false
              email: admin@gmail.com
              phone-number: 1800-800-800
              authentication-method: INTERNAL_PASSWORD
              permissions-profile: read write all
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-administrator:
    post:
      tags:
      - Administrator
      summary: ShowAdministrator
      description: show-administrator
      operationId: ShowAdministrator
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-administrator-request'
              - example:
                  name: admin
            example:
              name: admin
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-administrator:
    post:
      tags:
      - Administrator
      summary: SetAdministrator
      description: set-administrator
      operationId: SetAdministrator
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-administrator-request'
              - example:
                  name: admin
                  password: bew secret
                  permissions-profile: read only profile
            example:
              name: admin
              password: bew secret
              permissions-profile: read only profile
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /delete-administrator:
    post:
      tags:
      - Administrator
      summary: DeleteAdministrator
      description: delete-administrator
      operationId: DeleteAdministrator
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/delete-administrator-request'
              - example:
                  name: admin
            example:
              name: admin
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-administrators:
    post:
      tags:
      - Administrator
      summary: ShowAdministrators
      description: show-administrators
      operationId: ShowAdministrators
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/show-administrators-request'
              - example:
                  limit: 50
                  offset: 0
                  details-level: standard
            example:
              limit: 50
              offset: 0
              details-level: standard
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /unlock-administrator:
    post:
      tags:
      - Administrator
      summary: UnlockAdministrator
      description: Unlock administrator
      operationId: UnlockAdministrator
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/unlock-administrator-request'
              - example:
                  name: aa
            example:
              name: aa
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /show-api-settings:
    post:
      tags:
      - API Settings
      summary: ShowApiSettings
      description: show-api-settings
      operationId: ShowApiSettings
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          text/plain:
            schema:
              type: object
              example: {}
            example: {}
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
  /set-api-settings:
    post:
      tags:
      - API Settings
      summary: SetApiSettings
      description: Set API Settings
      operationId: SetApiSettings
      parameters:
      - name: X-chkp-sid
        in: header
        description: ''
        required: true
        style: simple
        schema:
          type: string
          example: '{{session}}'
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/set-api-settings-request'
              - example:
                  accepted-api-calls-from: All IP addresses
            example:
              accepted-api-calls-from: All IP addresses
        required: true
      responses:
        '200':
          description: ''
          headers: {}
          content: {}
      deprecated: false
components:
  schemas:
    loginrequest:
      title: loginrequest
      required:
      - user
      - password
      type: object
      properties:
        user:
          type: string
        password:
          type: string
      example:
        user: aa
        password: aaaa
    login:
      title: login
      required:
      - sid
      - url
      - uid
      - session-timeout
      - last-login-was-at
      type: object
      properties:
        sid:
          type: string
        url:
          type: string
        uid:
          type: string
        session-timeout:
          type: integer
          format: int32
        last-login-was-at:
          allOf:
          - $ref: '#/components/schemas/LastLoginWasAt'
          - example:
              posix: 1430032266851
              iso-8601: 2015-04-26T10:11+0300
      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
    LastLoginWasAt:
      title: LastLoginWasAt
      required:
      - posix
      - iso-8601
      type: object
      properties:
        posix:
          type: integer
          format: int64
        iso-8601:
          type: string
      example:
        posix: 1430032266851
        iso-8601: 2015-04-26T10:11+0300
    logindomainrequest:
      title: logindomainrequest
      required:
      - user
      - password
      - domain
      type: object
      properties:
        user:
          type: string
        password:
          type: string
        domain:
          type: string
      example:
        user: aa
        password: aaaa
        domain: Domain Name
    logindomain:
      title: logindomain
      required:
      - sid
      - url
      - uid
      - session-timeout
      - last-login-was-at
      type: object
      properties:
        sid:
          type: string
        url:
          type: string
        uid:
          type: string
        session-timeout:
          type: integer
          format: int32
        last-login-was-at:
          allOf:
          - $ref: '#/components/schemas/LastLoginWasAt'
          - example:
              posix: 1430032266851
              iso-8601: 2015-04-26T10:11+0300
      example:
        sid: 3MgL4mBU2NfzuFjl5RxlgtRX6Hc8ZYyIR0FP_3RYHAU
        url: https://192.0.2.1:443/web_api
        uid: 7586af28-7375-4e19-a052-cb083d918dd0
        session-timeout: 600
        last-login-was-at:
          posix: 1430032266851
          iso-8601: 2015-04-26T10:11+0300
    logintolastpublishedsessionrequest:
      title: logintolastpublishedsessionrequest
      required:
      - user
      - password
      - enter-last-published-session
      type: object
      properties:
        user:
          type: string
        password:
          type: string
        enter-last-published-session:
          type: boolean
      example:
        user: aa
        password: aaaa
        enter-last-published-session: true
    logintolastpublishedsession:
      title: logintolastpublishedsession
      required:
      - uid
      - sid
      - url
      - session-timeout
      - last-login-was-at
      - api-server-version
      type: object
      properties:
        uid:
          type: string
        sid:
          type: string
        url:
          type: string
        session-timeout:
          type: integer
          format: int32
        last-login-was-at:
          allOf:
          - $ref: '#/components/schemas/LastLoginWasAt'
          - example:
              posix: 1430032266851
              iso-8601: 2015-04-26T10:11+0300
        api-server-version:
          type: string
      example:
        uid: 0bd70128-4e5b-414b-9c98-fa00264507d2
        sid: a0-bI7gXp1IBVMDFIXkrheSDEbQOhqV3_XF2qRaY5ac
        url: https://172.23.78.57:4434/web_api
        session-timeout: 600
        last-login-was-at:
          posix: 1469005943038
          iso-8601: 2016-07-20T12:12+0300
        api-server-version: '1.1'
    logintolastsessionrequest:
      title: logintolastsessionrequest
      required:
      - user
      - password
      - continue-last-session
      type: object
      properties:
        user:
          type: string
        password:
          type: string
        continue-last-session:
          type: boolean
      example:
        user: aa
        password: aaaa
        continue-last-session: true
    logintolastsession:
      title: logintolastsession
      required:
      - sid
      - url
      - uid
      - session-timeout
      - last-login-was-at
      type: object
      properties:
        sid:
          type: string
        url:
          type: string
        uid:
          type: string
        session-timeout:
          type: integer
          format: int32
        last-login-was-at:
          allOf:
          - $ref: '#/components/schemas/LastLoginWasAt'
          - example:
              posix: 1430032266851
              iso-8601: 2015-04-26T10:11+0300
      example:
        sid: tdv_CAG-Lm04wSsMxO43NQhsKipw9MT-l-YFG9Z79AA
        url: https://192.0.2.1:443/web_api
        uid: 040cdfe8-e967-407c-af34-2c69884f8e9f
        session-timeout: 600
        last-login-was-at:
          posix: 1430032266851
          iso-8601: 2015-04-26T10:11+0300
    logintosystemdomainrequest:
      title: logintosystemdomainrequest
      required:
      - user
      - password
      - domain
      type: object
      properties:
        user:
          type: string
        password:
          type: string
        domain:
          type: string
      example:
        user: aa
        password: aaaa
        domain: System Data
    logintosystemdomain:
      title: logintosystemdomain
      required:
      - sid
      - url
      - uid
      - session-timeout
      - last-login-was-at
      type: object
      properties:
        sid:
          type: string
        url:
          type: string
        uid:
          type: string
        session-timeout:
          type: integer
          format: int32
        last-login-was-at:
          allOf:
          - $ref: '#/components/schemas/LastLoginWasAt'
          - example:
              posix: 1430032266851
              iso-8601: 2015-04-26T10:11+0300
      example:
        sid: FGUjxwAVtaHZewYzap4IveDp1STl50iAdxuR3v6rkRo
        url: https://192.0.2.1:443/web_api
        uid: a50785cc-db67-4149-8d61-eb4bef1c4348
        session-timeout: 600
        last-login-was-at:
          posix: 1430032266851
          iso-8601: 2015-04-26T10:11+0300
    publish:
      title: publish
      required:
      - task-id
      type: object
      properties:
        task-id:
          type: string
      example:
        task-id: 01234567-89ab-cdef-a930-8c37a59972b3
    discard:
      title: discard
      required:
      - message
      - number-of-discarded-changes
      type: object
      properties:
        message:
          type: string
        number-of-discarded-changes:
          type: integer
          format: int32
      example:
        message: OK
        number-of-discarded-changes: 0
    logout:
      title: logout
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    disconnectrequest:
      title: disconnectrequest
      required:
      - uid
      type: object
      properties:
        uid:
          type: string
      example:
        uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
    disconnect:
      title: disconnect
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    keepalive:
      title: keepalive
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    set-session-request:
      title: set-session-request
      required:
      - description
      type: object
      properties:
        description:
          type: string
      example:
        description: Session to work on ticket number CR00323665
    continue-session-in-smartconsole-request:
      title: continue-session-in-smartconsole-request
      required:
      - uid
      type: object
      properties:
        uid:
          type: string
      example:
        uid: bae159e7-d3ef-44ab-a8a8-ea3ce7ee25a5
    continue-session-in-smartconsole:
      title: continue-session-in-smartconsole
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    purge-published-sessionsbycountrequest:
      title: purge-published-sessionsbycountrequest
      required:
      - number-of-sessions-to-preserve
      type: object
      properties:
        number-of-sessions-to-preserve:
          type: string
      example:
        number-of-sessions-to-preserve: '10'
    purge-published-sessionsbydaterequest:
      title: purge-published-sessionsbydaterequest
      required:
      - preserve-to-date
      type: object
      properties:
        preserve-to-date:
          type: string
      example:
        preserve-to-date: 2018-07-29T12:00:00
    switch-session-request:
      title: switch-session-request
      required:
      - uid
      type: object
      properties:
        uid:
          type: string
      example:
        uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
    assign-session-request:
      title: assign-session-request
      required:
      - uid
      type: object
      properties:
        uid:
          type: string
      example:
        uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
    take-over-session-request:
      title: take-over-session-request
      required:
      - uid
      - disconnect-active-session
      type: object
      properties:
        uid:
          type: string
        disconnect-active-session:
          type: boolean
      example:
        uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
        disconnect-active-session: true
    show-sessions-request:
      title: show-sessions-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-sessions:
      title: show-sessions
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            type: string
          description: ''
      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
    set-login-message-request:
      title: set-login-message-request
      required:
      - show-message
      - header
      - message
      - warning
      type: object
      properties:
        show-message:
          type: string
        header:
          type: string
        message:
          type: string
        warning:
          type: string
      example:
        show-message: 'true'
        header: Warning
        message: Unauthorized access of this server is prohibited and punished by law
        warning: 'true'
    add-host-request:
      title: add-host-request
      required:
      - name
      - ip-address
      type: object
      properties:
        name:
          type: string
        ip-address:
          type: string
      example:
        name: New Host 1
        ip-address: 192.0.2.1
    add-host:
      title: add-host
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - groups
      - nat-settings
      - ipv4-address
      - ipv6-address
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        nat-settings:
          allOf:
          - $ref: '#/components/schemas/NatSettings'
          - example:
              auto-rule: false
        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: ''
    Folder:
      title: Folder
      required:
      - uid
      - name
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
      example:
        uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
        name: /Global Objects
    Domain:
      title: Domain
      required:
      - domain-type
      - uid
      - name
      type: object
      properties:
        domain-type:
          type: string
        uid:
          type: string
        name:
          type: string
      example:
        domain-type: local domain
        uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
        name: SMC User
    MetaInfo:
      title: MetaInfo
      required:
      - lock
      - validation-state
      - read-only
      - last-modify-time
      - last-modifier
      - creation-time
      - creator
      type: object
      properties:
        lock:
          type: string
        validation-state:
          type: string
        read-only:
          type: boolean
        last-modify-time:
          allOf:
          - $ref: '#/components/schemas/LastModifyTime'
          - example:
              posix: 1429440561055
              iso-8601: 2015-04-19T13:49+0300
        last-modifier:
          type: string
        creation-time:
          allOf:
          - $ref: '#/components/schemas/CreationTime'
          - example:
              posix: 1429440561055
              iso-8601: 2015-04-19T13:49+0300
        creator:
          type: string
      example:
        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
    LastModifyTime:
      title: LastModifyTime
      required:
      - posix
      - iso-8601
      type: object
      properties:
        posix:
          type: integer
          format: int64
        iso-8601:
          type: string
      example:
        posix: 1429440561055
        iso-8601: 2015-04-19T13:49+0300
    CreationTime:
      title: CreationTime
      required:
      - posix
      - iso-8601
      type: object
      properties:
        posix:
          type: integer
          format: int64
        iso-8601:
          type: string
      example:
        posix: 1429440561055
        iso-8601: 2015-04-19T13:49+0300
    NatSettings:
      title: NatSettings
      required:
      - auto-rule
      type: object
      properties:
        auto-rule:
          type: boolean
      example:
        auto-rule: false
    add-hostwithgrouprequest:
      title: add-hostwithgrouprequest
      required:
      - name
      - ip-address
      - groups
      type: object
      properties:
        name:
          type: string
        ip-address:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Host 2
        ip-address: 192.0.2.2
        groups:
        - New Group 1
        - New Group 2
    add-hostwithgroup:
      title: add-hostwithgroup
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - groups
      - nat-settings
      - ipv4-address
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group'
          description: ''
        nat-settings:
          allOf:
          - $ref: '#/components/schemas/NatSettings'
          - example:
              auto-rule: false
        ipv4-address:
          type: string
      example:
        uid: 00ff73b3-c1d5-46c2-97a1-0540c82094c2
        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: 1435470679142
            iso-8601: 2015-06-28T08:51+0300
          last-modifier: aa
          creation-time:
            posix: 1435470679142
            iso-8601: 2015-06-28T08:51+0300
          creator: aa
        tags: []
        name: New Host 2
        comments: ''
        color: black
        icon: Objects/host
        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
        nat-settings:
          auto-rule: false
        ipv4-address: 192.0.2.1
    Group:
      title: Group
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    add-host-with-NAT-hide-Request:
      title: add-host-with-NAT-hide-Request
      required:
      - name
      - ip-address
      - nat-settings
      type: object
      properties:
        name:
          type: string
        ip-address:
          type: string
        nat-settings:
          allOf:
          - $ref: '#/components/schemas/NatSettings2'
          - example:
              auto-rule: true
              method: hide
              hide-behind: ip-address
              ipv4-address: 192.0.2.1
              ipv6-address: FE80::0202:B3FF:FE1E:8329
              install-on: All
      example:
        name: New Host 3
        ip-address: 192.0.2.162
        nat-settings:
          auto-rule: true
          method: hide
          hide-behind: ip-address
          ipv4-address: 192.0.2.1
          ipv6-address: FE80::0202:B3FF:FE1E:8329
          install-on: All
    NatSettings2:
      title: NatSettings2
      required:
      - auto-rule
      - method
      - hide-behind
      - ipv4-address
      - ipv6-address
      - install-on
      type: object
      properties:
        auto-rule:
          type: boolean
        method:
          type: string
        hide-behind:
          type: string
        ipv4-address:
          type: string
        ipv6-address:
          type: string
        install-on:
          type: string
      example:
        auto-rule: true
        method: hide
        hide-behind: ip-address
        ipv4-address: 192.0.2.1
        ipv6-address: FE80::0202:B3FF:FE1E:8329
        install-on: All
    add-host-with-NAT-hide:
      title: add-host-with-NAT-hide
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - groups
      - nat-settings
      - ipv4-address
      - ipv6-address
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        nat-settings:
          allOf:
          - $ref: '#/components/schemas/NatSettings2'
          - example:
              auto-rule: true
              method: hide
              hide-behind: ip-address
              ipv4-address: 192.0.2.1
              ipv6-address: FE80::0202:B3FF:FE1E:8329
              install-on: All
        ipv4-address:
          type: string
        ipv6-address:
          type: string
      example:
        uid: 40048b5b-b64c-49ce-b8c7-267af43a0f9e
        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: 1429440630485
            iso-8601: 2015-04-19T13:50+0300
          last-modifier: aa
          creation-time:
            posix: 1429440630485
            iso-8601: 2015-04-19T13:50+0300
          creator: aa
        tags: []
        name: New Host 7
        comments: ''
        color: black
        icon: Objects/host
        groups: []
        nat-settings:
          auto-rule: true
          ipv4-address: 192.0.2.1
          ipv6-address: FE80::0202:B3FF:FE1E:8329
          hide-behind: ip-address
          method: hide
          install-on: All
        ipv4-address: 192.0.2.162
        ipv6-address: ''
    show-host-request:
      title: show-host-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Host 1
    set-host-request:
      title: set-host-request
      required:
      - name
      - ipv4-address
      - color
      type: object
      properties:
        name:
          type: string
        ipv4-address:
          type: string
        color:
          type: string
      example:
        name: New Host 1
        ipv4-address: 192.0.2.2
        color: green
    delete-host-request:
      title: delete-host-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Host 1
    show-hosts-request:
      title: show-hosts-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-network-request:
      title: add-network-request
      required:
      - name
      - subnet
      - subnet-mask
      type: object
      properties:
        name:
          type: string
        subnet:
          type: string
        subnet-mask:
          type: string
      example:
        name: New Network 1
        subnet: 192.0.2.0
        subnet-mask: 255.255.255.0
    add-network-with-NAT-static-Request:
      title: add-network-with-NAT-static-Request
      required:
      - name
      - subnet
      - subnet-mask
      - nat-settings
      type: object
      properties:
        name:
          type: string
        subnet:
          type: string
        subnet-mask:
          type: string
        nat-settings:
          allOf:
          - $ref: '#/components/schemas/NatSettings4'
          - example:
              auto-rule: true
              method: static
              hide-behind: ip-address
              ip-address: 192.0.2.1
              install-on: All
      example:
        name: New Network 3
        subnet: 192.0.2.1
        subnet-mask: 255.255.255.0
        nat-settings:
          auto-rule: true
          method: static
          hide-behind: ip-address
          ip-address: 192.0.2.1
          install-on: All
    NatSettings4:
      title: NatSettings4
      required:
      - auto-rule
      - method
      - hide-behind
      - ip-address
      - install-on
      type: object
      properties:
        auto-rule:
          type: boolean
        method:
          type: string
        hide-behind:
          type: string
        ip-address:
          type: string
        install-on:
          type: string
      example:
        auto-rule: true
        method: static
        hide-behind: ip-address
        ip-address: 192.0.2.1
        install-on: All
    show-network-request:
      title: show-network-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Network 1
    set-network-request:
      title: set-network-request
      required:
      - name
      - new-name
      - color
      - subnet
      - mask-length
      - groups
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        color:
          type: string
        subnet:
          type: string
        mask-length:
          type: integer
          format: int32
        groups:
          type: string
      example:
        name: New Network 1
        new-name: New Network 2
        color: green
        subnet: 192.0.0.0
        mask-length: 16
        groups: New Group 1
    delete-network-request:
      title: delete-network-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Network 2
    show-networks-request:
      title: show-networks-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-wildcard-request:
      title: add-wildcard-request
      required:
      - name
      - ipv4-address
      - ipv4-mask-wildcard
      type: object
      properties:
        name:
          type: string
        ipv4-address:
          type: string
        ipv4-mask-wildcard:
          type: string
      example:
        name: New Wildcard 1
        ipv4-address: 192.168.2.1
        ipv4-mask-wildcard: 0.0.0.128
    add-wildcardwithgrouprequest:
      title: add-wildcardwithgrouprequest
      required:
      - name
      - ipv4-address
      - ipv4-mask-wildcard
      - groups
      type: object
      properties:
        name:
          type: string
        ipv4-address:
          type: string
        ipv4-mask-wildcard:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Wildcard 2
        ipv4-address: 192.0.2.7
        ipv4-mask-wildcard: 0.0.128.128
        groups:
        - New Group 1
        - New Group 2
    show-wildcard-request:
      title: show-wildcard-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Wildcard 1
    set-wildcard-request:
      title: set-wildcard-request
      required:
      - name
      - new-name
      - color
      - ipv6-address
      - ipv6-mask-wildcard
      - groups
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        color:
          type: string
        ipv6-address:
          type: string
        ipv6-mask-wildcard:
          type: string
        groups:
          type: string
      example:
        name: New Wildcard 1
        new-name: New Wildcard 3
        color: green
        ipv6-address: 2001:db8::1111
        ipv6-mask-wildcard: ffff:ffff::f0f0
        groups: New Group 1
    delete-wildcard-request:
      title: delete-wildcard-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Wildcard 1
    show-wildcards-request:
      title: show-wildcards-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-groupwithgrouprequest:
      title: add-groupwithgrouprequest
      required:
      - name
      - members
      - groups
      type: object
      properties:
        name:
          type: string
        members:
          type: array
          items:
            type: string
          description: ''
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Group 5
        members:
        - New Host 1
        - My Test Host 3
        groups:
        - New Group 1
        - New Group 2
    add-groupwithgroup:
      title: add-groupwithgroup
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - groups
      - members
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group'
          description: ''
        members:
          type: array
          items:
            $ref: '#/components/schemas/Member'
          description: ''
      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
    Member:
      title: Member
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    add-groupwithmultiplemembersrequest:
      title: add-groupwithmultiplemembersrequest
      required:
      - name
      - members
      type: object
      properties:
        name:
          type: string
        members:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Group 4
        members:
        - New Host 1
        - My Test Host 3
    add-groupwithmultiplemembers:
      title: add-groupwithmultiplemembers
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - groups
      - members
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        members:
          type: array
          items:
            $ref: '#/components/schemas/Member'
          description: ''
      example:
        uid: 3417b105-b1bb-4088-8106-2fff89ea47b1
        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: 1435472184133
            iso-8601: 2015-06-28T09:16+0300
          last-modifier: aa
          creation-time:
            posix: 1435472184133
            iso-8601: 2015-06-28T09:16+0300
          creator: aa
        tags: []
        name: New Group 4
        comments: ''
        color: black
        icon: General/group
        groups: []
        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: My Test Host 3
          uid: 56e38c35-af6b-4310-9c8c-4f128e61ef1e
        - 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
    add-groupwithsinglememberrequest:
      title: add-groupwithsinglememberrequest
      required:
      - name
      - members
      type: object
      properties:
        name:
          type: string
        members:
          type: string
      example:
        name: New Group 1
        members: New Host 1
    add-groupwithsinglemember:
      title: add-groupwithsinglemember
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - groups
      - members
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        members:
          type: array
          items:
            $ref: '#/components/schemas/Member'
          description: ''
      example:
        uid: 20c3aec0-cd48-4223-a118-b0b225a91b78
        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: 1429440654806
            iso-8601: 2015-04-19T13:50+0300
          last-modifier: aa
          creation-time:
            posix: 1429440654806
            iso-8601: 2015-04-19T13:50+0300
          creator: aa
        tags: []
        name: New Group 2
        comments: ''
        color: black
        icon: General/group
        groups: []
        members:
        - folder:
            uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
            name: /Global Objects
          domain:
            domain-type: local domain
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
          type: host
          name: New Host 1
          uid: b1dab55f-4a1e-4776-887f-ed6d7079bc97
    show-group-request:
      title: show-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: Demo_Group
    show-groupasrangesrequest:
      title: show-groupasrangesrequest
      required:
      - name
      - show-as-ranges
      type: object
      properties:
        name:
          type: string
        show-as-ranges:
          type: string
      example:
        name: Demo_Group
        show-as-ranges: 'true'
    show-groupasranges:
      title: show-groupasranges
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - ranges
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        ranges:
          allOf:
          - $ref: '#/components/schemas/Ranges'
          - example:
              ipv4:
              - start: 10.10.14.1
                end: 10.10.14.1
              - start: 10.10.10.0
                end: 10.10.10.255
              ipv6: []
              others: []
              excluded-others: []
      example:
        uid: f4f16175-00ba-4478-9439-a2181d96c446
        name: Demo_Group
        type: group
        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: 1528267722225
            iso-8601: 2018-06-06T09:48+0300
          last-modifier: aa
          creation-time:
            posix: 1528267722225
            iso-8601: 2018-06-06T09:48+0300
          creator: aa
        tags: []
        read-only: false
        comments: ''
        color: black
        icon: General/group
        groups: []
        ranges:
          ipv4:
          - start: 10.10.14.1
            end: 10.10.14.1
          - start: 10.10.10.0
            end: 10.10.10.255
          ipv6: []
          others: []
          excluded-others: []
    MetaInfo6:
      title: MetaInfo6
      required:
      - lock
      - validation-state
      - last-modify-time
      - last-modifier
      - creation-time
      - creator
      type: object
      properties:
        lock:
          type: string
        validation-state:
          type: string
        last-modify-time:
          allOf:
          - $ref: '#/components/schemas/LastModifyTime'
          - example:
              posix: 1429440561055
              iso-8601: 2015-04-19T13:49+0300
        last-modifier:
          type: string
        creation-time:
          allOf:
          - $ref: '#/components/schemas/CreationTime'
          - example:
              posix: 1429440561055
              iso-8601: 2015-04-19T13:49+0300
        creator:
          type: string
      example:
        lock: locked by current session
        validation-state: ok
        last-modify-time:
          posix: 1528267722225
          iso-8601: 2018-06-06T09:48+0300
        last-modifier: aa
        creation-time:
          posix: 1528267722225
          iso-8601: 2018-06-06T09:48+0300
        creator: aa
    Ranges:
      title: Ranges
      required:
      - ipv4
      - ipv6
      - others
      - excluded-others
      type: object
      properties:
        ipv4:
          type: array
          items:
            $ref: '#/components/schemas/Ipv4'
          description: ''
        ipv6:
          type: array
          items:
            type: string
          description: ''
        others:
          type: array
          items:
            type: string
          description: ''
        excluded-others:
          type: array
          items:
            type: string
          description: ''
      example:
        ipv4:
        - start: 10.10.14.1
          end: 10.10.14.1
        - start: 10.10.10.0
          end: 10.10.10.255
        ipv6: []
        others: []
        excluded-others: []
    Ipv4:
      title: Ipv4
      required:
      - start
      - end
      type: object
      properties:
        start:
          type: string
        end:
          type: string
      example:
        start: 10.10.14.1
        end: 10.10.14.1
    set-group-request:
      title: set-group-request
      required:
      - name
      - members
      - groups
      type: object
      properties:
        name:
          type: string
        members:
          allOf:
          - $ref: '#/components/schemas/Members'
          - example:
              add: New Host 2
        groups:
          type: string
      example:
        name: New Group 1
        members:
          add: New Host 2
        groups: New Group 2
    Members:
      title: Members
      required:
      - add
      type: object
      properties:
        add:
          type: string
      example:
        add: New Host 2
    delete-group-request:
      title: delete-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Group 1
    show-groups-request:
      title: show-groups-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-groupsasrangesrequest:
      title: show-groupsasrangesrequest
      required:
      - limit
      - offset
      - details-level
      - show-as-ranges
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
        show-as-ranges:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: full
        show-as-ranges: 'true'
    show-groupsasranges:
      title: show-groupsasranges
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object'
          description: ''
      example:
        from: 1
        to: 1
        total: 1
        objects:
        - uid: f4f16175-00ba-4478-9439-a2181d96c446
          name: Demo_Group
          type: group
          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: 1528267848679
              iso-8601: 2018-06-06T09:50+0300
            last-modifier: aa
            creation-time:
              posix: 1528267722225
              iso-8601: 2018-06-06T09:48+0300
            creator: aa
          tags: []
          read-only: false
          comments: ''
          color: black
          icon: General/group
          groups: []
          ranges:
            ipv4:
            - start: 10.10.10.0
              end: 10.10.10.255
            - start: 10.10.14.1
              end: 10.10.14.1
            ipv6: []
            others: []
            excluded-others: []
    Object:
      title: Object
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - ranges
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        ranges:
          allOf:
          - $ref: '#/components/schemas/Ranges'
          - example:
              ipv4:
              - start: 10.10.14.1
                end: 10.10.14.1
              - start: 10.10.10.0
                end: 10.10.10.255
              ipv6: []
              others: []
              excluded-others: []
      example:
        uid: f4f16175-00ba-4478-9439-a2181d96c446
        name: Demo_Group
        type: group
        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: 1528267848679
            iso-8601: 2018-06-06T09:50+0300
          last-modifier: aa
          creation-time:
            posix: 1528267722225
            iso-8601: 2018-06-06T09:48+0300
          creator: aa
        tags: []
        read-only: false
        comments: ''
        color: black
        icon: General/group
        groups: []
        ranges:
          ipv4:
          - start: 10.10.10.0
            end: 10.10.10.255
          - start: 10.10.14.1
            end: 10.10.14.1
          ipv6: []
          others: []
          excluded-others: []
    add-address-range-request:
      title: add-address-range-request
      required:
      - name
      - ip-address-first
      - ip-address-last
      type: object
      properties:
        name:
          type: string
        ip-address-first:
          type: string
        ip-address-last:
          type: string
      example:
        name: New Address Range 1
        ip-address-first: 192.0.2.1
        ip-address-last: 192.0.2.10
    add-address-rangewithgrouprequest:
      title: add-address-rangewithgrouprequest
      required:
      - name
      - ip-address-first
      - ip-address-last
      - groups
      type: object
      properties:
        name:
          type: string
        ip-address-first:
          type: string
        ip-address-last:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Address Range 4
        ip-address-first: 192.0.2.1
        ip-address-last: 192.0.2.10
        groups:
        - New Group 1
        - New Group 2
    add-address-rangewithgroup:
      title: add-address-rangewithgroup
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - groups
      - nat-settings
      - ipv4-address-first
      - ipv4-address-last
      - ipv6-address-first
      - ipv6-address-last
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group'
          description: ''
        nat-settings:
          allOf:
          - $ref: '#/components/schemas/NatSettings'
          - example:
              auto-rule: false
        ipv4-address-first:
          type: string
        ipv4-address-last:
          type: string
        ipv6-address-first:
          type: string
        ipv6-address-last:
          type: string
      example:
        uid: 196e93a9-b90b-4ab1-baa6-124e7289aa20
        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: 1435470754504
            iso-8601: 2015-06-28T08:52+0300
          last-modifier: aa
          creation-time:
            posix: 1435470754504
            iso-8601: 2015-06-28T08:52+0300
          creator: aa
        tags: []
        name: New Address Range 4
        comments: ''
        color: black
        icon: Objects/ip
        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
        nat-settings:
          auto-rule: false
        ipv4-address-first: 192.0.2.1
        ipv4-address-last: 192.0.2.10
        ipv6-address-first: ''
        ipv6-address-last: ''
    show-address-range-request:
      title: show-address-range-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Address Range 1
    set-address-range-request:
      title: set-address-range-request
      required:
      - name
      - new-name
      - color
      - ip-address-first
      - ip-address-last
      - groups
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        color:
          type: string
        ip-address-first:
          type: string
        ip-address-last:
          type: string
        groups:
          type: string
      example:
        name: New Address Range 1
        new-name: New Address Range 2
        color: green
        ip-address-first: 192.0.2.1
        ip-address-last: 192.0.2.1
        groups: New Group 1
    delete-address-range-request:
      title: delete-address-range-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Address Range 2
    show-address-ranges-request:
      title: show-address-ranges-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-multicast-address-range-ip-range-request:
      title: add-multicast-address-range-ip-range-request
      required:
      - name
      - ip-address-first
      - ip-address-last
      type: object
      properties:
        name:
          type: string
        ip-address-first:
          type: string
        ip-address-last:
          type: string
      example:
        name: New Multicast Address Range
        ip-address-first: 224.0.0.1
        ip-address-last: 224.0.0.4
    add-multicast-address-range-ip-range:
      title: add-multicast-address-range-ip-range
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - ipv4-address-first
      - ipv4-address-last
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        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
    add-multicast-address-range-single-ip-request:
      title: add-multicast-address-range-single-ip-request
      required:
      - name
      - ip-address
      type: object
      properties:
        name:
          type: string
        ip-address:
          type: string
      example:
        name: New Multicast Address Range 2
        ip-address: 224.0.0.19
    add-multicast-address-range-single-ip:
      title: add-multicast-address-range-single-ip
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - ipv4-address-first
      - ipv4-address-last
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        ipv4-address-first:
          type: string
        ipv4-address-last:
          type: string
      example:
        uid: 4876c0f0-95a8-43b7-8749-e0a3ade78ae6
        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: unlocked
          validation-state: ok
          last-modify-time:
            posix: 1483966323491
            iso-8601: 2017-01-09T14:52+0200
          last-modifier: aa
          creation-time:
            posix: 1483966323491
            iso-8601: 2017-01-09T14:52+0200
          creator: aa
        tags: []
        read-only: true
        comments: ''
        color: black
        icon: Objects/ip
        groups: []
        ipv4-address-first: 224.0.0.19
        ipv4-address-last: 224.0.0.19
    show-multicast-address-range-request:
      title: show-multicast-address-range-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Multicast Address Range
    show-multicast-address-range:
      title: show-multicast-address-range
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - ipv4-address-first
      - ipv4-address-last
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        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
    set-multicast-address-range-request:
      title: set-multicast-address-range-request
      required:
      - name
      - ip-address-first
      - ip-address-last
      type: object
      properties:
        name:
          type: string
        ip-address-first:
          type: string
        ip-address-last:
          type: string
      example:
        name: New Multicast Address Range
        ip-address-first: 224.0.0.7
        ip-address-last: 224.0.0.10
    set-multicast-address-range:
      title: set-multicast-address-range
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - ipv4-address-first
      - ipv4-address-last
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        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
    delete-multicast-address-range-request:
      title: delete-multicast-address-range-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Multicast Address Range
    delete-multicast-address-range:
      title: delete-multicast-address-range
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-multicast-address-ranges-request:
      title: show-multicast-address-ranges-request
      required:
      - details-level
      type: object
      properties:
        details-level:
          type: string
      example:
        details-level: full
    show-multicast-address-ranges:
      title: show-multicast-address-ranges
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object1'
          description: ''
      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
    Object1:
      title: Object1
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - ipv4-address-first
      - ipv4-address-last
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        ipv4-address-first:
          type: string
        ipv4-address-last:
          type: string
      example:
        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
    add-group-with-exclusion-request:
      title: add-group-with-exclusion-request
      required:
      - name
      - include
      - except
      type: object
      properties:
        name:
          type: string
        include:
          type: string
        except:
          type: string
      example:
        name: Group with exclusion
        include: New Group 1
        except: New Group 2
    add-group-with-exclusionaddtogrouprequest:
      title: add-group-with-exclusionaddtogrouprequest
      required:
      - name
      - include
      - except
      - groups
      type: object
      properties:
        name:
          type: string
        include:
          type: string
        except:
          type: string
        groups:
          type: string
      example:
        name: Group with exclusion
        include: New Group 1
        except: New Group 2
        groups: New Group 3
    show-group-with-exclusion-request:
      title: show-group-with-exclusion-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: Group with exclusion
    show-group-with-exclusionasrangesrequest:
      title: show-group-with-exclusionasrangesrequest
      required:
      - name
      - show-as-ranges
      type: object
      properties:
        name:
          type: string
        show-as-ranges:
          type: string
      example:
        name: DemoGroupWithExclusion
        show-as-ranges: 'true'
    show-group-with-exclusionasranges:
      title: show-group-with-exclusionasranges
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - ranges
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        ranges:
          allOf:
          - $ref: '#/components/schemas/Ranges'
          - example:
              ipv4:
              - start: 10.10.14.1
                end: 10.10.14.1
              - start: 10.10.10.0
                end: 10.10.10.255
              ipv6: []
              others: []
              excluded-others: []
      example:
        uid: dce451da-c9c7-46a9-bdb5-8fc953a6f172
        name: DemoGroupWithExclusion
        type: group-with-exclusion
        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: 1528268215283
            iso-8601: 2018-06-06T09:56+0300
          last-modifier: aa
          creation-time:
            posix: 1528268215283
            iso-8601: 2018-06-06T09:56+0300
          creator: aa
        tags: []
        read-only: false
        comments: ''
        color: black
        icon: General/group
        ranges:
          ipv4:
          - start: 10.10.10.0
            end: 10.10.10.127
          - start: 10.10.14.1
            end: 10.10.14.1
          ipv6: []
          others: []
          excluded-others: []
    set-group-with-exclusion-request:
      title: set-group-with-exclusion-request
      required:
      - name
      - include
      - except
      type: object
      properties:
        name:
          type: string
        include:
          type: string
        except:
          type: string
      example:
        name: Group with exclusion
        include: New Group 2
        except: New Group 1
    set-group-with-exclusionaddtogrouprequest:
      title: set-group-with-exclusionaddtogrouprequest
      required:
      - name
      - groups
      type: object
      properties:
        name:
          type: string
        groups:
          type: string
      example:
        name: Group with exclusion
        groups: New Group 1
    delete-group-with-exclusion-request:
      title: delete-group-with-exclusion-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: Group with exclusion
    show-groups-with-exclusion-request:
      title: show-groups-with-exclusion-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-groups-with-exclusionasrangesrequest:
      title: show-groups-with-exclusionasrangesrequest
      required:
      - limit
      - offset
      - details-level
      - show-as-ranges
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
        show-as-ranges:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: full
        show-as-ranges: 'true'
    show-groups-with-exclusionasranges:
      title: show-groups-with-exclusionasranges
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object2'
          description: ''
      example:
        from: 1
        to: 1
        total: 1
        objects:
        - uid: dce451da-c9c7-46a9-bdb5-8fc953a6f172
          name: DemoGroupWithExclusion
          type: group-with-exclusion
          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: 1528268215283
              iso-8601: 2018-06-06T09:56+0300
            last-modifier: aa
            creation-time:
              posix: 1528268215283
              iso-8601: 2018-06-06T09:56+0300
            creator: aa
          tags: []
          read-only: false
          comments: ''
          color: black
          icon: General/group
          ranges:
            ipv4:
            - start: 10.10.10.0
              end: 10.10.10.127
            - start: 10.10.14.1
              end: 10.10.14.1
            ipv6: []
            others: []
            excluded-others: []
    Object2:
      title: Object2
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - ranges
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        ranges:
          allOf:
          - $ref: '#/components/schemas/Ranges'
          - example:
              ipv4:
              - start: 10.10.14.1
                end: 10.10.14.1
              - start: 10.10.10.0
                end: 10.10.10.255
              ipv6: []
              others: []
              excluded-others: []
      example:
        uid: dce451da-c9c7-46a9-bdb5-8fc953a6f172
        name: DemoGroupWithExclusion
        type: group-with-exclusion
        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: 1528268215283
            iso-8601: 2018-06-06T09:56+0300
          last-modifier: aa
          creation-time:
            posix: 1528268215283
            iso-8601: 2018-06-06T09:56+0300
          creator: aa
        tags: []
        read-only: false
        comments: ''
        color: black
        icon: General/group
        ranges:
          ipv4:
          - start: 10.10.10.0
            end: 10.10.10.127
          - start: 10.10.14.1
            end: 10.10.14.1
          ipv6: []
          others: []
          excluded-others: []
    add-simple-gateway-request:
      title: add-simple-gateway-request
      required:
      - name
      - ip-address
      type: object
      properties:
        name:
          type: string
        ip-address:
          type: string
      example:
        name: gw1
        ip-address: 192.0.2.1
    add-simple-gateway:
      title: add-simple-gateway
      required:
      - uid
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - groups
      - ipv6-address
      - dynamic-ip
      - version
      - os-name
      - hardware
      - sic-name
      - sic-state
      - interfaces
      - firewall
      - firewall-settings
      - vpn
      - application-control
      - url-filtering
      - data-awareness
      - ips
      - anti-bot
      - anti-virus
      - threat-emulation
      - save-logs-locally
      - send-alerts-to-server
      - send-logs-to-server
      - send-logs-to-backup-server
      - logs-settings
      type: object
      properties:
        uid:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        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: array
          items:
            type: string
          description: ''
        firewall:
          type: boolean
        firewall-settings:
          allOf:
          - $ref: '#/components/schemas/FirewallSettings'
          - example:
              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:
          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
          description: ''
        send-logs-to-server:
          type: array
          items:
            type: string
          description: ''
        send-logs-to-backup-server:
          type: array
          items:
            type: string
          description: ''
        logs-settings:
          allOf:
          - $ref: '#/components/schemas/LogsSettings'
          - example:
              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
      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
    FirewallSettings:
      title: FirewallSettings
      required:
      - auto-maximum-limit-for-concurrent-connections
      - maximum-limit-for-concurrent-connections
      - auto-calculate-connections-hash-table-size-and-memory-pool
      - connections-hash-size
      - memory-pool-size
      - maximum-memory-pool-size
      type: object
      properties:
        auto-maximum-limit-for-concurrent-connections:
          type: boolean
        maximum-limit-for-concurrent-connections:
          type: integer
          format: int32
        auto-calculate-connections-hash-table-size-and-memory-pool:
          type: boolean
        connections-hash-size:
          type: integer
          format: int32
        memory-pool-size:
          type: integer
          format: int32
        maximum-memory-pool-size:
          type: integer
          format: int32
      example:
        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
    LogsSettings:
      title: LogsSettings
      required:
      - rotate-log-by-file-size
      - rotate-log-file-size-threshold
      - rotate-log-on-schedule
      - alert-when-free-disk-space-below-metrics
      - alert-when-free-disk-space-below
      - alert-when-free-disk-space-below-threshold
      - alert-when-free-disk-space-below-type
      - delete-when-free-disk-space-below-metrics
      - delete-when-free-disk-space-below
      - delete-when-free-disk-space-below-threshold
      - before-delete-keep-logs-from-the-last-days
      - before-delete-keep-logs-from-the-last-days-threshold
      - before-delete-run-script
      - before-delete-run-script-command
      - stop-logging-when-free-disk-space-below-metrics
      - stop-logging-when-free-disk-space-below
      - stop-logging-when-free-disk-space-below-threshold
      - reject-connections-when-free-disk-space-below-threshold
      - reserve-for-packet-capture-metrics
      - reserve-for-packet-capture-threshold
      - delete-index-files-when-index-size-above-metrics
      - delete-index-files-when-index-size-above
      - delete-index-files-when-index-size-above-threshold
      - delete-index-files-older-than-days
      - delete-index-files-older-than-days-threshold
      - forward-logs-to-log-server
      - perform-log-rotate-before-log-forwarding
      - update-account-log-every
      - detect-new-citrix-ica-application-names
      - turn-on-qos-logging
      type: object
      properties:
        rotate-log-by-file-size:
          type: boolean
        rotate-log-file-size-threshold:
          type: integer
          format: int32
        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: integer
          format: int32
        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: integer
          format: int32
        before-delete-keep-logs-from-the-last-days:
          type: boolean
        before-delete-keep-logs-from-the-last-days-threshold:
          type: integer
          format: int32
        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: integer
          format: int32
        reject-connections-when-free-disk-space-below-threshold:
          type: boolean
        reserve-for-packet-capture-metrics:
          type: string
        reserve-for-packet-capture-threshold:
          type: integer
          format: int32
        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: integer
          format: int32
        delete-index-files-older-than-days:
          type: boolean
        delete-index-files-older-than-days-threshold:
          type: integer
          format: int32
        forward-logs-to-log-server:
          type: boolean
        perform-log-rotate-before-log-forwarding:
          type: boolean
        update-account-log-every:
          type: integer
          format: int32
        detect-new-citrix-ica-application-names:
          type: boolean
        turn-on-qos-logging:
          type: boolean
      example:
        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
    add-simple-gatewaywithsicrequest:
      title: add-simple-gatewaywithsicrequest
      required:
      - name
      - color
      - ipv4-address
      - version
      - one-time-password
      - firewall
      - vpn
      - application-control
      - url-filtering
      - ips
      - anti-bot
      - anti-virus
      - threat-emulation
      - interfaces
      type: object
      properties:
        name:
          type: string
        color:
          type: string
        ipv4-address:
          type: string
        version:
          type: string
        one-time-password:
          type: string
        firewall:
          type: boolean
        vpn:
          type: boolean
        application-control:
          type: boolean
        url-filtering:
          type: boolean
        ips:
          type: boolean
        anti-bot:
          type: boolean
        anti-virus:
          type: boolean
        threat-emulation:
          type: boolean
        interfaces:
          type: array
          items:
            $ref: '#/components/schemas/Interface'
          description: ''
      example:
        name: gw1
        color: yellow
        ipv4-address: 192.0.2.230
        version: R80
        one-time-password: aaaa
        firewall: true
        vpn: true
        application-control: true
        url-filtering: true
        ips: true
        anti-bot: true
        anti-virus: true
        threat-emulation: true
        interfaces:
        - name: eth0
          ipv4-address: 192.0.2.230
          ipv4-network-mask: 255.255.255.128
          anti-spoofing: true
          topology: EXTERNAL
        - name: eth1
          ipv4-address: 192.0.2.88
          ipv4-network-mask: 255.255.255.0
          anti-spoofing: true
          topology: INTERNAL
    Interface:
      title: Interface
      required:
      - name
      - ipv4-address
      - ipv4-network-mask
      - anti-spoofing
      - topology
      type: object
      properties:
        name:
          type: string
        ipv4-address:
          type: string
        ipv4-network-mask:
          type: string
        anti-spoofing:
          type: boolean
        topology:
          type: string
      example:
        name: eth0
        ipv4-address: 192.0.2.230
        ipv4-network-mask: 255.255.255.128
        anti-spoofing: true
        topology: EXTERNAL
    show-simple-gateway-request:
      title: show-simple-gateway-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: gw1
    set-simple-gateway-request:
      title: set-simple-gateway-request
      required:
      - name
      - vpn
      - application-control
      - url-filtering
      - ips
      - anti-bot
      - anti-virus
      - threat-emulation
      type: object
      properties:
        name:
          type: string
        vpn:
          type: boolean
        application-control:
          type: boolean
        url-filtering:
          type: boolean
        ips:
          type: boolean
        anti-bot:
          type: boolean
        anti-virus:
          type: boolean
        threat-emulation:
          type: boolean
      example:
        name: test_gateway
        vpn: true
        application-control: true
        url-filtering: true
        ips: true
        anti-bot: true
        anti-virus: true
        threat-emulation: true
    delete-simple-gateway-request:
      title: delete-simple-gateway-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: gw1
    show-simple-gateways-request:
      title: show-simple-gateways-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-security-zone-request:
      title: add-security-zone-request
      required:
      - name
      - comments
      - color
      type: object
      properties:
        name:
          type: string
        comments:
          type: string
        color:
          type: string
      example:
        name: SZone1
        comments: My Security Zone 1
        color: yellow
    show-security-zone-request:
      title: show-security-zone-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: SZone1
    set-security-zone-request:
      title: set-security-zone-request
      required:
      - name
      - new-name
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
      example:
        name: SZone1
        new-name: SZone2
    delete-security-zone-request:
      title: delete-security-zone-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: SZone2
    show-security-zones:
      title: show-security-zones
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object3'
          description: ''
      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
    Object3:
      title: Object3
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    add-time-request:
      title: add-time-request
      required:
      - name
      - start-now
      - end
      - end-never
      - hours-ranges
      - recurrence
      type: object
      properties:
        name:
          type: string
        start-now:
          type: string
        end:
          allOf:
          - $ref: '#/components/schemas/End'
          - example:
              date: 24-Nov-2014
              time: 21:22
        end-never:
          type: string
        hours-ranges:
          type: array
          items:
            $ref: '#/components/schemas/HoursRange'
          description: ''
        recurrence:
          allOf:
          - $ref: '#/components/schemas/Recurrence'
          - example:
              pattern: Daily
              month: Any
              weekdays:
              - Sun
              - Mon
              days:
              - '1'
      example:
        name: timeObject1
        start-now: 'true'
        end:
          date: 24-Nov-2014
          time: 21:22
        end-never: 'false'
        hours-ranges:
        - from: 00:00
          to: 00:00
          enabled: true
          index: 1
        - from: 00:00
          to: 00:00
          enabled: false
          index: 2
        recurrence:
          pattern: Daily
          month: Any
          weekdays:
          - Sun
          - Mon
          days:
          - '1'
    End:
      title: End
      required:
      - date
      - time
      type: object
      properties:
        date:
          type: string
        time:
          type: string
      example:
        date: 24-Nov-2014
        time: 21:22
    HoursRange:
      title: HoursRange
      required:
      - from
      - to
      - enabled
      - index
      type: object
      properties:
        from:
          type: string
        to:
          type: string
        enabled:
          type: boolean
        index:
          type: integer
          format: int32
      example:
        from: 00:00
        to: 00:00
        enabled: true
        index: 1
    Recurrence:
      title: Recurrence
      required:
      - pattern
      - month
      - weekdays
      - days
      type: object
      properties:
        pattern:
          type: string
        month:
          type: string
        weekdays:
          type: array
          items:
            type: string
          description: ''
        days:
          type: array
          items:
            type: string
          description: ''
      example:
        pattern: Daily
        month: Any
        weekdays:
        - Sun
        - Mon
        days:
        - '1'
    show-time-request:
      title: show-time-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: timeObject1
    set-time-request:
      title: set-time-request
      required:
      - name
      - hours-ranges
      - recurrence
      type: object
      properties:
        name:
          type: string
        hours-ranges:
          type: array
          items:
            $ref: '#/components/schemas/HoursRange1'
          description: ''
        recurrence:
          allOf:
          - $ref: '#/components/schemas/Recurrence1'
          - example:
              pattern: Weekly
              weekdays:
              - Fri
              month: Any
      example:
        name: timeObject1
        hours-ranges:
        - from: 00:22
          to: 00:33
        recurrence:
          pattern: Weekly
          weekdays:
          - Fri
          month: Any
    HoursRange1:
      title: HoursRange1
      required:
      - from
      - to
      type: object
      properties:
        from:
          type: string
        to:
          type: string
      example:
        from: 00:22
        to: 00:33
    Recurrence1:
      title: Recurrence1
      required:
      - pattern
      - weekdays
      - month
      type: object
      properties:
        pattern:
          type: string
        weekdays:
          type: array
          items:
            type: string
          description: ''
        month:
          type: string
      example:
        pattern: Weekly
        weekdays:
        - Fri
        month: Any
    delete-time-request:
      title: delete-time-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: timeObject1
    show-times-request:
      title: show-times-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-time-group-request:
      title: add-time-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: timeGroup-1
    show-time-group-request:
      title: show-time-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: timeGroup-1
    set-time-group-request:
      title: set-time-group-request
      required:
      - name
      - members
      type: object
      properties:
        name:
          type: string
        members:
          allOf:
          - $ref: '#/components/schemas/Members'
          - example:
              add: New Host 2
      example:
        name: timeGroup-1
        members:
          add: timeGroup-2
    delete-time-group-request:
      title: delete-time-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: timeGroup-1
    show-time-groups-request:
      title: show-time-groups-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-access-role-request:
      title: add-access-role-request
      required:
      - name
      - networks
      - users
      - machines
      - remote-access-clients
      type: object
      properties:
        name:
          type: string
        networks:
          type: string
        users:
          type: string
        machines:
          type: string
        remote-access-clients:
          type: string
      example:
        name: New Access Role 1
        networks: any
        users: any
        machines: all identified
        remote-access-clients: any
    show-access-role-request:
      title: show-access-role-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Access Role 1
    set-access-role-request:
      title: set-access-role-request
      required:
      - name
      - users
      - machines
      type: object
      properties:
        name:
          type: string
        users:
          type: string
        machines:
          type: string
      example:
        name: New Access Role 1
        users: all identified
        machines: any
    delete-access-role-request:
      title: delete-access-role-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Access Role 1
    show-access-roles-request:
      title: show-access-roles-request
      required:
      - details-level
      type: object
      properties:
        details-level:
          type: string
      example:
        details-level: full
    add-dynamic-object-request:
      title: add-dynamic-object-request
      required:
      - name
      - comments
      - color
      type: object
      properties:
        name:
          type: string
        comments:
          type: string
        color:
          type: string
      example:
        name: Dynamic_Object_1
        comments: My Dynamic Object 1
        color: yellow
    add-dynamic-object:
      title: add-dynamic-object
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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
    show-dynamic-object-request:
      title: show-dynamic-object-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: Dynamic_Object_1
    show-dynamic-object:
      title: show-dynamic-object
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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
    set-dynamic-object-request:
      title: set-dynamic-object-request
      required:
      - name
      - new-name
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
      example:
        name: Dynamic_Object_1
        new-name: Dynamic_Object_2
    set-dynamic-object:
      title: set-dynamic-object
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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
    delete-dynamic-object-request:
      title: delete-dynamic-object-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: Dynamic_Object_2
    delete-dynamic-object:
      title: delete-dynamic-object
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-dynamic-objects:
      title: show-dynamic-objects
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object4'
          description: ''
      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
    Object4:
      title: Object4
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    add-trusted-client-request:
      title: add-trusted-client-request
      required:
      - name
      - type
      type: object
      properties:
        name:
          type: string
        type:
          type: string
      example:
        name: my client
        type: ANY
    add-trusted-clientwithdomainrequest:
      title: add-trusted-clientwithdomainrequest
      required:
      - name
      - domains-assignment
      type: object
      properties:
        name:
          type: string
        domains-assignment:
          allOf:
          - $ref: '#/components/schemas/DomainsAssignment'
          - example:
              add: my domain
      example:
        name: my client
        domains-assignment:
          add: my domain
    DomainsAssignment:
      title: DomainsAssignment
      required:
      - add
      type: object
      properties:
        add:
          type: string
      example:
        add: my domain
    show-trusted-client-request:
      title: show-trusted-client-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: anyHost
    set-trusted-client-request:
      title: set-trusted-client-request
      required:
      - name
      - type
      - ip-address
      - mask-length
      type: object
      properties:
        name:
          type: string
        type:
          type: string
        ip-address:
          type: string
        mask-length:
          type: string
      example:
        name: my client
        type: NETMASK
        ip-address: 192.0.2.1
        mask-length: '24'
    set-trusted-clientwithdomainrequest:
      title: set-trusted-clientwithdomainrequest
      required:
      - name
      - domains-assignment
      type: object
      properties:
        name:
          type: string
        domains-assignment:
          allOf:
          - $ref: '#/components/schemas/DomainsAssignment'
          - example:
              add: my domain
      example:
        name: my client
        domains-assignment:
          add: my domain
    delete-trusted-client-request:
      title: delete-trusted-client-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: my client
    show-trusted-clients-request:
      title: show-trusted-clients-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-tag-request:
      title: add-tag-request
      required:
      - name
      - tags
      type: object
      properties:
        name:
          type: string
        tags:
          type: array
          items:
            type: string
          description: ''
      example:
        name: My New Tag1
        tags:
        - tag1
        - tag2
    add-tag:
      title: add-tag
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            $ref: '#/components/schemas/Tag'
          description: ''
        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
    Tag:
      title: Tag
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    show-tag-request:
      title: show-tag-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: f96b37ec-e22e-4945-8bbf-d37b117914e0
    show-tag:
      title: show-tag
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        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
    set-tag-request:
      title: set-tag-request
      required:
      - name
      - new-name
      - tags
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        tags:
          allOf:
          - $ref: '#/components/schemas/Tags'
          - example:
              add: tag3
      example:
        name: My New Tag1
        new-name: My New Tag21
        tags:
          add: tag3
    Tags:
      title: Tags
      required:
      - add
      type: object
      properties:
        add:
          type: string
      example:
        add: tag3
    set-tag:
      title: set-tag
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            $ref: '#/components/schemas/Tags1'
          description: ''
        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
    Tags1:
      title: Tags1
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    delete-tag-request:
      title: delete-tag-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: dda885bb-0d5b-4529-96eb-55b757847092
    show-tags:
      title: show-tags
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object3'
          description: ''
      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
    add-dns-domain-request:
      title: add-dns-domain-request
      required:
      - name
      - is-sub-domain
      type: object
      properties:
        name:
          type: string
        is-sub-domain:
          type: boolean
      example:
        name: .www.example.com
        is-sub-domain: false
    add-dns-domain:
      title: add-dns-domain
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - is-sub-domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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
    show-dns-domain-request:
      title: show-dns-domain-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: .www.example.com
    show-dns-domain:
      title: show-dns-domain
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - is-sub-domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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
    set-dns-domain-request:
      title: set-dns-domain-request
      required:
      - name
      - new-name
      - is-sub-domain
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        is-sub-domain:
          type: boolean
      example:
        name: .www.example.com
        new-name: .example.com
        is-sub-domain: true
    set-dns-domain:
      title: set-dns-domain
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - is-sub-domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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
    delete-dns-domain-request:
      title: delete-dns-domain-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: .example.com
    delete-dns-domain:
      title: delete-dns-domain
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-dns-domains-request:
      title: show-dns-domains-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-dns-domains:
      title: show-dns-domains
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object4'
          description: ''
      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
    add-opsec-application-request:
      title: add-opsec-application-request
      required:
      - name
      - host
      - cpmi
      - lea
      - one-time-password
      type: object
      properties:
        name:
          type: string
        host:
          type: string
        cpmi:
          allOf:
          - $ref: '#/components/schemas/Cpmi'
          - example:
              enabled: 'true'
              use-administrator-credentials: 'false'
              administrator-profile: Super User
        lea:
          allOf:
          - $ref: '#/components/schemas/Lea'
          - example:
              enabled: 'false'
        one-time-password:
          type: string
      example:
        name: MyOpsecApplication
        host: SomeHost
        cpmi:
          enabled: 'true'
          use-administrator-credentials: 'false'
          administrator-profile: Super User
        lea:
          enabled: 'false'
        one-time-password: SomePassword
    Cpmi:
      title: Cpmi
      required:
      - enabled
      - use-administrator-credentials
      - administrator-profile
      type: object
      properties:
        enabled:
          type: string
        use-administrator-credentials:
          type: string
        administrator-profile:
          type: string
      example:
        enabled: 'true'
        use-administrator-credentials: 'false'
        administrator-profile: Super User
    Lea:
      title: Lea
      required:
      - enabled
      type: object
      properties:
        enabled:
          type: string
      example:
        enabled: 'false'
    add-opsec-application:
      title: add-opsec-application
      required:
      - uid
      - name
      - type
      - domain
      - host
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - cpmi
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        host:
          type: string
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        cpmi:
          allOf:
          - $ref: '#/components/schemas/Cpmi1'
          - example:
              use-administrator-credentials: false
              administrator-profile: super user
      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
    Cpmi1:
      title: Cpmi1
      required:
      - use-administrator-credentials
      - administrator-profile
      type: object
      properties:
        use-administrator-credentials:
          type: boolean
        administrator-profile:
          type: string
      example:
        use-administrator-credentials: false
        administrator-profile: super user
    show-opsec-application-request:
      title: show-opsec-application-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: MyUpdatedOpsecApplication
    show-opsec-application:
      title: show-opsec-application
      required:
      - uid
      - name
      - type
      - domain
      - host
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - lea
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        host:
          type: string
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        lea:
          allOf:
          - $ref: '#/components/schemas/Lea1'
          - example:
              access-permissions: show all
      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
    Lea1:
      title: Lea1
      required:
      - access-permissions
      type: object
      properties:
        access-permissions:
          type: string
      example:
        access-permissions: show all
    set-opsec-application-request:
      title: set-opsec-application-request
      required:
      - name
      - new-name
      - cpmi
      - lea
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        cpmi:
          allOf:
          - $ref: '#/components/schemas/Cpmi2'
          - example:
              enabled: 'false'
        lea:
          allOf:
          - $ref: '#/components/schemas/Lea2'
          - example:
              enabled: 'true'
              access-permissions: Show All
      example:
        name: MyOpsecApplication
        new-name: MyUpdatedOpsecapplication
        cpmi:
          enabled: 'false'
        lea:
          enabled: 'true'
          access-permissions: Show All
    Cpmi2:
      title: Cpmi2
      required:
      - enabled
      type: object
      properties:
        enabled:
          type: string
      example:
        enabled: 'false'
    Lea2:
      title: Lea2
      required:
      - enabled
      - access-permissions
      type: object
      properties:
        enabled:
          type: string
        access-permissions:
          type: string
      example:
        enabled: 'true'
        access-permissions: Show All
    set-opsec-application:
      title: set-opsec-application
      required:
      - uid
      - name
      - type
      - domain
      - host
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - lea
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        host:
          type: string
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        lea:
          allOf:
          - $ref: '#/components/schemas/Lea1'
          - example:
              access-permissions: show all
      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
    delete-opsec-application-request:
      title: delete-opsec-application-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: MySecondOpsecApplication
    delete-opsec-application:
      title: delete-opsec-application
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-opsec-applications:
      title: show-opsec-applications
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object7'
          description: ''
      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
    Object7:
      title: Object7
      required:
      - uid
      - name
      - type
      - domain
      - host
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - lea
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        host:
          type: string
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        lea:
          allOf:
          - $ref: '#/components/schemas/Lea4'
          - example:
              access-permissions: by profile
              administrator-profile: read only all
      example:
        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
    Lea4:
      title: Lea4
      required:
      - access-permissions
      type: object
      properties:
        access-permissions:
          type: string
        administrator-profile:
          type: string
      example:
        access-permissions: by profile
        administrator-profile: read only all
    show-data-center-content-request:
      title: show-data-center-content-request
      required:
      - data-center-name
      type: object
      properties:
        data-center-name:
          type: string
      example:
        data-center-name: vCenter 1
    show-data-center-content:
      title: show-data-center-content
      required:
      - objects
      - from
      - to
      - total
      type: object
      properties:
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object8'
          description: ''
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
      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
    Object8:
      title: Object8
      required:
      - name
      - name-in-data-center
      - uid-in-data-center
      - type-in-data-center
      - additional-properties
      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:
          allOf:
          - $ref: '#/components/schemas/DataCenterObject'
          - example:
              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:
          type: array
          items:
            $ref: '#/components/schemas/AdditionalProperty'
          description: ''
      example:
        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
    DataCenterObject:
      title: DataCenterObject
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    AdditionalProperty:
      title: AdditionalProperty
      required:
      - name
      - value
      type: object
      properties:
        name:
          type: string
        value:
          type: string
      example:
        name: IP
        value: 10.0.0.1
    show-data-center-contentwithfilterrequest:
      title: show-data-center-contentwithfilterrequest
      required:
      - data-center-name
      - filter
      type: object
      properties:
        data-center-name:
          type: string
        filter:
          allOf:
          - $ref: '#/components/schemas/Filter'
          - example:
              text: VM1 mgmt
              uri: /Datacenters/VMs
      example:
        data-center-name: vCenter 1
        filter:
          text: VM1 mgmt
          uri: /Datacenters/VMs
    Filter:
      title: Filter
      required:
      - text
      - uri
      type: object
      properties:
        text:
          type: string
        uri:
          type: string
      example:
        text: VM1 mgmt
        uri: /Datacenters/VMs
    show-data-center-contentwithfilter:
      title: show-data-center-contentwithfilter
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object9'
          description: ''
      example:
        from: 4
        to: 5
        total: 95
        objects:
        - name: My VM1
          type-in-data-center: VirtualMachine
          name-in-data-center: My VM1
          uid-in-data-center: vm-1
          additional-properties:
          - name: IP
            value: 192.168.0.100
          - name: Path
            value: /Datacenters/VMs
        - name: My VM2
          type-in-data-center: VirtualMachine
          name-in-data-center: My VM2
          uid-in-data-center: vm-2
          additional-properties:
          - name: IP
            value: 192.168.0.200
          - name: Path
            value: /Datacenters/VMs
    Object9:
      title: Object9
      required:
      - name
      - type-in-data-center
      - name-in-data-center
      - uid-in-data-center
      - additional-properties
      type: object
      properties:
        name:
          type: string
        type-in-data-center:
          type: string
        name-in-data-center:
          type: string
        uid-in-data-center:
          type: string
        additional-properties:
          type: array
          items:
            $ref: '#/components/schemas/AdditionalProperty'
          description: ''
      example:
        name: My VM1
        type-in-data-center: VirtualMachine
        name-in-data-center: My VM1
        uid-in-data-center: vm-1
        additional-properties:
        - name: IP
          value: 192.168.0.100
        - name: Path
          value: /Datacenters/VMs
    show-data-center-request:
      title: show-data-center-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: vCenter 1
    show-data-center:
      title: show-data-center
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      - server-type
      - properties
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        server-type:
          type: string
        properties:
          allOf:
          - $ref: '#/components/schemas/Properties'
          - example:
              vCenter_Username: user1
              vCenter_Hostname: vcenter1.host.com
      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
    Properties:
      title: Properties
      required:
      - vCenter_Username
      - vCenter_Hostname
      type: object
      properties:
        vCenter_Username:
          type: string
        vCenter_Hostname:
          type: string
      example:
        vCenter_Username: user1
        vCenter_Hostname: vcenter1.host.com
    show-data-centers:
      title: show-data-centers
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object4'
          description: ''
      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
    add-data-center-objectwithgrouprequest:
      title: add-data-center-objectwithgrouprequest
      required:
      - data-center-name
      - uri
      - name
      - groups
      type: object
      properties:
        data-center-name:
          type: string
        uri:
          type: string
        name:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        data-center-name: vCenter 1
        uri: /Datacenters/VMs/My VM1
        name: VM1 mgmt name
        groups:
        - Database VMs Group
    add-data-center-objectwithgroup:
      title: add-data-center-objectwithgroup
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      - groups
      - additional-properties
      - data-center
      - name-in-data-center
      - data-center-object-meta-info
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
        additional-properties:
          type: array
          items:
            $ref: '#/components/schemas/AdditionalProperty'
          description: ''
        data-center:
          allOf:
          - $ref: '#/components/schemas/DataCenter'
          - example:
              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:
          type: string
        data-center-object-meta-info:
          allOf:
          - $ref: '#/components/schemas/DataCenterObjectMetaInfo'
          - example:
              updated-on-data-center:
                posix: 1456732795695
                iso-8601: 2016-02-29T02:59-0500
      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
    Group3:
      title: Group3
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    DataCenter:
      title: DataCenter
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    DataCenterObjectMetaInfo:
      title: DataCenterObjectMetaInfo
      required:
      - updated-on-data-center
      type: object
      properties:
        updated-on-data-center:
          allOf:
          - $ref: '#/components/schemas/UpdatedOnDataCenter'
          - example:
              posix: 1456732795695
              iso-8601: 2016-02-29T02:59-0500
      example:
        updated-on-data-center:
          posix: 1456732795695
          iso-8601: 2016-02-29T02:59-0500
    UpdatedOnDataCenter:
      title: UpdatedOnDataCenter
      required:
      - posix
      - iso-8601
      type: object
      properties:
        posix:
          type: integer
          format: int64
        iso-8601:
          type: string
      example:
        posix: 1456732795695
        iso-8601: 2016-02-29T02:59-0500
    show-data-center-object-request:
      title: show-data-center-object-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: VM1 mgmt name
    show-data-center-object:
      title: show-data-center-object
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      - groups
      - additional-properties
      - uid-in-data-center
      - data-center
      - name-in-data-center
      - data-center-object-meta-info
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
        additional-properties:
          type: array
          items:
            $ref: '#/components/schemas/AdditionalProperty'
          description: ''
        uid-in-data-center:
          type: string
        data-center:
          allOf:
          - $ref: '#/components/schemas/DataCenter'
          - example:
              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:
          type: string
        data-center-object-meta-info:
          allOf:
          - $ref: '#/components/schemas/DataCenterObjectMetaInfo'
          - example:
              updated-on-data-center:
                posix: 1456732795695
                iso-8601: 2016-02-29T02:59-0500
      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
    delete-data-center-object-request:
      title: delete-data-center-object-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: VM1 mgmt name
    delete-data-center-object:
      title: delete-data-center-object
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-data-center-objects:
      title: show-data-center-objects
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object4'
          description: ''
      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
    show-updatable-objects-repository-content-request:
      title: show-updatable-objects-repository-content-request
      required:
      - limit
      type: object
      properties:
        limit:
          type: integer
          format: int32
      example:
        limit: 1
    show-updatable-objects-repository-content:
      title: show-updatable-objects-repository-content
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object12'
          description: ''
      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
    Object12:
      title: Object12
      required:
      - name-in-updatable-objects-repository
      - uid-in-updatable-objects-repository
      - additional-properties
      type: object
      properties:
        name-in-updatable-objects-repository:
          type: string
        uid-in-updatable-objects-repository:
          type: string
        additional-properties:
          allOf:
          - $ref: '#/components/schemas/AdditionalProperties'
          - example:
              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
      example:
        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
    AdditionalProperties:
      title: AdditionalProperties
      required:
      - description
      - info-text
      - info-url
      - uri
      type: object
      properties:
        description:
          type: string
        info-text:
          type: string
        info-url:
          type: string
        uri:
          type: string
      example:
        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
    show-updatable-objects-repository-contentwithfilterrequest:
      title: show-updatable-objects-repository-contentwithfilterrequest
      required:
      - filter
      type: object
      properties:
        filter:
          allOf:
          - $ref: '#/components/schemas/Filter1'
          - example:
              text: Amazon
      example:
        filter:
          text: Amazon
    Filter1:
      title: Filter1
      required:
      - text
      type: object
      properties:
        text:
          type: string
      example:
        text: Amazon
    show-updatable-objects-repository-contentwithfilter:
      title: show-updatable-objects-repository-contentwithfilter
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object12'
          description: ''
      example:
        from: 1
        to: 3
        total: 3
        objects:
        - name-in-updatable-objects-repository: Amazon AP North-East 1 Servers
          uid-in-updatable-objects-repository: aeef181e-72c8-11e7-9248-54a52c295409
          additional-properties:
            description: This is an Amazon object, derived from a link listed below, and all its content is subject to Amazon IPs. Amazon CloudFront is a content delivery network (CDN) that delivers content through a worldwide network of data centers.
            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 Servers/CloudFront Servers
        - name-in-updatable-objects-repository: CodeBuild AP North-East 1 Servers
          uid-in-updatable-objects-repository: d9eeaf01-965f-365d-8400-9e8ebb45a5cb
          additional-properties:
            description: This is an Amazon object, derived from a link listed below, and all its content is subject to Amazon IPs. AWS 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 Servers/CodeBuild Servers
        - name-in-updatable-objects-repository: CodeBuild AP North-East 2 Servers
          uid-in-updatable-objects-repository: 455b99e2-383c-3702-9bdd-54dab06bbbdf
          additional-properties:
            description: This is an Amazon object, derived from a link listed below, and all its content is subject to Amazon IPs. AWS 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 Servers/CodeBuild Servers
    update-updatable-objects-repository-content:
      title: update-updatable-objects-repository-content
      required:
      - task-id
      type: object
      properties:
        task-id:
          type: string
      example:
        task-id: 01234567-89ab-cdef-a930-8c37a59972b3
    add-updatable-object-request:
      title: add-updatable-object-request
      required:
      - uri
      type: object
      properties:
        uri:
          type: string
      example:
        uri: '{{uri}}'
    add-updatable-object:
      title: add-updatable-object
      required:
      - uid
      - name
      - type
      - domain
      - name-in-updatable-objects-repository
      - uid-in-updatable-objects-repository
      - additional-properties
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - updatable-object-meta-info
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        name-in-updatable-objects-repository:
          type: string
        uid-in-updatable-objects-repository:
          type: string
        additional-properties:
          allOf:
          - $ref: '#/components/schemas/AdditionalProperties'
          - example:
              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
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        updatable-object-meta-info:
          allOf:
          - $ref: '#/components/schemas/UpdatableObjectMetaInfo'
          - example:
              updated-on-updatable-objects-repository:
                posix: 1516633264623
                iso-8601: 2018-01-22T17:01+0200
      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
    UpdatableObjectMetaInfo:
      title: UpdatableObjectMetaInfo
      required:
      - updated-on-updatable-objects-repository
      type: object
      properties:
        updated-on-updatable-objects-repository:
          allOf:
          - $ref: '#/components/schemas/UpdatedOnUpdatableObjectsRepository'
          - example:
              posix: 1516633264623
              iso-8601: 2018-01-22T17:01+0200
      example:
        updated-on-updatable-objects-repository:
          posix: 1516633264623
          iso-8601: 2018-01-22T17:01+0200
    UpdatedOnUpdatableObjectsRepository:
      title: UpdatedOnUpdatableObjectsRepository
      required:
      - posix
      - iso-8601
      type: object
      properties:
        posix:
          type: integer
          format: int64
        iso-8601:
          type: string
      example:
        posix: 1516633264623
        iso-8601: 2018-01-22T17:01+0200
    show-updatable-object-request:
      title: show-updatable-object-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: CodeBuild US East 1
    show-updatable-object:
      title: show-updatable-object
      required:
      - uid
      - name
      - type
      - domain
      - name-in-updatable-objects-repository
      - uid-in-updatable-objects-repository
      - additional-properties
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - updatable-object-meta-info
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        name-in-updatable-objects-repository:
          type: string
        uid-in-updatable-objects-repository:
          type: string
        additional-properties:
          allOf:
          - $ref: '#/components/schemas/AdditionalProperties'
          - example:
              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
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        updatable-object-meta-info:
          allOf:
          - $ref: '#/components/schemas/UpdatableObjectMetaInfo'
          - example:
              updated-on-updatable-objects-repository:
                posix: 1516633264623
                iso-8601: 2018-01-22T17:01+0200
      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
    delete-updatable-object-request:
      title: delete-updatable-object-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: CodeBuild US East 1
    delete-updatable-object:
      title: delete-updatable-object
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-updatable-objects:
      title: show-updatable-objects
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object4'
          description: ''
      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
    add-service-tcp-request:
      title: add-service-tcp-request
      required:
      - name
      - port
      - keep-connections-open-after-policy-installation
      - session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      type: object
      properties:
        name:
          type: string
        port:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
      example:
        name: New_TCP_Service_1
        port: 5669
        keep-connections-open-after-policy-installation: false
        session-timeout: 0
        match-for-any: true
        sync-connections-on-cluster: true
        aggressive-aging:
          enable: true
          timeout: 360
          use-default-timeout: false
    AggressiveAging:
      title: AggressiveAging
      required:
      - enable
      - timeout
      - use-default-timeout
      type: object
      properties:
        enable:
          type: boolean
        timeout:
          type: integer
          format: int32
        use-default-timeout:
          type: boolean
      example:
        enable: true
        timeout: 360
        use-default-timeout: false
    add-service-tcp:
      title: add-service-tcp
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      - match-by-protocol-signature
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        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
    AggressiveAging1:
      title: AggressiveAging1
      required:
      - enable
      - timeout
      - use-default-timeout
      - default-timeout
      type: object
      properties:
        enable:
          type: boolean
        timeout:
          type: integer
          format: int32
        use-default-timeout:
          type: boolean
        default-timeout:
          type: integer
          format: int32
      example:
        enable: true
        timeout: 360
        use-default-timeout: false
        default-timeout: 0
    add-service-tcpwithgrouprequest:
      title: add-service-tcpwithgrouprequest
      required:
      - name
      - port
      - keep-connections-open-after-policy-installation
      - session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - groups
      type: object
      properties:
        name:
          type: string
        port:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New_TCP_Service_1
        port: 5669
        keep-connections-open-after-policy-installation: false
        session-timeout: 0
        match-for-any: true
        sync-connections-on-cluster: true
        aggressive-aging:
          enable: true
          timeout: 360
          use-default-timeout: false
        groups:
        - MY_GROUP
    add-service-tcpwithgroup:
      title: add-service-tcpwithgroup
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      - match-by-protocol-signature
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        port:
          type: string
        match-by-protocol-signature:
          type: boolean
      example:
        uid: 59c19723-ce20-45f0-a4af-bcd2375c92a5
        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: 1479719390225
            iso-8601: 2016-11-21T11:09+0200
          last-modifier: aa
          creation-time:
            posix: 1479719390225
            iso-8601: 2016-11-21T11:09+0200
          creator: aa
        tags: []
        read-only: true
        comments: ''
        color: black
        icon: Services/TCPService
        groups:
        - uid: 61a9de0a-f624-4c9b-b178-180a0a1c4c0b
          name: MY_GROUP
          type: service-group
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
        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
    add-service-tcpwithprotocolrequest:
      title: add-service-tcpwithprotocolrequest
      required:
      - name
      - keep-connections-open-after-policy-installation
      - session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - protocol
      - match-by-protocol-signature
      type: object
      properties:
        name:
          type: string
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
        protocol:
          type: string
        match-by-protocol-signature:
          type: boolean
      example:
        name: New_TCP_Service_1
        keep-connections-open-after-policy-installation: false
        session-timeout: 0
        match-for-any: true
        sync-connections-on-cluster: true
        aggressive-aging:
          enable: true
          timeout: 360
          use-default-timeout: false
        protocol: DNS_TCP
        match-by-protocol-signature: true
    add-service-tcpwithprotocol:
      title: add-service-tcpwithprotocol
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      - protocol
      - match-by-protocol-signature
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        port:
          type: string
        protocol:
          type: string
        match-by-protocol-signature:
          type: boolean
      example:
        uid: 49165f0c-9e19-4af1-9e23-f343f873fa53
        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: 1479719463450
            iso-8601: 2016-11-21T11:11+0200
          last-modifier: aa
          creation-time:
            posix: 1479719463450
            iso-8601: 2016-11-21T11:11+0200
          creator: aa
        tags: []
        read-only: true
        comments: ''
        color: black
        icon: Protocols/DNS
        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: '53'
        protocol: DNS_TCP
        match-by-protocol-signature: true
    show-service-tcp-request:
      title: show-service-tcp-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: https
    show-service-tcp:
      title: show-service-tcp
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      - protocol
      - match-by-protocol-signature
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        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
    set-service-tcp-request:
      title: set-service-tcp-request
      required:
      - name
      - new-name
      - color
      - port
      - aggressive-aging
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        color:
          type: string
        port:
          type: integer
          format: int32
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging7'
          - example:
              default-timeout: 3600
      example:
        name: New_TCP_Service_1
        new-name: New_TCP_Service_2
        color: green
        port: 5656
        aggressive-aging:
          default-timeout: 3600
    AggressiveAging7:
      title: AggressiveAging7
      required:
      - default-timeout
      type: object
      properties:
        default-timeout:
          type: integer
          format: int32
      example:
        default-timeout: 3600
    set-service-tcp:
      title: set-service-tcp
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      - match-by-protocol-signature
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        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
    delete-service-tcp-request:
      title: delete-service-tcp-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_TCP_Service_1
    delete-service-tcp:
      title: delete-service-tcp
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-services-tcp-request:
      title: show-services-tcp-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 10
        offset: 0
        details-level: standard
    show-services-tcp:
      title: show-services-tcp
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object15'
          description: ''
      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'
    Object15:
      title: Object15
      required:
      - uid
      - name
      - type
      - domain
      - port
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        port:
          type: string
      example:
        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'
    add-service-udp-request:
      title: add-service-udp-request
      required:
      - name
      - port
      - keep-connections-open-after-policy-installation
      - session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - accept-replies
      type: object
      properties:
        name:
          type: string
        port:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
        accept-replies:
          type: boolean
      example:
        name: New_UDP_Service_1
        port: 5669
        keep-connections-open-after-policy-installation: false
        session-timeout: 0
        match-for-any: true
        sync-connections-on-cluster: true
        aggressive-aging:
          enable: true
          timeout: 360
          use-default-timeout: false
        accept-replies: false
    add-service-udp:
      title: add-service-udp
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      - match-by-protocol-signature
      - accept-replies
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        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
    add-service-udpwithgrouprequest:
      title: add-service-udpwithgrouprequest
      required:
      - name
      - port
      - keep-connections-open-after-policy-installation
      - session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - accept-replies
      - groups
      type: object
      properties:
        name:
          type: string
        port:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
        accept-replies:
          type: boolean
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New_UDP_Service_2
        port: 5669
        keep-connections-open-after-policy-installation: false
        session-timeout: 0
        match-for-any: true
        sync-connections-on-cluster: true
        aggressive-aging:
          enable: true
          timeout: 360
          use-default-timeout: false
        accept-replies: false
        groups:
        - MY_GROUP
    add-service-udpwithgroup:
      title: add-service-udpwithgroup
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      - match-by-protocol-signature
      - accept-replies
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        port:
          type: string
        match-by-protocol-signature:
          type: boolean
        accept-replies:
          type: boolean
      example:
        uid: d740af8d-e6e1-48e3-94a5-1d10462e6b4a
        name: New_UDP_Service_2
        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: 1479720440924
            iso-8601: 2016-11-21T11:27+0200
          last-modifier: aa
          creation-time:
            posix: 1479720440924
            iso-8601: 2016-11-21T11:27+0200
          creator: aa
        tags: []
        read-only: true
        comments: ''
        color: black
        icon: Services/UDPService
        groups:
        - uid: a4c6342f-7962-49d9-aa4e-12d6c8aa5a06
          name: MY_GROUP
          type: service-group
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
        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
    add-service-udpwithprotocolrequest:
      title: add-service-udpwithprotocolrequest
      required:
      - name
      - keep-connections-open-after-policy-installation
      - session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - accept-replies
      - protocol
      - match-by-protocol-signature
      type: object
      properties:
        name:
          type: string
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
        accept-replies:
          type: boolean
        protocol:
          type: string
        match-by-protocol-signature:
          type: boolean
      example:
        name: New_UDP_Service_1
        keep-connections-open-after-policy-installation: false
        session-timeout: 0
        match-for-any: true
        sync-connections-on-cluster: true
        aggressive-aging:
          enable: true
          timeout: 360
          use-default-timeout: false
        accept-replies: false
        protocol: tftp
        match-by-protocol-signature: true
    add-service-udpwithprotocol:
      title: add-service-udpwithprotocol
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      - protocol
      - match-by-protocol-signature
      - accept-replies
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        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_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: 1479720519849
            iso-8601: 2016-11-21T11:28+0200
          last-modifier: aa
          creation-time:
            posix: 1479720519849
            iso-8601: 2016-11-21T11:28+0200
          creator: aa
        tags: []
        read-only: true
        comments: ''
        color: black
        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: 0
        port: '69'
        protocol: TFTP
        match-by-protocol-signature: true
        accept-replies: false
    show-service-udp-request:
      title: show-service-udp-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: bootp
    show-service-udp:
      title: show-service-udp
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      - match-by-protocol-signature
      - accept-replies
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        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
    set-service-udp-request:
      title: set-service-udp-request
      required:
      - name
      - new-name
      - color
      - port
      - aggressive-aging
      - accept-replies
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        color:
          type: string
        port:
          type: integer
          format: int32
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging7'
          - example:
              default-timeout: 3600
        accept-replies:
          type: boolean
      example:
        name: New_UDP_Service_1
        new-name: New_UDP_Service_4
        color: green
        port: 5656
        aggressive-aging:
          default-timeout: 3600
        accept-replies: true
    set-service-udp:
      title: set-service-udp
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      - protocol
      - match-by-protocol-signature
      - accept-replies
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        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
    delete-service-udp-request:
      title: delete-service-udp-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_UDP_Service_2
    delete-service-udp:
      title: delete-service-udp
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-services-udp-request:
      title: show-services-udp-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 10
        offset: 0
        details-level: standard
    show-services-udp:
      title: show-services-udp
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object15'
          description: ''
      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'
    add-service-icmp-request:
      title: add-service-icmp-request
      required:
      - name
      - icmp-type
      - icmp-code
      type: object
      properties:
        name:
          type: string
        icmp-type:
          type: integer
          format: int32
        icmp-code:
          type: integer
          format: int32
      example:
        name: Icmp1
        icmp-type: 5
        icmp-code: 7
    add-service-icmp:
      title: add-service-icmp
      required:
      - uid
      - name
      - type
      - domain
      - icmp-type
      - icmp-code
      - keep-connections-open-after-policy-installation
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        icmp-type:
          type: integer
          format: int32
        icmp-code:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
      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: []
    show-service-icmp-request:
      title: show-service-icmp-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: info-req
    show-service-icmp:
      title: show-service-icmp
      required:
      - uid
      - name
      - type
      - domain
      - icmp-type
      - keep-connections-open-after-policy-installation
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        icmp-type:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
      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
    set-service-icmp-request:
      title: set-service-icmp-request
      required:
      - name
      - new-name
      - icmp-type
      - icmp-code
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        icmp-type:
          type: integer
          format: int32
        icmp-code:
          type: integer
          format: int32
      example:
        name: icmp1
        new-name: icmp2
        icmp-type: 45
        icmp-code: 13
    set-service-icmp:
      title: set-service-icmp
      required:
      - uid
      - name
      - type
      - domain
      - icmp-type
      - icmp-code
      - keep-connections-open-after-policy-installation
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        icmp-type:
          type: integer
          format: int32
        icmp-code:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
      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: []
    delete-service-icmp-request:
      title: delete-service-icmp-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: icmp3
    delete-service-icmp:
      title: delete-service-icmp
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-services-icmp-request:
      title: show-services-icmp-request
      required:
      - limit
      - offset
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
      example:
        limit: 4
        offset: 3
    show-services-icmp:
      title: show-services-icmp
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object4'
          description: ''
      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
    add-service-icmp6-request:
      title: add-service-icmp6-request
      required:
      - name
      - icmp-type
      - icmp-code
      type: object
      properties:
        name:
          type: string
        icmp-type:
          type: integer
          format: int32
        icmp-code:
          type: integer
          format: int32
      example:
        name: Icmp1
        icmp-type: 5
        icmp-code: 7
    show-service-icmp6-request:
      title: show-service-icmp6-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: echo-reply6
    show-service-icmp6:
      title: show-service-icmp6
      required:
      - uid
      - name
      - type
      - domain
      - icmp-type
      - keep-connections-open-after-policy-installation
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        icmp-type:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
      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: []
    set-service-icmp6-request:
      title: set-service-icmp6-request
      required:
      - name
      - new-name
      - icmp-type
      - icmp-code
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        icmp-type:
          type: integer
          format: int32
        icmp-code:
          type: integer
          format: int32
      example:
        name: icmp1
        new-name: icmp2
        icmp-type: 45
        icmp-code: 13
    delete-service-icmp6-request:
      title: delete-service-icmp6-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: icmp2
    show-services-icmp6-request:
      title: show-services-icmp6-request
      required:
      - limit
      - offset
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
      example:
        limit: 2
        offset: 4
    add-service-sctp-request:
      title: add-service-sctp-request
      required:
      - name
      - port
      - keep-connections-open-after-policy-installation
      - session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      type: object
      properties:
        name:
          type: string
        port:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
      example:
        name: New_SCTP_Service_1
        port: 5669
        keep-connections-open-after-policy-installation: false
        session-timeout: 0
        match-for-any: true
        sync-connections-on-cluster: true
        aggressive-aging:
          enable: true
          timeout: 360
          use-default-timeout: false
    add-service-sctp:
      title: add-service-sctp
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        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'
    add-service-sctpwithgrouprequest:
      title: add-service-sctpwithgrouprequest
      required:
      - name
      - port
      - keep-connections-open-after-policy-installation
      - session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - groups
      type: object
      properties:
        name:
          type: string
        port:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New_SCTP_Service_1
        port: 5669
        keep-connections-open-after-policy-installation: false
        session-timeout: 0
        match-for-any: true
        sync-connections-on-cluster: true
        aggressive-aging:
          enable: true
          timeout: 360
          use-default-timeout: false
        groups:
        - MY_GROUP
    add-service-sctpwithgroup:
      title: add-service-sctpwithgroup
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        port:
          type: string
      example:
        uid: 8a1da428-db25-4ae8-8f7c-88a0d5526da8
        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: 1479721140635
            iso-8601: 2016-11-21T11:39+0200
          last-modifier: aa
          creation-time:
            posix: 1479721140635
            iso-8601: 2016-11-21T11:39+0200
          creator: aa
        tags: []
        read-only: true
        comments: ''
        color: black
        icon: Services/SCTPService
        groups:
        - uid: a16b7bd1-9209-40d2-982e-b782ed3e60f5
          name: MY_GROUP
          type: service-group
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
        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'
    show-service-sctp-request:
      title: show-service-sctp-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_SCTP_Service_1
    show-service-sctp:
      title: show-service-sctp
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        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'
    set-service-sctp-request:
      title: set-service-sctp-request
      required:
      - name
      - new-name
      - color
      - port
      - aggressive-aging
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        color:
          type: string
        port:
          type: integer
          format: int32
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging7'
          - example:
              default-timeout: 3600
      example:
        name: New_SCTP_Service_1
        new-name: New_SCTP_Service_2
        color: green
        port: 5656
        aggressive-aging:
          default-timeout: 3600
    set-service-sctp:
      title: set-service-sctp
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - port
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        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'
    delete-service-sctp-request:
      title: delete-service-sctp-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_SCTP_Service_2
    delete-service-sctp:
      title: delete-service-sctp
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-services-sctp-request:
      title: show-services-sctp-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-services-sctp:
      title: show-services-sctp
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object4'
          description: ''
      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
    add-service-other-request:
      title: add-service-other-request
      required:
      - name
      - keep-connections-open-after-policy-installation
      - session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - ip-protocol
      - aggressive-aging
      type: object
      properties:
        name:
          type: string
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        ip-protocol:
          type: integer
          format: int32
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
      example:
        name: New_Service_1
        keep-connections-open-after-policy-installation: false
        session-timeout: 0
        match-for-any: true
        sync-connections-on-cluster: true
        ip-protocol: 51
        aggressive-aging:
          enable: true
          timeout: 360
          use-default-timeout: false
    add-service-other:
      title: add-service-other
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - ip-protocol
      - accept-replies
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        ip-protocol:
          type: integer
          format: int32
        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
    add-service-otherwithgrouprequest:
      title: add-service-otherwithgrouprequest
      required:
      - name
      - keep-connections-open-after-policy-installation
      - session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - ip-protocol
      - aggressive-aging
      - groups
      type: object
      properties:
        name:
          type: string
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        ip-protocol:
          type: integer
          format: int32
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New_Service_2
        keep-connections-open-after-policy-installation: false
        session-timeout: 0
        match-for-any: true
        sync-connections-on-cluster: true
        ip-protocol: 51
        aggressive-aging:
          enable: true
          timeout: 360
          use-default-timeout: false
        groups:
        - MY_GROUP
    add-service-otherwithgroup:
      title: add-service-otherwithgroup
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - ip-protocol
      - accept-replies
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        ip-protocol:
          type: integer
          format: int32
        accept-replies:
          type: boolean
      example:
        uid: 6ed7d4c0-be35-469b-a923-d29bb1add889
        name: New_Service_2
        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: 1479721442140
            iso-8601: 2016-11-21T11:44+0200
          last-modifier: aa
          creation-time:
            posix: 1479721442140
            iso-8601: 2016-11-21T11:44+0200
          creator: aa
        tags: []
        read-only: true
        comments: ''
        color: black
        icon: Services/OtherService
        groups:
        - uid: 316a8f04-bf5d-4067-8d91-6f3c42816157
          name: MY_GROUP
          type: service-group
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
        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
    show-service-other-request:
      title: show-service-other-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_Service_1
    show-service-other:
      title: show-service-other
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - ip-protocol
      - accept-replies
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        ip-protocol:
          type: integer
          format: int32
        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
    set-service-other-request:
      title: set-service-other-request
      required:
      - name
      - new-name
      - color
      - aggressive-aging
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        color:
          type: string
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging7'
          - example:
              default-timeout: 3600
      example:
        name: New_Service_1
        new-name: New_Service_3
        color: green
        aggressive-aging:
          default-timeout: 3600
    set-service-other:
      title: set-service-other
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - session-timeout
      - use-default-session-timeout
      - match-for-any
      - sync-connections-on-cluster
      - aggressive-aging
      - ip-protocol
      - accept-replies
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        session-timeout:
          type: integer
          format: int32
        use-default-session-timeout:
          type: boolean
        match-for-any:
          type: boolean
        sync-connections-on-cluster:
          type: boolean
        aggressive-aging:
          allOf:
          - $ref: '#/components/schemas/AggressiveAging1'
          - example:
              enable: true
              timeout: 360
              use-default-timeout: false
              default-timeout: 0
        ip-protocol:
          type: integer
          format: int32
        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
    delete-service-other-request:
      title: delete-service-other-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_Service_2
    delete-service-other:
      title: delete-service-other
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-services-other-request:
      title: show-services-other-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-services-other:
      title: show-services-other
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object4'
          description: ''
      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
    add-service-group-request:
      title: add-service-group-request
      required:
      - name
      - members
      type: object
      properties:
        name:
          type: string
        members:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Service Group 1
        members:
        - https
        - bootp
        - nisplus
        - HP-OpCdistm
    add-service-groupwithgrouprequest:
      title: add-service-groupwithgrouprequest
      required:
      - name
      - members
      - groups
      type: object
      properties:
        name:
          type: string
        members:
          type: array
          items:
            type: string
          description: ''
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Service Group 3
        members:
        - https
        groups:
        - My Service Group1
        - My Service Group2
    add-service-groupwithgroup:
      title: add-service-groupwithgroup
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - groups
      - members
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group'
          description: ''
        members:
          type: array
          items:
            $ref: '#/components/schemas/Members2'
          description: ''
      example:
        uid: dce67d0d-5efe-4808-b22d-2eb99e24c70d
        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: 1435472557082
            iso-8601: 2015-06-28T09:22+0300
          last-modifier: aa
          creation-time:
            posix: 1435472557082
            iso-8601: 2015-06-28T09:22+0300
          creator: aa
        tags: []
        name: New Service 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: service-group
          name: My Service Group1
          uid: 70600af1-3e61-41e2-b031-d46b2a171f86
        - 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: service-group
          name: My Service Group2
          uid: e971be7e-8372-475f-9863-c0b0c5285cc0
        members:
        - 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: service-tcp
          name: https
          uid: 97aeb443-9aea-11d5-bd16-0090272ccb30
    Members2:
      title: Members2
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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: service-tcp
        name: https
        uid: 97aeb443-9aea-11d5-bd16-0090272ccb30
    show-service-group-request:
      title: show-service-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Service Group 1
    show-service-groupasrangesrequest:
      title: show-service-groupasrangesrequest
      required:
      - name
      - show-as-ranges
      type: object
      properties:
        name:
          type: string
        show-as-ranges:
          type: string
      example:
        name: DemoServiceGroup
        show-as-ranges: 'true'
    show-service-groupasranges:
      title: show-service-groupasranges
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - ranges
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        ranges:
          allOf:
          - $ref: '#/components/schemas/Ranges4'
          - example:
              tcp:
              - start: '443'
                end: '443'
              udp: []
              others: []
              excluded-others: []
      example:
        uid: be8c1212-1bb1-43d0-8f19-9641f6bc8714
        name: DemoServiceGroup
        type: service-group
        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: 1528268364179
            iso-8601: 2018-06-06T09:59+0300
          last-modifier: aa
          creation-time:
            posix: 1528268364179
            iso-8601: 2018-06-06T09:59+0300
          creator: aa
        tags: []
        read-only: false
        comments: ''
        color: black
        icon: General/group
        groups: []
        ranges:
          tcp:
          - start: '443'
            end: '443'
          udp: []
          others: []
          excluded-others: []
    Ranges4:
      title: Ranges4
      required:
      - tcp
      - udp
      - others
      - excluded-others
      type: object
      properties:
        tcp:
          type: array
          items:
            $ref: '#/components/schemas/Tcp'
          description: ''
        udp:
          type: array
          items:
            type: string
          description: ''
        others:
          type: array
          items:
            type: string
          description: ''
        excluded-others:
          type: array
          items:
            type: string
          description: ''
      example:
        tcp:
        - start: '443'
          end: '443'
        udp: []
        others: []
        excluded-others: []
    Tcp:
      title: Tcp
      required:
      - start
      - end
      type: object
      properties:
        start:
          type: string
        end:
          type: string
      example:
        start: '443'
        end: '443'
    set-service-group-request:
      title: set-service-group-request
      required:
      - name
      - members
      type: object
      properties:
        name:
          type: string
        members:
          allOf:
          - $ref: '#/components/schemas/Members'
          - example:
              add: New Host 2
      example:
        name: New Service Group 1
        members:
          add: http
    delete-service-group-request:
      title: delete-service-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Service Group 1
    show-service-groups-request:
      title: show-service-groups-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-service-groupsasrangesrequest:
      title: show-service-groupsasrangesrequest
      required:
      - limit
      - offset
      - details-level
      - show-as-ranges
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
        show-as-ranges:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: full
        show-as-ranges: 'true'
    add-application-site-request:
      title: add-application-site-request
      required:
      - name
      - primary-category
      - description
      - additional-categories
      - url-list
      - urls-defined-as-regular-expression
      type: object
      properties:
        name:
          type: string
        primary-category:
          type: string
        description:
          type: string
        additional-categories:
          type: array
          items:
            type: string
          description: ''
        url-list:
          type: array
          items:
            type: string
          description: ''
        urls-defined-as-regular-expression:
          type: boolean
      example:
        name: New Application Site 1
        primary-category: Social Networking
        description: My Application Site
        additional-categories:
        - Instant Chat
        - Supports Streaming
        - New Application Site Category 1
        url-list:
        - www.cnet.com
        - www.stackoverflow.com
        urls-defined-as-regular-expression: false
    add-application-sitewithgrouprequest:
      title: add-application-sitewithgrouprequest
      required:
      - name
      - primary-category
      - description
      - additional-categories
      - url-list
      - urls-defined-as-regular-expression
      - groups
      type: object
      properties:
        name:
          type: string
        primary-category:
          type: string
        description:
          type: string
        additional-categories:
          type: array
          items:
            type: string
          description: ''
        url-list:
          type: array
          items:
            type: string
          description: ''
        urls-defined-as-regular-expression:
          type: boolean
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Application Site 2
        primary-category: Social Networking
        description: My Application Site
        additional-categories:
        - Instant Chat
        - Supports Streaming
        - New Application Site Category 1
        url-list:
        - www.cnet.com
        - www.stackoverflow.com
        urls-defined-as-regular-expression: true
        groups:
        - New Application Site Group 1
    show-application-site-request:
      title: show-application-site-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: facebook
    show-application-sitebyapplication-idrequest:
      title: show-application-sitebyapplication-idrequest
      required:
      - application-id
      type: object
      properties:
        application-id:
          type: integer
          format: int32
      example:
        application-id: 10080872
    set-application-site-request:
      title: set-application-site-request
      required:
      - name
      - new-name
      - primary-category
      - description
      - additional-categories
      - url-list
      - urls-defined-as-regular-expression
      - groups
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        primary-category:
          type: string
        description:
          type: string
        additional-categories:
          allOf:
          - $ref: '#/components/schemas/AdditionalCategories'
          - example:
              remove:
              - Instant Chat
              - Supports Streaming
        url-list:
          allOf:
          - $ref: '#/components/schemas/UrlList'
          - example:
              add: www.download.com
        urls-defined-as-regular-expression:
          type: boolean
        groups:
          type: string
      example:
        name: New Application Site 1
        new-name: New Application Site 2
        primary-category: Instant Chat
        description: My New Application Site
        additional-categories:
          remove:
          - Instant Chat
          - Supports Streaming
        url-list:
          add: www.download.com
        urls-defined-as-regular-expression: true
        groups: New Application Site Group 1
    AdditionalCategories:
      title: AdditionalCategories
      required:
      - remove
      type: object
      properties:
        remove:
          type: array
          items:
            type: string
          description: ''
      example:
        remove:
        - Instant Chat
        - Supports Streaming
    UrlList:
      title: UrlList
      required:
      - add
      type: object
      properties:
        add:
          type: string
      example:
        add: www.download.com
    delete-application-site-request:
      title: delete-application-site-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Application Site 2
    show-application-sites-request:
      title: show-application-sites-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-application-site-category-request:
      title: add-application-site-category-request
      required:
      - name
      - description
      type: object
      properties:
        name:
          type: string
        description:
          type: string
      example:
        name: New Application Site Category 1
        description: My Application Site category
    add-application-site-categorywithgrouprequest:
      title: add-application-site-categorywithgrouprequest
      required:
      - name
      - description
      - groups
      type: object
      properties:
        name:
          type: string
        description:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Application Site Category 2
        description: My Application Site category 2
        groups:
        - New Application Site Group 1
    show-application-site-category-request:
      title: show-application-site-category-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: Social Networking
    set-application-site-category-request:
      title: set-application-site-category-request
      required:
      - name
      - new-name
      - description
      - groups
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        description:
          type: string
        groups:
          type: string
      example:
        name: New Application Site Category 1
        new-name: New Application Site Category 2
        description: My new Application Site category
        groups: New Application Site Group 1
    delete-application-site-category-request:
      title: delete-application-site-category-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Application Site Category 2
    show-application-site-categories-request:
      title: show-application-site-categories-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-application-site-group-request:
      title: add-application-site-group-request
      required:
      - name
      - members
      type: object
      properties:
        name:
          type: string
        members:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Application Site Group 1
        members:
        - facebook
        - Social Networking
        - New Application Site 1
        - New Application Site Category 1
    add-application-site-groupwithgrouprequest:
      title: add-application-site-groupwithgrouprequest
      required:
      - name
      - members
      - groups
      type: object
      properties:
        name:
          type: string
        members:
          type: array
          items:
            type: string
          description: ''
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Application Site Group 3
        members:
        - facebook
        - Social Networking
        groups:
        - New Application Site Group 1
        - New Application Site Group 2
    add-application-site-groupwithgroup:
      title: add-application-site-groupwithgroup
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - groups
      - members
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group'
          description: ''
        members:
          type: array
          items:
            $ref: '#/components/schemas/Members2'
          description: ''
      example:
        uid: 78a80391-c8d3-4317-8938-82de07424421
        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: 1435473044262
            iso-8601: 2015-06-28T09:30+0300
          last-modifier: aa
          creation-time:
            posix: 1435473044262
            iso-8601: 2015-06-28T09:30+0300
          creator: aa
        tags: []
        name: New Application Site 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: application-site-group
          name: New Application Site Group 1
          uid: bdcdb02b-c3d4-4aa6-98d5-cf6da1f09eb1
        - 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: application-site-group
          name: New Application Site Group 2
          uid: dab93684-b276-44ce-bcd5-4d7796d15fe0
        members:
        - 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: application-site
          name: Facebook
          uid: 00fa9e3d-4924-0f65-e053-08241dc22da2
        - 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: application-site-category
          name: Social Networking
          uid: 00fa9e44-4165-0f65-e053-08241dc22da2
    show-application-site-group-request:
      title: show-application-site-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Application Site Group 1
    set-application-site-group-request:
      title: set-application-site-group-request
      required:
      - name
      - members
      - groups
      type: object
      properties:
        name:
          type: string
        members:
          allOf:
          - $ref: '#/components/schemas/Members'
          - example:
              add: New Host 2
        groups:
          type: string
      example:
        name: New Application Site Group 1
        members:
          add: AliveProxy
        groups: New Application Site Group 2
    delete-application-site-group-request:
      title: delete-application-site-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Application Site Group 1
    show-application-site-groups-request:
      title: show-application-site-groups-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-service-dce-rpc-request:
      title: add-service-dce-rpc-request
      required:
      - name
      - interface-uuid
      - keep-connections-open-after-policy-installation
      type: object
      properties:
        name:
          type: string
        interface-uuid:
          type: string
        keep-connections-open-after-policy-installation:
          type: boolean
      example:
        name: New_DCE-RPC_Service_1
        interface-uuid: 97aeb460-9aea-11d5-bd16-0090272ccb30
        keep-connections-open-after-policy-installation: false
    add-service-dce-rpc:
      title: add-service-dce-rpc
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - interface-uuid
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        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
    add-service-dce-rpcwithgrouprequest:
      title: add-service-dce-rpcwithgrouprequest
      required:
      - name
      - interface-uuid
      - keep-connections-open-after-policy-installation
      - groups
      type: object
      properties:
        name:
          type: string
        interface-uuid:
          type: string
        keep-connections-open-after-policy-installation:
          type: boolean
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New_DCE-RPC_Service_2
        interface-uuid: 97aeb460-9aea-11d5-bd16-0090272ccb30
        keep-connections-open-after-policy-installation: false
        groups:
        - MY_GROUP
    add-service-dce-rpcwithgroup:
      title: add-service-dce-rpcwithgroup
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - interface-uuid
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        interface-uuid:
          type: string
      example:
        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
        meta-info:
          lock: unlocked
          validation-state: ok
          read-only: false
          last-modify-time:
            posix: 1453627512020
            iso-8601: 2016-01-24T11:25+0200
          last-modifier: aa
          creation-time:
            posix: 1453627512020
            iso-8601: 2016-01-24T11:25+0200
          creator: aa
        tags: []
        comments: ''
        color: black
        icon: Services/DCEService
        groups:
        - uid: 62bc081a-a09a-4109-a719-b26261780f4c
          name: MY_GROUP
          type: service-group
          domain:
            domain-type: domain
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
        keep-connections-open-after-policy-installation: false
        interface-uuid: 97aeb460-9aea-11d5-bd16-0090272ccb30
    show-service-dce-rpc-request:
      title: show-service-dce-rpc-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: HP-OpCdistm
    show-service-dce-rpc:
      title: show-service-dce-rpc
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - interface-uuid
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        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
    set-service-dce-rpc-request:
      title: set-service-dce-rpc-request
      required:
      - name
      - new-name
      - color
      - interface-uuid
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        color:
          type: string
        interface-uuid:
          type: string
      example:
        name: New_DCE-RPC_Service_1
        new-name: New_DCE-RPC_Service_3
        color: green
        interface-uuid: 44aeb460-9aea-11d5-bd16-009027266b30
    set-service-dce-rpc:
      title: set-service-dce-rpc
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - interface-uuid
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        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
    delete-service-dce-rpc-request:
      title: delete-service-dce-rpc-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_DCE-RPC_Service_2
    delete-service-dce-rpc:
      title: delete-service-dce-rpc
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-services-dce-rpc-request:
      title: show-services-dce-rpc-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-services-dce-rpc:
      title: show-services-dce-rpc
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object4'
          description: ''
      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
    add-service-rpc-request:
      title: add-service-rpc-request
      required:
      - name
      - program-number
      - keep-connections-open-after-policy-installation
      type: object
      properties:
        name:
          type: string
        program-number:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
      example:
        name: New_RPC_Service_1
        program-number: 5669
        keep-connections-open-after-policy-installation: false
    add-service-rpc:
      title: add-service-rpc
      required:
      - message
      - code
      - errors
      type: object
      properties:
        message:
          type: string
        code:
          type: string
        errors:
          type: array
          items:
            $ref: '#/components/schemas/Error'
          description: ''
      example:
        message: Validation failed with 1 error
        code: generic_error
        errors:
        - message: More than one object named 'New_RPC_Service_1' exists.
    Error:
      title: Error
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: More than one object named 'New_RPC_Service_1' exists.
    add-service-rpcwithgrouprequest:
      title: add-service-rpcwithgrouprequest
      required:
      - name
      - program-number
      - keep-connections-open-after-policy-installation
      - groups
      type: object
      properties:
        name:
          type: string
        program-number:
          type: integer
          format: int32
        keep-connections-open-after-policy-installation:
          type: boolean
        groups:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New_RPC_Service_2
        program-number: 5669
        keep-connections-open-after-policy-installation: false
        groups:
        - MY_GROUP
    add-service-rpcwithgroup:
      title: add-service-rpcwithgroup
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - program-number
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group3'
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        program-number:
          type: integer
          format: int32
      example:
        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
        meta-info:
          lock: unlocked
          validation-state: ok
          read-only: false
          last-modify-time:
            posix: 1453627762831
            iso-8601: 2016-01-24T11:29+0200
          last-modifier: aa
          creation-time:
            posix: 1453627762831
            iso-8601: 2016-01-24T11:29+0200
          creator: aa
        tags: []
        comments: ''
        color: black
        icon: Services/RPCService
        groups:
        - uid: 62bc081a-a09a-4109-a719-b26261780f4c
          name: MY_GROUP
          type: service-group
          domain:
            domain-type: domain
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
        keep-connections-open-after-policy-installation: false
        program-number: 5669
    show-service-rpc-request:
      title: show-service-rpc-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: nisplus
    show-service-rpc:
      title: show-service-rpc
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - program-number
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        program-number:
          type: integer
          format: int32
      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
    set-service-rpc-request:
      title: set-service-rpc-request
      required:
      - name
      - new-name
      - color
      - program-number
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        color:
          type: string
        program-number:
          type: integer
          format: int32
      example:
        name: New_RPC_Service_1
        new-name: New_RPC_Service_5
        color: green
        program-number: 5656
    set-service-rpc:
      title: set-service-rpc
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      - groups
      - keep-connections-open-after-policy-installation
      - program-number
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        keep-connections-open-after-policy-installation:
          type: boolean
        program-number:
          type: integer
          format: int32
      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
    delete-service-rpc-request:
      title: delete-service-rpc-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_RPC_Service_2
    delete-service-rpc:
      title: delete-service-rpc
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: OK
    show-services-rpc-request:
      title: show-services-rpc-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-services-rpc:
      title: show-services-rpc
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object4'
          description: ''
      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
    add-access-rule-request:
      title: add-access-rule-request
      required:
      - layer
      - position
      - name
      - service
      - vpn
      type: object
      properties:
        layer:
          type: string
        position:
          type: integer
          format: int32
        name:
          type: string
        service:
          type: array
          items:
            type: string
          description: ''
        vpn:
          type: string
      example:
        layer: Network
        position: 1
        name: Rule 1
        service:
        - SMTP
        - AOL
        vpn: MyIntranet
    add-access-rule:
      title: add-access-rule
      required:
      - uid
      - name
      - type
      - domain
      - enabled
      - comments
      - meta-info
      - install-on
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - vpn
      - action
      - action-settings
      - content
      - content-negate
      - content-direction
      - track
      - track-alert
      - time
      - custom-fields
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        enabled:
          type: boolean
        comments:
          type: string
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn'
          description: ''
        source:
          type: array
          items:
            $ref: '#/components/schemas/Source'
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            $ref: '#/components/schemas/Destination'
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            $ref: '#/components/schemas/Service'
          description: ''
        service-negate:
          type: boolean
        vpn:
          type: array
          items:
            $ref: '#/components/schemas/Vpn'
          description: ''
        action:
          allOf:
          - $ref: '#/components/schemas/Action'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/ActionSettings'
          - example:
              enable-identity-captive-portal: false
        content:
          type: array
          items:
            $ref: '#/components/schemas/Content'
          description: ''
        content-negate:
          type: boolean
        content-direction:
          type: string
        track:
          allOf:
          - $ref: '#/components/schemas/Track'
          - example:
              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:
          type: string
        time:
          type: array
          items:
            $ref: '#/components/schemas/Time'
          description: ''
        custom-fields:
          allOf:
          - $ref: '#/components/schemas/CustomFields'
          - example:
              field-1: ''
              field-2: ''
              field-3: ''
      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: ''
    InstallOn:
      title: InstallOn
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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:
      title: Source
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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:
      title: Destination
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    Service:
      title: Service
      required:
      - uid
      - name
      - type
      - domain
      - port
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        port:
          type: string
      example:
        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'
    Vpn:
      title: Vpn
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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:
      title: Action
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    ActionSettings:
      title: ActionSettings
      required:
      - enable-identity-captive-portal
      type: object
      properties:
        enable-identity-captive-portal:
          type: boolean
      example:
        enable-identity-captive-portal: false
    Content:
      title: Content
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    Track:
      title: Track
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    Time:
      title: Time
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    CustomFields:
      title: CustomFields
      required:
      - field-1
      - field-2
      - field-3
      type: object
      properties:
        field-1:
          type: string
        field-2:
          type: string
        field-3:
          type: string
      example:
        field-1: ''
        field-2: ''
        field-3: ''
    add-access-ruleaboveanexistingrulerequest:
      title: add-access-ruleaboveanexistingrulerequest
      required:
      - layer
      - position
      - name
      type: object
      properties:
        layer:
          type: string
        position:
          allOf:
          - $ref: '#/components/schemas/Position'
          - example:
              above: Last rule
        name:
          type: string
      example:
        layer: Network
        position:
          above: Last rule
        name: One before the last
    Position:
      title: Position
      required:
      - above
      type: object
      properties:
        above:
          type: string
      example:
        above: Last rule
    add-access-ruletothebottomofacustomsectionrequest:
      title: add-access-ruletothebottomofacustomsectionrequest
      required:
      - layer
      - position
      - name
      type: object
      properties:
        layer:
          type: string
        position:
          allOf:
          - $ref: '#/components/schemas/Position1'
          - example:
              bottom: My Access Section
        name:
          type: string
      example:
        layer: Network
        position:
          bottom: My Access Section
        name: Last rule in the section
    Position1:
      title: Position1
      required:
      - bottom
      type: object
      properties:
        bottom:
          type: string
      example:
        bottom: My Access Section
    add-access-ruletothetopoftherulebaserequest:
      title: add-access-ruletothetopoftherulebaserequest
      required:
      - layer
      - position
      - name
      type: object
      properties:
        layer:
          type: string
        position:
          type: string
        name:
          type: string
      example:
        layer: Network
        position: top
        name: Top Rule
    add-access-rulewithcustomfieldsrequest:
      title: add-access-rulewithcustomfieldsrequest
      required:
      - layer
      - position
      - name
      - custom-fields
      type: object
      properties:
        layer:
          type: string
        position:
          type: integer
          format: int32
        name:
          type: string
        custom-fields:
          allOf:
          - $ref: '#/components/schemas/CustomFields'
          - example:
              field-1: ''
              field-2: ''
              field-3: ''
      example:
        layer: Network
        position: 1
        name: Rule 1
        custom-fields:
          field-1: first field
          field-2: second field
          field-3: third field
    add-access-rulewithinlinelayerrequest:
      title: add-access-rulewithinlinelayerrequest
      required:
      - layer
      - position
      - name
      - action
      - inline-layer
      type: object
      properties:
        layer:
          type: string
        position:
          type: integer
          format: int32
        name:
          type: string
        action:
          type: string
        inline-layer:
          type: string
      example:
        layer: Network
        position: 1
        name: Rule 1
        action: Apply Layer
        inline-layer: Inline
    show-access-rulebase-request:
      title: show-access-rulebase-request
      required:
      - offset
      - limit
      - name
      - details-level
      - use-object-dictionary
      type: object
      properties:
        offset:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        name:
          type: string
        details-level:
          type: string
        use-object-dictionary:
          type: boolean
      example:
        offset: 0
        limit: 20
        name: Network
        details-level: standard
        use-object-dictionary: true
    show-access-rulebase:
      title: show-access-rulebase
      required:
      - from
      - to
      - total
      - name
      - uid
      - rulebase
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        name:
          type: string
        uid:
          type: string
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase'
          description: ''
    Rulebase:
      title: Rulebase
      required:
      - from
      - to
      - rulebase
      - name
      - uid
      - type
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase1'
          description: ''
        name:
          type: string
        uid:
          type: string
        type:
          type: string
      example:
        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
    Rulebase1:
      title: Rulebase1
      required:
      - uid
      - enabled
      - comments
      - domain
      - meta-info
      - install-on
      - name
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - vpn
      - action
      - action-settings
      - data
      - data-negate
      - data-direction
      - track
      - track-alert
      - time
      - custom-fields
      - rule-number
      - type
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn1'
          description: ''
        name:
          type: string
        source:
          type: array
          items:
            $ref: '#/components/schemas/Source1'
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            $ref: '#/components/schemas/Destination1'
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            $ref: '#/components/schemas/Service1'
          description: ''
        service-negate:
          type: boolean
        vpn:
          type: array
          items:
            $ref: '#/components/schemas/Vpn1'
          description: ''
        action:
          allOf:
          - $ref: '#/components/schemas/Action1'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/ActionSettings'
          - example:
              enable-identity-captive-portal: false
        data:
          type: array
          items:
            $ref: '#/components/schemas/Datum'
          description: ''
        data-negate:
          type: boolean
        data-direction:
          type: string
        track:
          allOf:
          - $ref: '#/components/schemas/Track1'
          - example:
              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:
          type: string
        time:
          type: array
          items:
            $ref: '#/components/schemas/Time1'
          description: ''
        custom-fields:
          allOf:
          - $ref: '#/components/schemas/CustomFields'
          - example:
              field-1: ''
              field-2: ''
              field-3: ''
        rule-number:
          type: integer
          format: int32
        type:
          type: string
      example:
        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
    InstallOn1:
      title: InstallOn1
      required:
      - domainId
      - color
      - xmlType
      - uid
      - folder
      - meta-info
      - tags
      - name
      - icon
      - comments
      type: object
      properties:
        domainId:
          allOf:
          - $ref: '#/components/schemas/DomainId'
          - example:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              type: data domain
        color:
          type: string
        xmlType:
          type: string
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo71'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        icon:
          type: string
        comments:
          type: string
      example:
        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
    DomainId:
      title: DomainId
      required:
      - uid
      - name
      - type
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
      example:
        uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
        name: Check Point Data
        type: data domain
    MetaInfo71:
      title: MetaInfo71
      required:
      - validation-state
      - last-modify-time
      - last-modifier
      - creation-time
      - creator
      type: object
      properties:
        validation-state:
          type: string
        last-modify-time:
          allOf:
          - $ref: '#/components/schemas/LastModifyTime'
          - example:
              posix: 1429440561055
              iso-8601: 2015-04-19T13:49+0300
        last-modifier:
          type: string
        creation-time:
          allOf:
          - $ref: '#/components/schemas/CreationTime'
          - example:
              posix: 1429440561055
              iso-8601: 2015-04-19T13:49+0300
        creator:
          type: string
      example:
        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
    Source1:
      title: Source1
      required:
      - domainId
      - color
      - xmlType
      - uid
      - folder
      - meta-info
      - tags
      - name
      - icon
      - comments
      - display-name
      type: object
      properties:
        domainId:
          allOf:
          - $ref: '#/components/schemas/DomainId'
          - example:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              type: data domain
        color:
          type: string
        xmlType:
          type: string
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo71'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        icon:
          type: string
        comments:
          type: string
        display-name:
          type: string
      example:
        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: ''
    Destination1:
      title: Destination1
      required:
      - domainId
      - color
      - xmlType
      - uid
      - folder
      - meta-info
      - tags
      - name
      - icon
      - display-name
      type: object
      properties:
        domainId:
          allOf:
          - $ref: '#/components/schemas/DomainId'
          - example:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              type: data domain
        color:
          type: string
        xmlType:
          type: string
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo71'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        icon:
          type: string
        display-name:
          type: string
        comments:
          type: string
      example:
        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: ''
    Service1:
      title: Service1
      required:
      - domainId
      - color
      - xmlType
      - uid
      - folder
      - meta-info
      - tags
      - name
      - icon
      - display-name
      type: object
      properties:
        domainId:
          allOf:
          - $ref: '#/components/schemas/DomainId'
          - example:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              type: data domain
        color:
          type: string
        xmlType:
          type: string
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo71'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        icon:
          type: string
        display-name:
          type: string
      example:
        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: ''
    Vpn1:
      title: Vpn1
      required:
      - domainId
      - color
      - xmlType
      - uid
      - folder
      - meta-info
      - tags
      - name
      - icon
      - display-name
      type: object
      properties:
        domainId:
          allOf:
          - $ref: '#/components/schemas/DomainId'
          - example:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              type: data domain
        color:
          type: string
        xmlType:
          type: string
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo71'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        icon:
          type: string
        display-name:
          type: string
      example:
        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: ''
    Action1:
      title: Action1
      required:
      - domainId
      - color
      - xmlType
      - uid
      - folder
      - meta-info
      - tags
      - name
      - icon
      - comments
      - display-name
      type: object
      properties:
        domainId:
          allOf:
          - $ref: '#/components/schemas/DomainId'
          - example:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              type: data domain
        color:
          type: string
        xmlType:
          type: string
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo71'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        icon:
          type: string
        comments:
          type: string
        display-name:
          type: string
      example:
        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
    Datum:
      title: Datum
      required:
      - domainId
      - color
      - xmlType
      - uid
      - folder
      - meta-info
      - tags
      - name
      - icon
      - display-name
      type: object
      properties:
        domainId:
          allOf:
          - $ref: '#/components/schemas/DomainId'
          - example:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              type: data domain
        color:
          type: string
        xmlType:
          type: string
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo71'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        icon:
          type: string
        display-name:
          type: string
      example:
        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: ''
    Track1:
      title: Track1
      required:
      - domainId
      - color
      - xmlType
      - uid
      - folder
      - meta-info
      - tags
      - name
      - icon
      - comments
      type: object
      properties:
        domainId:
          allOf:
          - $ref: '#/components/schemas/DomainId'
          - example:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              type: data domain
        color:
          type: string
        xmlType:
          type: string
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo71'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        icon:
          type: string
        comments:
          type: string
      example:
        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
    Time1:
      title: Time1
      required:
      - domainId
      - color
      - xmlType
      - uid
      - folder
      - meta-info
      - tags
      - name
      - icon
      - display-name
      type: object
      properties:
        domainId:
          allOf:
          - $ref: '#/components/schemas/DomainId'
          - example:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              type: data domain
        color:
          type: string
        xmlType:
          type: string
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo71'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        icon:
          type: string
        display-name:
          type: string
      example:
        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: ''
    show-access-rulebasewithrulesdisplayedasrangesrequest:
      title: show-access-rulebasewithrulesdisplayedasrangesrequest
      required:
      - offset
      - limit
      - name
      - show-as-ranges
      type: object
      properties:
        offset:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        name:
          type: string
        show-as-ranges:
          type: string
      example:
        offset: 0
        limit: 20
        name: Network
        show-as-ranges: 'true'
    show-access-rulebasewithrulesdisplayedasranges:
      title: show-access-rulebasewithrulesdisplayedasranges
      required:
      - uid
      - name
      - from
      - to
      - total
      - rulebase
      - objects-dictionary
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase2'
          description: ''
        objects-dictionary:
          type: array
          items:
            $ref: '#/components/schemas/ObjectsDictionary'
          description: ''
      example:
        uid: 7f7308f0-7540-4631-832c-503de7b27c3d
        name: Network
        from: 1
        to: 1
        total: 1
        rulebase:
        - uid: 0f83bd2b-7d7c-4063-920b-c160779437e1
          name: Stealth Rules
          type: access-section
          from: 1
          to: 1
          rulebase:
          - uid: 36e2e7fd-e2af-4b6c-8692-6aa77f8f4913
            name: Admin access to the Gateways
            type: access-rule
            domain:
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
              domain-type: domain
            enabled: true
            comments: ''
            meta-info:
              lock: unlocked
              validation-state: ok
              last-modify-time:
                posix: 1527405735252
                iso-8601: 2018-05-27T10:22+0300
              last-modifier: aa
              creation-time:
                posix: 1527405608448
                iso-8601: 2018-05-27T10:20+0300
              creator: aa
            install-on:
            - 6c488338-8eec-4103-ad21-cd461ac2c476
            source-ranges:
              ipv4:
              - start: 192.168.200.133
                end: 192.168.200.133
              - start: 192.168.20.132
                end: 192.168.20.132
              - start: 192.168.200.131
                end: 192.168.200.131
              ipv6: []
              others: []
              excluded-others: []
            destination-ranges:
              ipv4:
              - start: 172.23.26.177
                end: 172.23.26.177
              ipv6: []
              others: []
              excluded-others: []
            service-ranges:
              tcp:
              - start: '22'
                end: '22'
              udp: []
              others:
              - 97aeb40f-9aea-11d5-bd16-0090272ccb30
              - 97aeb40a-9aea-11d5-bd16-0090272ccb30
              - 97aeb40d-9aea-11d5-bd16-0090272ccb30
              - 97aeb411-9aea-11d5-bd16-0090272ccb30
              excluded-others: []
            vpn:
            - 97aeb369-9aea-11d5-bd16-0090272ccb30
            action: 6c488338-8eec-4103-ad21-cd461ac2c472
            action-settings:
              enable-identity-captive-portal: false
            content:
            - 97aeb369-9aea-11d5-bd16-0090272ccb30
            content-negate: false
            content-direction: any
            time:
            - 97aeb369-9aea-11d5-bd16-0090272ccb30
            custom-fields:
              field-1: ''
              field-2: ''
              field-3: ''
            rule-number: 1
            track:
              type: 598ead32-aa42-4615-90ed-f51a5928d41d
              per-session: false
              per-connection: true
              accounting: false
              alert: none
        objects-dictionary:
        - uid: 6c488338-8eec-4103-ad21-cd461ac2c472
          name: Accept
          type: RulebaseAction
          domain:
            uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
            name: Check Point Data
            domain-type: data domain
        - 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
        - uid: ac661e37-6f77-0a41-97aa-59d8f5fb585e
          name: halo-270-smx-take-29
          type: CpmiHostCkp
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
        - uid: 598ead32-aa42-4615-90ed-f51a5928d41d
          name: Log
          type: Track
          domain:
            uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
            name: Check Point Data
            domain-type: data domain
        - uid: bfacd5ee-86bb-4da5-8366-b5de4a753229
          name: Manage-Services
          type: service-group
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
        - 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
        - uid: 7727af92-2ee9-4afc-965e-5411cb3129e3
          name: Support-Specialists
          type: group
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
    Rulebase2:
      title: Rulebase2
      required:
      - uid
      - name
      - type
      - from
      - to
      - rulebase
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase3'
          description: ''
      example:
        uid: 0f83bd2b-7d7c-4063-920b-c160779437e1
        name: Stealth Rules
        type: access-section
        from: 1
        to: 1
        rulebase:
        - uid: 36e2e7fd-e2af-4b6c-8692-6aa77f8f4913
          name: Admin access to the Gateways
          type: access-rule
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          enabled: true
          comments: ''
          meta-info:
            lock: unlocked
            validation-state: ok
            last-modify-time:
              posix: 1527405735252
              iso-8601: 2018-05-27T10:22+0300
            last-modifier: aa
            creation-time:
              posix: 1527405608448
              iso-8601: 2018-05-27T10:20+0300
            creator: aa
          install-on:
          - 6c488338-8eec-4103-ad21-cd461ac2c476
          source-ranges:
            ipv4:
            - start: 192.168.200.133
              end: 192.168.200.133
            - start: 192.168.20.132
              end: 192.168.20.132
            - start: 192.168.200.131
              end: 192.168.200.131
            ipv6: []
            others: []
            excluded-others: []
          destination-ranges:
            ipv4:
            - start: 172.23.26.177
              end: 172.23.26.177
            ipv6: []
            others: []
            excluded-others: []
          service-ranges:
            tcp:
            - start: '22'
              end: '22'
            udp: []
            others:
            - 97aeb40f-9aea-11d5-bd16-0090272ccb30
            - 97aeb40a-9aea-11d5-bd16-0090272ccb30
            - 97aeb40d-9aea-11d5-bd16-0090272ccb30
            - 97aeb411-9aea-11d5-bd16-0090272ccb30
            excluded-others: []
          vpn:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          action: 6c488338-8eec-4103-ad21-cd461ac2c472
          action-settings:
            enable-identity-captive-portal: false
          content:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          content-negate: false
          content-direction: any
          time:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          custom-fields:
            field-1: ''
            field-2: ''
            field-3: ''
          rule-number: 1
          track:
            type: 598ead32-aa42-4615-90ed-f51a5928d41d
            per-session: false
            per-connection: true
            accounting: false
            alert: none
    Rulebase3:
      title: Rulebase3
      required:
      - uid
      - name
      - type
      - domain
      - enabled
      - comments
      - meta-info
      - install-on
      - source-ranges
      - destination-ranges
      - service-ranges
      - vpn
      - action
      - action-settings
      - content
      - content-negate
      - content-direction
      - time
      - custom-fields
      - rule-number
      - track
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        enabled:
          type: boolean
        comments:
          type: string
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        install-on:
          type: array
          items:
            type: string
          description: ''
        source-ranges:
          allOf:
          - $ref: '#/components/schemas/SourceRanges'
          - example:
              ipv4:
              - start: 192.168.200.133
                end: 192.168.200.133
              - start: 192.168.20.132
                end: 192.168.20.132
              - start: 192.168.200.131
                end: 192.168.200.131
              ipv6: []
              others: []
              excluded-others: []
        destination-ranges:
          allOf:
          - $ref: '#/components/schemas/DestinationRanges'
          - example:
              ipv4:
              - start: 172.23.26.177
                end: 172.23.26.177
              ipv6: []
              others: []
              excluded-others: []
        service-ranges:
          allOf:
          - $ref: '#/components/schemas/ServiceRanges'
          - example:
              tcp:
              - start: '22'
                end: '22'
              udp: []
              others:
              - 97aeb40f-9aea-11d5-bd16-0090272ccb30
              - 97aeb40a-9aea-11d5-bd16-0090272ccb30
              - 97aeb40d-9aea-11d5-bd16-0090272ccb30
              - 97aeb411-9aea-11d5-bd16-0090272ccb30
              excluded-others: []
        vpn:
          type: array
          items:
            type: string
          description: ''
        action:
          type: string
        action-settings:
          allOf:
          - $ref: '#/components/schemas/ActionSettings'
          - example:
              enable-identity-captive-portal: false
        content:
          type: array
          items:
            type: string
          description: ''
        content-negate:
          type: boolean
        content-direction:
          type: string
        time:
          type: array
          items:
            type: string
          description: ''
        custom-fields:
          allOf:
          - $ref: '#/components/schemas/CustomFields'
          - example:
              field-1: ''
              field-2: ''
              field-3: ''
        rule-number:
          type: integer
          format: int32
        track:
          allOf:
          - $ref: '#/components/schemas/Track2'
          - example:
              type: 598ead32-aa42-4615-90ed-f51a5928d41d
              per-session: false
              per-connection: true
              accounting: false
              alert: none
      example:
        uid: 36e2e7fd-e2af-4b6c-8692-6aa77f8f4913
        name: Admin access to the Gateways
        type: access-rule
        domain:
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
          domain-type: domain
        enabled: true
        comments: ''
        meta-info:
          lock: unlocked
          validation-state: ok
          last-modify-time:
            posix: 1527405735252
            iso-8601: 2018-05-27T10:22+0300
          last-modifier: aa
          creation-time:
            posix: 1527405608448
            iso-8601: 2018-05-27T10:20+0300
          creator: aa
        install-on:
        - 6c488338-8eec-4103-ad21-cd461ac2c476
        source-ranges:
          ipv4:
          - start: 192.168.200.133
            end: 192.168.200.133
          - start: 192.168.20.132
            end: 192.168.20.132
          - start: 192.168.200.131
            end: 192.168.200.131
          ipv6: []
          others: []
          excluded-others: []
        destination-ranges:
          ipv4:
          - start: 172.23.26.177
            end: 172.23.26.177
          ipv6: []
          others: []
          excluded-others: []
        service-ranges:
          tcp:
          - start: '22'
            end: '22'
          udp: []
          others:
          - 97aeb40f-9aea-11d5-bd16-0090272ccb30
          - 97aeb40a-9aea-11d5-bd16-0090272ccb30
          - 97aeb40d-9aea-11d5-bd16-0090272ccb30
          - 97aeb411-9aea-11d5-bd16-0090272ccb30
          excluded-others: []
        vpn:
        - 97aeb369-9aea-11d5-bd16-0090272ccb30
        action: 6c488338-8eec-4103-ad21-cd461ac2c472
        action-settings:
          enable-identity-captive-portal: false
        content:
        - 97aeb369-9aea-11d5-bd16-0090272ccb30
        content-negate: false
        content-direction: any
        time:
        - 97aeb369-9aea-11d5-bd16-0090272ccb30
        custom-fields:
          field-1: ''
          field-2: ''
          field-3: ''
        rule-number: 1
        track:
          type: 598ead32-aa42-4615-90ed-f51a5928d41d
          per-session: false
          per-connection: true
          accounting: false
          alert: none
    SourceRanges:
      title: SourceRanges
      required:
      - ipv4
      - ipv6
      - others
      - excluded-others
      type: object
      properties:
        ipv4:
          type: array
          items:
            $ref: '#/components/schemas/Ipv4'
          description: ''
        ipv6:
          type: array
          items:
            type: string
          description: ''
        others:
          type: array
          items:
            type: string
          description: ''
        excluded-others:
          type: array
          items:
            type: string
          description: ''
      example:
        ipv4:
        - start: 192.168.200.133
          end: 192.168.200.133
        - start: 192.168.20.132
          end: 192.168.20.132
        - start: 192.168.200.131
          end: 192.168.200.131
        ipv6: []
        others: []
        excluded-others: []
    DestinationRanges:
      title: DestinationRanges
      required:
      - ipv4
      - ipv6
      - others
      - excluded-others
      type: object
      properties:
        ipv4:
          type: array
          items:
            $ref: '#/components/schemas/Ipv4'
          description: ''
        ipv6:
          type: array
          items:
            type: string
          description: ''
        others:
          type: array
          items:
            type: string
          description: ''
        excluded-others:
          type: array
          items:
            type: string
          description: ''
      example:
        ipv4:
        - start: 172.23.26.177
          end: 172.23.26.177
        ipv6: []
        others: []
        excluded-others: []
    ServiceRanges:
      title: ServiceRanges
      required:
      - tcp
      - udp
      - others
      - excluded-others
      type: object
      properties:
        tcp:
          type: array
          items:
            $ref: '#/components/schemas/Tcp'
          description: ''
        udp:
          type: array
          items:
            type: string
          description: ''
        others:
          type: array
          items:
            type: string
          description: ''
        excluded-others:
          type: array
          items:
            type: string
          description: ''
      example:
        tcp:
        - start: '22'
          end: '22'
        udp: []
        others:
        - 97aeb40f-9aea-11d5-bd16-0090272ccb30
        - 97aeb40a-9aea-11d5-bd16-0090272ccb30
        - 97aeb40d-9aea-11d5-bd16-0090272ccb30
        - 97aeb411-9aea-11d5-bd16-0090272ccb30
        excluded-others: []
    Track2:
      title: Track2
      required:
      - type
      - per-session
      - per-connection
      - accounting
      - alert
      type: object
      properties:
        type:
          type: string
        per-session:
          type: boolean
        per-connection:
          type: boolean
        accounting:
          type: boolean
        alert:
          type: string
      example:
        type: 598ead32-aa42-4615-90ed-f51a5928d41d
        per-session: false
        per-connection: true
        accounting: false
        alert: none
    ObjectsDictionary:
      title: ObjectsDictionary
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        uid: 6c488338-8eec-4103-ad21-cd461ac2c472
        name: Accept
        type: RulebaseAction
        domain:
          uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
          name: Check Point Data
          domain-type: data domain
    show-access-rulebase-with-filter-request:
      title: show-access-rulebase-with-filter-request
      required:
      - offset
      - limit
      - name
      - details-level
      - use-object-dictionary
      - filter
      type: object
      properties:
        offset:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        name:
          type: string
        details-level:
          type: string
        use-object-dictionary:
          type: boolean
        filter:
          type: string
      example:
        offset: 0
        limit: 20
        name: Network
        details-level: standard
        use-object-dictionary: true
        filter: CPDShield
    show-access-rulebase-with-filter:
      title: show-access-rulebase-with-filter
      required:
      - uid
      - name
      - from
      - to
      - total
      - rulebase
      - objects-dictionary
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase4'
          description: ''
        objects-dictionary:
          type: array
          items:
            $ref: '#/components/schemas/ObjectsDictionary'
          description: ''
      example:
        uid: aa7b850a-db90-4e5e-91c1-cb21bced1a93
        name: Network
        from: 1
        to: 1
        total: 1
        rulebase:
        - uid: 76b830c8-e43f-4c9a-9722-8353829ff7b1
          name: Rule1
          type: access-rule
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          enabled: true
          comments: ''
          meta-info:
            lock: unlocked
            validation-state: ok
            last-modify-time:
              posix: 1482658663305
              iso-8601: 2016-12-25T11:37+0200
            last-modifier: aa
            creation-time:
              posix: 1482150758417
              iso-8601: 2016-12-19T14:32+0200
            creator: aa
          install-on:
          - 6c488338-8eec-4103-ad21-cd461ac2c476
          source:
          - 237a4cbc-7fb6-4d50-872a-4904468271c4
          source-negate: false
          destination:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          destination-negate: false
          service:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          service-negate: false
          vpn:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          action: 6c488338-8eec-4103-ad21-cd461ac2c472
          action-settings:
            enable-identity-captive-portal: false
          content:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          content-negate: false
          content-direction: any
          track: 29e53e3d-23bf-48fe-b6b1-d59bd88036f9
          track-alert: none
          time:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          custom-fields:
            field-1: ''
            field-2: ''
            field-3: ''
          rule-number: 1
        objects-dictionary:
        - uid: 6c488338-8eec-4103-ad21-cd461ac2c472
          name: Accept
          type: RulebaseAction
          domain:
            uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
            name: Check Point Data
            domain-type: data domain
        - 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
        - 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
        - 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
        - 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
    Rulebase4:
      title: Rulebase4
      required:
      - uid
      - name
      - type
      - domain
      - enabled
      - comments
      - meta-info
      - install-on
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - vpn
      - action
      - action-settings
      - content
      - content-negate
      - content-direction
      - track
      - track-alert
      - time
      - custom-fields
      - rule-number
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        enabled:
          type: boolean
        comments:
          type: string
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        install-on:
          type: array
          items:
            type: string
          description: ''
        source:
          type: array
          items:
            type: string
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            type: string
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            type: string
          description: ''
        service-negate:
          type: boolean
        vpn:
          type: array
          items:
            type: string
          description: ''
        action:
          type: string
        action-settings:
          allOf:
          - $ref: '#/components/schemas/ActionSettings'
          - example:
              enable-identity-captive-portal: false
        content:
          type: array
          items:
            type: string
          description: ''
        content-negate:
          type: boolean
        content-direction:
          type: string
        track:
          type: string
        track-alert:
          type: string
        time:
          type: array
          items:
            type: string
          description: ''
        custom-fields:
          allOf:
          - $ref: '#/components/schemas/CustomFields'
          - example:
              field-1: ''
              field-2: ''
              field-3: ''
        rule-number:
          type: integer
          format: int32
      example:
        uid: 76b830c8-e43f-4c9a-9722-8353829ff7b1
        name: Rule1
        type: access-rule
        domain:
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
          domain-type: domain
        enabled: true
        comments: ''
        meta-info:
          lock: unlocked
          validation-state: ok
          last-modify-time:
            posix: 1482658663305
            iso-8601: 2016-12-25T11:37+0200
          last-modifier: aa
          creation-time:
            posix: 1482150758417
            iso-8601: 2016-12-19T14:32+0200
          creator: aa
        install-on:
        - 6c488338-8eec-4103-ad21-cd461ac2c476
        source:
        - 237a4cbc-7fb6-4d50-872a-4904468271c4
        source-negate: false
        destination:
        - 97aeb369-9aea-11d5-bd16-0090272ccb30
        destination-negate: false
        service:
        - 97aeb369-9aea-11d5-bd16-0090272ccb30
        service-negate: false
        vpn:
        - 97aeb369-9aea-11d5-bd16-0090272ccb30
        action: 6c488338-8eec-4103-ad21-cd461ac2c472
        action-settings:
          enable-identity-captive-portal: false
        content:
        - 97aeb369-9aea-11d5-bd16-0090272ccb30
        content-negate: false
        content-direction: any
        track: 29e53e3d-23bf-48fe-b6b1-d59bd88036f9
        track-alert: none
        time:
        - 97aeb369-9aea-11d5-bd16-0090272ccb30
        custom-fields:
          field-1: ''
          field-2: ''
          field-3: ''
        rule-number: 1
    show-access-rulebasewithfilterbyruleUIDRequest:
      title: show-access-rulebasewithfilterbyruleUIDRequest
      required:
      - offset
      - limit
      - name
      - details-level
      - use-object-dictionary
      - filter
      type: object
      properties:
        offset:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        name:
          type: string
        details-level:
          type: string
        use-object-dictionary:
          type: boolean
        filter:
          type: string
      example:
        offset: 0
        limit: 20
        name: Network
        details-level: standard
        use-object-dictionary: true
        filter: uid:be146170-a996-47c8-acfd-2b7dfb9e6d0f OR uid:f35e49c9-1032-41ab-babb-40ccc95b3df4 OR uid:8ed702b5-4f0f-4539-9e0e-264a22de9149
    show-access-rulebasewithfilterbyruleUID:
      title: show-access-rulebasewithfilterbyruleUID
      required:
      - uid
      - name
      - from
      - to
      - total
      - rulebase
      - objects-dictionary
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase4'
          description: ''
        objects-dictionary:
          type: array
          items:
            $ref: '#/components/schemas/ObjectsDictionary'
          description: ''
      example:
        uid: aa7b850a-db90-4e5e-91c1-cb21bced1a93
        name: Network
        from: 1
        to: 1
        total: 1
        rulebase:
        - uid: be146170-a996-47c8-acfd-2b7dfb9e6d0f
          name: Rule1
          type: access-rule
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          enabled: true
          comments: ''
          meta-info:
            lock: unlocked
            validation-state: ok
            last-modify-time:
              posix: 1482658663305
              iso-8601: 2016-12-25T11:37+0200
            last-modifier: aa
            creation-time:
              posix: 1482150758417
              iso-8601: 2016-12-19T14:32+0200
            creator: aa
          install-on:
          - 6c488338-8eec-4103-ad21-cd461ac2c476
          source:
          - 237a4cbc-7fb6-4d50-872a-4904468271c4
          source-negate: false
          destination:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          destination-negate: false
          service:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          service-negate: false
          vpn:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          action: 6c488338-8eec-4103-ad21-cd461ac2c472
          action-settings:
            enable-identity-captive-portal: false
          content:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          content-negate: false
          content-direction: any
          track: 29e53e3d-23bf-48fe-b6b1-d59bd88036f9
          track-alert: none
          time:
          - 97aeb369-9aea-11d5-bd16-0090272ccb30
          custom-fields:
            field-1: ''
            field-2: ''
            field-3: ''
          rule-number: 1
        objects-dictionary:
        - uid: 6c488338-8eec-4103-ad21-cd461ac2c472
          name: Accept
          type: RulebaseAction
          domain:
            uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
            name: Check Point Data
            domain-type: data domain
        - 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
        - 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
        - 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
        - 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
    show-access-rulebase-with-filter-expand-group-members-request:
      title: show-access-rulebase-with-filter-expand-group-members-request
      required:
      - name
      - filter
      - filter-settings.search-mode
      - filter-settings.packet-search-settings.expand-group-members
      type: object
      properties:
        name:
          type: string
        filter:
          type: string
        filter-settings.search-mode:
          type: string
        filter-settings.packet-search-settings.expand-group-members:
          type: string
      example:
        name: Network
        filter: dst:HR
        filter-settings.search-mode: packet
        filter-settings.packet-search-settings.expand-group-members: 'true'
    show-access-rulebase-with-filter-expand-group-members:
      title: show-access-rulebase-with-filter-expand-group-members
      required:
      - uid
      - name
      - from
      - to
      - total
      - rulebase
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase6'
          description: ''
      example:
        uid: 7f7308f0-7540-4631-832c-503de7b27c3d
        name: Network
        from: 1
        to: 3
        total: 3
        rulebase:
        - uid: fcb7d62b-b499-4b64-94ae-bfc9f4a0a15a
          name: HR Access
          type: access-section
          from: 2
          to: 2
          rulebase:
          - uid: 723030ba-a33f-44d7-813d-9afa2b7177fb
            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: 1527523152630
                iso-8601: 2018-05-28T18:59+0300
              last-modifier: aa
              creation-time:
                posix: 1527523116888
                iso-8601: 2018-05-28T18:58+0300
              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: c9f1f3dd-fd13-4c18-8145-2c752f1487ef
              name: HR-Recruiters
              type: group
              domain:
                uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                name: SMC User
                domain-type: domain
            source-negate: false
            destination:
            - uid: 04d80be4-1a1f-4802-bba9-c659479cfe47
              name: HR-Managers-Server
              type: host
              domain:
                uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                name: SMC User
                domain-type: domain
              ipv4-address: 192.168.200.51
            destination-negate: false
            service:
            - 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
              port: '443'
            service-negate: false
            vpn:
            - 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
            action:
              uid: 6c488338-8eec-4103-ad21-cd461ac2c472
              name: Accept
              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
            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: ''
            track:
              type:
                uid: 598ead32-aa42-4615-90ed-f51a5928d41d
                name: Log
                type: Track
                domain:
                  uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
                  name: Check Point Data
                  domain-type: data domain
              per-session: false
              per-connection: true
              accounting: false
              alert: none
    Rulebase6:
      title: Rulebase6
      required:
      - uid
      - name
      - type
      - from
      - to
      - rulebase
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase7'
          description: ''
      example:
        uid: fcb7d62b-b499-4b64-94ae-bfc9f4a0a15a
        name: HR Access
        type: access-section
        from: 2
        to: 2
        rulebase:
        - uid: 723030ba-a33f-44d7-813d-9afa2b7177fb
          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: 1527523152630
              iso-8601: 2018-05-28T18:59+0300
            last-modifier: aa
            creation-time:
              posix: 1527523116888
              iso-8601: 2018-05-28T18:58+0300
            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: c9f1f3dd-fd13-4c18-8145-2c752f1487ef
            name: HR-Recruiters
            type: group
            domain:
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
              domain-type: domain
          source-negate: false
          destination:
          - uid: 04d80be4-1a1f-4802-bba9-c659479cfe47
            name: HR-Managers-Server
            type: host
            domain:
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
              domain-type: domain
            ipv4-address: 192.168.200.51
          destination-negate: false
          service:
          - 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
            port: '443'
          service-negate: false
          vpn:
          - 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
          action:
            uid: 6c488338-8eec-4103-ad21-cd461ac2c472
            name: Accept
            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
          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: ''
          track:
            type:
              uid: 598ead32-aa42-4615-90ed-f51a5928d41d
              name: Log
              type: Track
              domain:
                uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
                name: Check Point Data
                domain-type: data domain
            per-session: false
            per-connection: true
            accounting: false
            alert: none
    Rulebase7:
      title: Rulebase7
      required:
      - uid
      - type
      - domain
      - enabled
      - comments
      - meta-info
      - install-on
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - vpn
      - action
      - action-settings
      - content
      - content-negate
      - content-direction
      - time
      - custom-fields
      - track
      type: object
      properties:
        uid:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        enabled:
          type: boolean
        comments:
          type: string
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn'
          description: ''
        source:
          type: array
          items:
            $ref: '#/components/schemas/Source'
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            $ref: '#/components/schemas/Destination2'
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            $ref: '#/components/schemas/Service'
          description: ''
        service-negate:
          type: boolean
        vpn:
          type: array
          items:
            $ref: '#/components/schemas/Vpn'
          description: ''
        action:
          allOf:
          - $ref: '#/components/schemas/Action'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/ActionSettings'
          - example:
              enable-identity-captive-portal: false
        content:
          type: array
          items:
            $ref: '#/components/schemas/Content'
          description: ''
        content-negate:
          type: boolean
        content-direction:
          type: string
        time:
          type: array
          items:
            $ref: '#/components/schemas/Time'
          description: ''
        custom-fields:
          allOf:
          - $ref: '#/components/schemas/CustomFields'
          - example:
              field-1: ''
              field-2: ''
              field-3: ''
        track:
          allOf:
          - $ref: '#/components/schemas/Track3'
          - example:
              type:
                uid: 598ead32-aa42-4615-90ed-f51a5928d41d
                name: Log
                type: Track
                domain:
                  uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
                  name: Check Point Data
                  domain-type: data domain
              per-session: false
              per-connection: true
              accounting: false
              alert: none
      example:
        uid: 723030ba-a33f-44d7-813d-9afa2b7177fb
        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: 1527523152630
            iso-8601: 2018-05-28T18:59+0300
          last-modifier: aa
          creation-time:
            posix: 1527523116888
            iso-8601: 2018-05-28T18:58+0300
          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: c9f1f3dd-fd13-4c18-8145-2c752f1487ef
          name: HR-Recruiters
          type: group
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
        source-negate: false
        destination:
        - uid: 04d80be4-1a1f-4802-bba9-c659479cfe47
          name: HR-Managers-Server
          type: host
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          ipv4-address: 192.168.200.51
        destination-negate: false
        service:
        - 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
          port: '443'
        service-negate: false
        vpn:
        - 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
        action:
          uid: 6c488338-8eec-4103-ad21-cd461ac2c472
          name: Accept
          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
        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: ''
        track:
          type:
            uid: 598ead32-aa42-4615-90ed-f51a5928d41d
            name: Log
            type: Track
            domain:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              domain-type: data domain
          per-session: false
          per-connection: true
          accounting: false
          alert: none
    Destination2:
      title: Destination2
      required:
      - uid
      - name
      - type
      - domain
      - ipv4-address
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        ipv4-address:
          type: string
      example:
        uid: 04d80be4-1a1f-4802-bba9-c659479cfe47
        name: HR-Managers-Server
        type: host
        domain:
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
          domain-type: domain
        ipv4-address: 192.168.200.51
    Track3:
      title: Track3
      required:
      - type
      - per-session
      - per-connection
      - accounting
      - alert
      type: object
      properties:
        type:
          allOf:
          - $ref: '#/components/schemas/Type'
          - example:
              uid: 598ead32-aa42-4615-90ed-f51a5928d41d
              name: Log
              type: Track
              domain:
                uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
                name: Check Point Data
                domain-type: data domain
        per-session:
          type: boolean
        per-connection:
          type: boolean
        accounting:
          type: boolean
        alert:
          type: string
      example:
        type:
          uid: 598ead32-aa42-4615-90ed-f51a5928d41d
          name: Log
          type: Track
          domain:
            uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
            name: Check Point Data
            domain-type: data domain
        per-session: false
        per-connection: true
        accounting: false
        alert: none
    Type:
      title: Type
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        uid: 598ead32-aa42-4615-90ed-f51a5928d41d
        name: Log
        type: Track
        domain:
          uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
          name: Check Point Data
          domain-type: data domain
    show-access-rulebasewithfilterexpandgroupwithexclusionmembersrequest:
      title: show-access-rulebasewithfilterexpandgroupwithexclusionmembersrequest
      required:
      - name
      - filter
      - filter-settings.search-mode
      - filter-settings.packet-search-settings.expand-group-with-exclusion-members
      type: object
      properties:
        name:
          type: string
        filter:
          type: string
        filter-settings.search-mode:
          type: string
        filter-settings.packet-search-settings.expand-group-with-exclusion-members:
          type: string
      example:
        name: Network
        filter: src:'HR except Managers'
        filter-settings.search-mode: packet
        filter-settings.packet-search-settings.expand-group-with-exclusion-members: 'true'
    show-access-rulebasewithfilterexpandgroupwithexclusionmembers:
      title: show-access-rulebasewithfilterexpandgroupwithexclusionmembers
      required:
      - uid
      - name
      - from
      - to
      - total
      - rulebase
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase6'
          description: ''
      example:
        uid: 7f7308f0-7540-4631-832c-503de7b27c3d
        name: Network
        from: 1
        to: 3
        total: 3
        rulebase:
        - uid: fcb7d62b-b499-4b64-94ae-bfc9f4a0a15a
          name: HR Access
          type: access-section
          from: 2
          to: 2
          rulebase:
          - uid: 723030ba-a33f-44d7-813d-9afa2b7177fb
            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: 1527523152630
                iso-8601: 2018-05-28T18:59+0300
              last-modifier: aa
              creation-time:
                posix: 1527523116888
                iso-8601: 2018-05-28T18:58+0300
              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: c9f1f3dd-fd13-4c18-8145-2c752f1487ef
              name: HR-Recruiters
              type: group
              domain:
                uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                name: SMC User
                domain-type: domain
            source-negate: false
            destination:
            - uid: 04d80be4-1a1f-4802-bba9-c659479cfe47
              name: HR-Employees-Server
              type: host
              domain:
                uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                name: SMC User
                domain-type: domain
              ipv4-address: 192.168.200.51
            destination-negate: false
            service:
            - 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
              port: '443'
            service-negate: false
            vpn:
            - 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
            action:
              uid: 6c488338-8eec-4103-ad21-cd461ac2c472
              name: Accept
              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
            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: ''
            track:
              type:
                uid: 598ead32-aa42-4615-90ed-f51a5928d41d
                name: Log
                type: Track
                domain:
                  uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
                  name: Check Point Data
                  domain-type: data domain
              per-session: false
              per-connection: true
              accounting: false
              alert: none
    show-access-rulebasewithhitsrequest:
      title: show-access-rulebasewithhitsrequest
      required:
      - offset
      - limit
      - name
      - details-level
      - use-object-dictionary
      - show-hits
      - hits-settings
      type: object
      properties:
        offset:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        name:
          type: string
        details-level:
          type: string
        use-object-dictionary:
          type: boolean
        show-hits:
          type: boolean
        hits-settings:
          allOf:
          - $ref: '#/components/schemas/HitsSettings'
          - example:
              from-date: 2014-01-01
              to-date: 2014-12-31T23:59
              target: corporate-gw
      example:
        offset: 0
        limit: 20
        name: Network
        details-level: standard
        use-object-dictionary: true
        show-hits: true
        hits-settings:
          from-date: 2014-01-01
          to-date: 2014-12-31T23:59
          target: corporate-gw
    HitsSettings:
      title: HitsSettings
      required:
      - from-date
      - to-date
      - target
      type: object
      properties:
        from-date:
          type: string
        to-date:
          type: string
        target:
          type: string
      example:
        from-date: 2014-01-01
        to-date: 2014-12-31T23:59
        target: corporate-gw
    show-access-rule-request:
      title: show-access-rule-request
      required:
      - name
      - layer
      type: object
      properties:
        name:
          type: string
        layer:
          type: string
      example:
        name: Rule 1
        layer: Network
    show-access-ruleasrangesrequest:
      title: show-access-ruleasrangesrequest
      required:
      - name
      - layer
      - show-as-ranges
      type: object
      properties:
        name:
          type: string
        layer:
          type: string
        show-as-ranges:
          type: string
      example:
        name: Rule 1
        layer: Network
        show-as-ranges: 'true'
    show-access-ruleasranges:
      title: show-access-ruleasranges
      required:
      - uid
      - name
      - type
      - domain
      - enabled
      - comments
      - meta-info
      - install-on
      - source-negate
      - source-ranges
      - destination-negate
      - destination-ranges
      - service-negate
      - service-ranges
      - vpn
      - action
      - action-settings
      - content
      - content-negate
      - content-direction
      - time
      - custom-fields
      - track
      - layer
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        enabled:
          type: boolean
        comments:
          type: string
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn'
          description: ''
        source-negate:
          type: boolean
        source-ranges:
          allOf:
          - $ref: '#/components/schemas/SourceRanges'
          - example:
              ipv4:
              - start: 192.168.200.133
                end: 192.168.200.133
              - start: 192.168.20.132
                end: 192.168.20.132
              - start: 192.168.200.131
                end: 192.168.200.131
              ipv6: []
              others: []
              excluded-others: []
        destination-negate:
          type: boolean
        destination-ranges:
          allOf:
          - $ref: '#/components/schemas/DestinationRanges'
          - example:
              ipv4:
              - start: 172.23.26.177
                end: 172.23.26.177
              ipv6: []
              others: []
              excluded-others: []
        service-negate:
          type: boolean
        service-ranges:
          allOf:
          - $ref: '#/components/schemas/ServiceRanges'
          - example:
              tcp:
              - start: '22'
                end: '22'
              udp: []
              others:
              - 97aeb40f-9aea-11d5-bd16-0090272ccb30
              - 97aeb40a-9aea-11d5-bd16-0090272ccb30
              - 97aeb40d-9aea-11d5-bd16-0090272ccb30
              - 97aeb411-9aea-11d5-bd16-0090272ccb30
              excluded-others: []
        vpn:
          type: array
          items:
            $ref: '#/components/schemas/Vpn'
          description: ''
        action:
          allOf:
          - $ref: '#/components/schemas/Action'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/ActionSettings'
          - example:
              enable-identity-captive-portal: false
        content:
          type: array
          items:
            $ref: '#/components/schemas/Content'
          description: ''
        content-negate:
          type: boolean
        content-direction:
          type: string
        time:
          type: array
          items:
            $ref: '#/components/schemas/Time'
          description: ''
        custom-fields:
          allOf:
          - $ref: '#/components/schemas/CustomFields'
          - example:
              field-1: ''
              field-2: ''
              field-3: ''
        track:
          allOf:
          - $ref: '#/components/schemas/Track3'
          - example:
              type:
                uid: 598ead32-aa42-4615-90ed-f51a5928d41d
                name: Log
                type: Track
                domain:
                  uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
                  name: Check Point Data
                  domain-type: data domain
              per-session: false
              per-connection: true
              accounting: false
              alert: none
        layer:
          type: string
      example:
        uid: 48604d56-b4ae-45e4-8757-29510f693a33
        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: unlocked
          validation-state: ok
          last-modify-time:
            posix: 1527405615018
            iso-8601: 2018-05-27T10:20+0300
          last-modifier: aa
          creation-time:
            posix: 1527405614880
            iso-8601: 2018-05-27T10:20+0300
          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-negate: false
        source-ranges:
          ipv4:
          - start: 192.168.1.11
            end: 192.168.1.11
          - start: 192.168.1.213
            end: 192.168.1.213
          ipv6: []
          others: []
          excluded-others: []
        destination-negate: false
        destination-ranges:
          ipv4:
          - start: 192.168.200.131
            end: 192.168.200.131
          ipv6: []
          others: []
          excluded-others: []
        service-negate: false
        service-ranges:
          tcp:
          - start: '443'
            end: '443'
          udp: []
          others: []
          excluded-others: []
        vpn:
        - 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
        action:
          uid: 6c488338-8eec-4103-ad21-cd461ac2c472
          name: Accept
          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
        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: ''
        track:
          type:
            uid: 598ead32-aa42-4615-90ed-f51a5928d41d
            name: Log
            type: Track
            domain:
              uid: a0bbbc99-adef-4ef8-bb6d-defdefdefdef
              name: Check Point Data
              domain-type: data domain
          per-session: false
          per-connection: true
          accounting: false
          alert: none
        layer: 7f7308f0-7540-4631-832c-503de7b27c3d
    show-access-rulewithhitsrequest:
      title: show-access-rulewithhitsrequest
      required:
      - name
      - layer
      - show-hits
      - hits-settings
      type: object
      properties:
        name:
          type: string
        layer:
          type: string
        show-hits:
          type: boolean
        hits-settings:
          allOf:
          - $ref: '#/components/schemas/HitsSettings'
          - example:
              from-date: 2014-01-01
              to-date: 2014-12-31T23:59
              target: corporate-gw
      example:
        name: Rule 1
        layer: Network
        show-hits: true
        hits-settings:
          from-date: 2014-01-01
          to-date: 2014-12-31T23:59
          target: corporate-gw
    set-access-rule-request:
      title: set-access-rule-request
      required:
      - name
      - layer
      - action
      - action-settings
      type: object
      properties:
        name:
          type: string
        layer:
          type: string
        action:
          type: string
        action-settings:
          allOf:
          - $ref: '#/components/schemas/ActionSettings8'
          - example:
              enable-identity-captive-portal: true
              limit: Upload_1Gbps
      example:
        name: Rule 1
        layer: Network
        action: Ask
        action-settings:
          enable-identity-captive-portal: true
          limit: Upload_1Gbps
    ActionSettings8:
      title: ActionSettings8
      required:
      - enable-identity-captive-portal
      - limit
      type: object
      properties:
        enable-identity-captive-portal:
          type: boolean
        limit:
          type: string
      example:
        enable-identity-captive-portal: true
        limit: Upload_1Gbps
    delete-access-rule-request:
      title: delete-access-rule-request
      required:
      - name
      - layer
      type: object
      properties:
        name:
          type: string
        layer:
          type: string
      example:
        name: Rule 2
        layer: Network
    add-access-section-request:
      title: add-access-section-request
      required:
      - layer
      - position
      - name
      type: object
      properties:
        layer:
          type: string
        position:
          type: integer
          format: int32
        name:
          type: string
      example:
        layer: Network
        position: 1
        name: New Section 1
    show-access-section-request:
      title: show-access-section-request
      required:
      - layer
      - name
      type: object
      properties:
        layer:
          type: string
        name:
          type: string
      example:
        layer: Network
        name: New Section 1
    set-access-section-request:
      title: set-access-section-request
      required:
      - layer
      - name
      - new-name
      type: object
      properties:
        layer:
          type: string
        name:
          type: string
        new-name:
          type: string
      example:
        layer: Network
        name: New Section 1
        new-name: New Section 2
    delete-access-section-request:
      title: delete-access-section-request
      required:
      - layer
      - name
      type: object
      properties:
        layer:
          type: string
        name:
          type: string
      example:
        layer: Network
        name: New Section 2
    add-access-layer-request:
      title: add-access-layer-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Layer 1
    add-access-layer:
      title: add-access-layer
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - applications-and-url-filtering
      - content-awareness
      - mobile-access
      - show-parent-rule
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        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
    show-access-layer-request:
      title: show-access-layer-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Layer 1
    set-access-layer-request:
      title: set-access-layer-request
      required:
      - name
      - new-name
      - applications-and-url-filtering
      - data-awareness
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        applications-and-url-filtering:
          type: boolean
        data-awareness:
          type: boolean
      example:
        name: New Layer 1
        new-name: New Layer 2
        applications-and-url-filtering: false
        data-awareness: true
    set-access-layer:
      title: set-access-layer
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - applications-and-url-filtering
      - content-awareness
      - mobile-access
      - show-parent-rule
      - detect-using-x-forward-for
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        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
    delete-access-layer-request:
      title: delete-access-layer-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Layer 2
    show-access-layers-request:
      title: show-access-layers-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-nat-rule-request:
      title: add-nat-rule-request
      required:
      - package
      - position
      - comments
      - enabled
      - install-on
      - original-source
      - original-destination
      type: object
      properties:
        package:
          type: string
        position:
          type: integer
          format: int32
        comments:
          type: string
        enabled:
          type: boolean
        install-on:
          type: array
          items:
            type: string
          description: ''
        original-source:
          type: string
        original-destination:
          type: string
      example:
        package: standard
        position: 1
        comments: comment example1 nat999
        enabled: false
        install-on:
        - Policy Targets
        original-source: Any
        original-destination: All_Internet
    show-nat-rulebase-request:
      title: show-nat-rulebase-request
      required:
      - offset
      - limit
      - details-level
      - use-object-dictionary
      - package
      type: object
      properties:
        offset:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        details-level:
          type: string
        use-object-dictionary:
          type: boolean
        package:
          type: string
      example:
        offset: 1
        limit: 2
        details-level: standard
        use-object-dictionary: true
        package: standard
    show-nat-rulebase:
      title: show-nat-rulebase
      required:
      - from
      - to
      - total
      - uid
      - rulebase
      - objects-dictionary
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        uid:
          type: string
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase10'
          description: ''
        objects-dictionary:
          type: array
          items:
            $ref: '#/components/schemas/ObjectsDictionary'
          description: ''
      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
    Rulebase10:
      title: Rulebase10
      required:
      - uid
      - type
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            type: string
          description: ''
        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: integer
          format: int32
        type:
          type: string
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase11'
          description: ''
        name:
          type: string
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
      example:
        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
    Rulebase11:
      title: Rulebase11
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            type: string
          description: ''
        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: integer
          format: int32
        type:
          type: string
    show-nat-rulebase-with-filter-request:
      title: show-nat-rulebase-with-filter-request
      required:
      - offset
      - limit
      - details-level
      - use-object-dictionary
      - package
      - filter
      type: object
      properties:
        offset:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        details-level:
          type: string
        use-object-dictionary:
          type: boolean
        package:
          type: string
        filter:
          type: string
      example:
        offset: 0
        limit: 50
        details-level: standard
        use-object-dictionary: true
        package: standard
        filter: ssh_version_2
    show-nat-rulebase-with-filter:
      title: show-nat-rulebase-with-filter
      required:
      - from
      - to
      - total
      - uid
      - rulebase
      - objects-dictionary
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        uid:
          type: string
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase12'
          description: ''
        objects-dictionary:
          type: array
          items:
            $ref: '#/components/schemas/ObjectsDictionary'
          description: ''
      example:
        from: 1
        to: 2
        total: 2
        uid: 4862b29a-1753-4d19-9142-6814c7377474
        rulebase:
        - from: 1
          to: 2
          rulebase:
          - uid: 86fc210c-9fa4-4cfa-83bb-d6377853dd20
            enabled: true
            comments: rule for RND members  RNDNetwork-> RND to Internal Network
            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: 1450932209522
                iso-8601: 2015-12-24T06:43+0200
              last-modifier: aa
              creation-time:
                posix: 1450932130503
                iso-8601: 2015-12-24T06:42+0200
              creator: aa
            install-on:
            - 6c488338-8eec-4103-ad21-cd461ac2c476
            auto-generated: false
            original-destination: 97aeb369-9aea-11d5-bd16-0090272ccb30
            translated-destination: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
            original-source: 97aeb369-9aea-11d5-bd16-0090272ccb30
            translated-source: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
            original-service: cd082d9a-44a6-4cef-a17d-5541029adfb3
            translated-service: cd082d9a-44a6-4cef-a17d-5541029adfb3
            method: static
            rule-number: 1
            type: rule
          - uid: e47a64af-8af0-4a2f-8f54-5fbdcdc252a5
            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: 1451453576971
                iso-8601: 2015-12-30T07:32+0200
              last-modifier: aa
              creation-time:
                posix: 1451453557603
                iso-8601: 2015-12-30T07:32+0200
              creator: aa
            install-on:
            - 6c488338-8eec-4103-ad21-cd461ac2c476
            auto-generated: false
            original-destination: 97aeb369-9aea-11d5-bd16-0090272ccb30
            translated-destination: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
            original-source: 97aeb369-9aea-11d5-bd16-0090272ccb30
            translated-source: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
            original-service: cd082d9a-44a6-4cef-a17d-5541029adfb3
            translated-service: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
            method: static
            rule-number: 2
            type: rule
          name: Manual Lower Rules
          uid: b65894d2-b2ce-435b-ab31-17678c3fee4e
          type: section
        objects-dictionary:
        - 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: 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: service-tcp
          name: ssh_version_2
          uid: cd082d9a-44a6-4cef-a17d-5541029adfb3
    Rulebase12:
      title: Rulebase12
      required:
      - from
      - to
      - rulebase
      - name
      - uid
      - type
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase13'
          description: ''
        name:
          type: string
        uid:
          type: string
        type:
          type: string
      example:
        from: 1
        to: 2
        rulebase:
        - uid: 86fc210c-9fa4-4cfa-83bb-d6377853dd20
          enabled: true
          comments: rule for RND members  RNDNetwork-> RND to Internal Network
          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: 1450932209522
              iso-8601: 2015-12-24T06:43+0200
            last-modifier: aa
            creation-time:
              posix: 1450932130503
              iso-8601: 2015-12-24T06:42+0200
            creator: aa
          install-on:
          - 6c488338-8eec-4103-ad21-cd461ac2c476
          auto-generated: false
          original-destination: 97aeb369-9aea-11d5-bd16-0090272ccb30
          translated-destination: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
          original-source: 97aeb369-9aea-11d5-bd16-0090272ccb30
          translated-source: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
          original-service: cd082d9a-44a6-4cef-a17d-5541029adfb3
          translated-service: cd082d9a-44a6-4cef-a17d-5541029adfb3
          method: static
          rule-number: 1
          type: rule
        - uid: e47a64af-8af0-4a2f-8f54-5fbdcdc252a5
          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: 1451453576971
              iso-8601: 2015-12-30T07:32+0200
            last-modifier: aa
            creation-time:
              posix: 1451453557603
              iso-8601: 2015-12-30T07:32+0200
            creator: aa
          install-on:
          - 6c488338-8eec-4103-ad21-cd461ac2c476
          auto-generated: false
          original-destination: 97aeb369-9aea-11d5-bd16-0090272ccb30
          translated-destination: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
          original-source: 97aeb369-9aea-11d5-bd16-0090272ccb30
          translated-source: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
          original-service: cd082d9a-44a6-4cef-a17d-5541029adfb3
          translated-service: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
          method: static
          rule-number: 2
          type: rule
        name: Manual Lower Rules
        uid: b65894d2-b2ce-435b-ab31-17678c3fee4e
        type: section
    Rulebase13:
      title: Rulebase13
      required:
      - uid
      - enabled
      - comments
      - domain
      - meta-info
      - install-on
      - auto-generated
      - original-destination
      - translated-destination
      - original-source
      - translated-source
      - original-service
      - translated-service
      - method
      - rule-number
      - type
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            type: string
          description: ''
        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: integer
          format: int32
        type:
          type: string
      example:
        uid: 86fc210c-9fa4-4cfa-83bb-d6377853dd20
        enabled: true
        comments: rule for RND members  RNDNetwork-> RND to Internal Network
        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: 1450932209522
            iso-8601: 2015-12-24T06:43+0200
          last-modifier: aa
          creation-time:
            posix: 1450932130503
            iso-8601: 2015-12-24T06:42+0200
          creator: aa
        install-on:
        - 6c488338-8eec-4103-ad21-cd461ac2c476
        auto-generated: false
        original-destination: 97aeb369-9aea-11d5-bd16-0090272ccb30
        translated-destination: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
        original-source: 97aeb369-9aea-11d5-bd16-0090272ccb30
        translated-source: 85c0f50f-6d8a-4528-88ab-5fb11d8fe16c
        original-service: cd082d9a-44a6-4cef-a17d-5541029adfb3
        translated-service: cd082d9a-44a6-4cef-a17d-5541029adfb3
        method: static
        rule-number: 1
        type: rule
    show-nat-rule-request:
      title: show-nat-rule-request
      required:
      - rule-number
      - package
      type: object
      properties:
        rule-number:
          type: integer
          format: int32
        package:
          type: string
      example:
        rule-number: 1
        package: standard
    set-nat-rule-request:
      title: set-nat-rule-request
      required:
      - rule-number
      - package
      - enabled
      - original-service
      - original-source
      - comments
      type: object
      properties:
        rule-number:
          type: integer
          format: int32
        package:
          type: string
        enabled:
          type: boolean
        original-service:
          type: string
        original-source:
          type: string
        comments:
          type: string
      example:
        rule-number: 1
        package: standard
        enabled: false
        original-service: ssh_version_2
        original-source: Any
        comments: rule for RND members  RNDNetwork-> RND to Internal Network
    delete-nat-rule-request:
      title: delete-nat-rule-request
      required:
      - rule-number
      - package
      type: object
      properties:
        rule-number:
          type: integer
          format: int32
        package:
          type: string
      example:
        rule-number: 1
        package: standard
    add-nat-section-request:
      title: add-nat-section-request
      required:
      - package
      - name
      - position
      type: object
      properties:
        package:
          type: string
        name:
          type: string
        position:
          type: integer
          format: int32
      example:
        package: standard
        name: New Section 1
        position: 2
    show-nat-section-request:
      title: show-nat-section-request
      required:
      - package
      - name
      type: object
      properties:
        package:
          type: string
        name:
          type: string
      example:
        package: standard
        name: New Section 1
    set-nat-section-request:
      title: set-nat-section-request
      required:
      - package
      - name
      - new-name
      type: object
      properties:
        package:
          type: string
        name:
          type: string
        new-name:
          type: string
      example:
        package: standard
        name: New Section 1
        new-name: New Section 2
    delete-nat-section-request:
      title: delete-nat-section-request
      required:
      - package
      - name
      type: object
      properties:
        package:
          type: string
        name:
          type: string
      example:
        package: standard
        name: New Section 1
    add-vpn-community-meshed-request:
      title: add-vpn-community-meshed-request
      required:
      - name
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      type: object
      properties:
        name:
          type: string
        encryption-method:
          type: string
        encryption-suite:
          type: string
        ike-phase-1:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
      example:
        name: New_VPN_Community_Meshed_1
        encryption-method: prefer ikev2 but support ikev1
        encryption-suite: custom
        ike-phase-1:
          data-integrity: sha1
          encryption-algorithm: aes-128
          diffie-hellman-group: group 19
        ike-phase-2:
          data-integrity: aes-xcbc
          encryption-algorithm: aes-gcm-128
    IkePhase1:
      title: IkePhase1
      required:
      - data-integrity
      - encryption-algorithm
      - diffie-hellman-group
      type: object
      properties:
        data-integrity:
          type: string
        encryption-algorithm:
          type: string
        diffie-hellman-group:
          type: string
      example:
        data-integrity: sha1
        encryption-algorithm: aes-128
        diffie-hellman-group: group 19
    IkePhase2:
      title: IkePhase2
      required:
      - data-integrity
      - encryption-algorithm
      type: object
      properties:
        data-integrity:
          type: string
        encryption-algorithm:
          type: string
      example:
        data-integrity: aes-xcbc
        encryption-algorithm: aes-gcm-128
    add-vpn-community-meshed:
      title: add-vpn-community-meshed
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - use-shared-secret
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      - gateways
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
        gateways:
          type: array
          items:
            type: string
          description: ''
      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: []
    add-vpn-community-meshedwithsharedsecretsrequest:
      title: add-vpn-community-meshedwithsharedsecretsrequest
      required:
      - name
      - gateways
      - use-shared-secret
      - shared-secrets
      type: object
      properties:
        name:
          type: string
        gateways:
          type: string
        use-shared-secret:
          type: boolean
        shared-secrets:
          type: array
          items:
            $ref: '#/components/schemas/SharedSecret'
          description: ''
      example:
        name: New_VPN_Community_Meshed_1
        gateways: External_Gateway_1
        use-shared-secret: true
        shared-secrets:
        - external-gateway: External_Gateway_1
          shared-secret: mysharedsecret1
    SharedSecret:
      title: SharedSecret
      required:
      - external-gateway
      - shared-secret
      type: object
      properties:
        external-gateway:
          type: string
        shared-secret:
          type: string
      example:
        external-gateway: External_Gateway_1
        shared-secret: mysharedsecret1
    show-vpn-community-meshed-request:
      title: show-vpn-community-meshed-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_VPN_Community_Meshed_1
    show-vpn-community-meshed:
      title: show-vpn-community-meshed
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - use-shared-secret
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      - gateways
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
        gateways:
          type: array
          items:
            type: string
          description: ''
      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: []
    set-vpn-community-meshed-request:
      title: set-vpn-community-meshed-request
      required:
      - name
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      type: object
      properties:
        name:
          type: string
        encryption-method:
          type: string
        encryption-suite:
          type: string
        ike-phase-1:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
      example:
        name: New_VPN_Community_Meshed_1
        encryption-method: ikev2 only
        encryption-suite: custom
        ike-phase-1:
          data-integrity: sha1
          encryption-algorithm: aes-128
          diffie-hellman-group: group 19
        ike-phase-2:
          data-integrity: aes-xcbc
          encryption-algorithm: aes-gcm-128
    set-vpn-community-meshed:
      title: set-vpn-community-meshed
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - use-shared-secret
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      - gateways
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
        gateways:
          type: array
          items:
            type: string
          description: ''
      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: []
    set-vpn-community-meshedaddsharedsecretrequest:
      title: set-vpn-community-meshedaddsharedsecretrequest
      required:
      - name
      - shared-secrets
      type: object
      properties:
        name:
          type: string
        shared-secrets:
          allOf:
          - $ref: '#/components/schemas/SharedSecrets'
          - example:
              add:
              - external-gateway: External_Gateway_2
                shared-secret: mysharedsecret2
      example:
        name: New_VPN_Community_Meshed_1
        shared-secrets:
          add:
          - external-gateway: External_Gateway_2
            shared-secret: mysharedsecret2
    SharedSecrets:
      title: SharedSecrets
      required:
      - add
      type: object
      properties:
        add:
          type: array
          items:
            $ref: '#/components/schemas/Add'
          description: ''
      example:
        add:
        - external-gateway: External_Gateway_2
          shared-secret: mysharedsecret2
    Add:
      title: Add
      required:
      - external-gateway
      - shared-secret
      type: object
      properties:
        external-gateway:
          type: string
        shared-secret:
          type: string
      example:
        external-gateway: External_Gateway_2
        shared-secret: mysharedsecret2
    set-vpn-community-meshedremovesharedsecretrequest:
      title: set-vpn-community-meshedremovesharedsecretrequest
      required:
      - name
      - shared-secrets
      type: object
      properties:
        name:
          type: string
        shared-secrets:
          allOf:
          - $ref: '#/components/schemas/SharedSecrets1'
          - example:
              remove:
              - External_Gateway_2
      example:
        name: New_VPN_Community_Meshed_1
        shared-secrets:
          remove:
          - External_Gateway_2
    SharedSecrets1:
      title: SharedSecrets1
      required:
      - remove
      type: object
      properties:
        remove:
          type: array
          items:
            type: string
          description: ''
      example:
        remove:
        - External_Gateway_2
    set-vpn-community-meshedreplace-clearallsharedsecretsrequest:
      title: set-vpn-community-meshedreplace-clearallsharedsecretsrequest
      required:
      - name
      - shared-secrets
      type: object
      properties:
        name:
          type: string
        shared-secrets:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New_VPN_Community_Meshed_1
        shared-secrets: []
    set-vpn-community-meshedreplacesharedsecretsrequest:
      title: set-vpn-community-meshedreplacesharedsecretsrequest
      required:
      - name
      - shared-secrets
      type: object
      properties:
        name:
          type: string
        shared-secrets:
          type: array
          items:
            $ref: '#/components/schemas/SharedSecrets2'
          description: ''
      example:
        name: New_VPN_Community_Meshed_1
        shared-secrets:
        - external-gateway: External_Gateway_1
          shared-secret: mysharedsecret1
        - external-gateway: External_Gateway_3
          shared-secret: mysharedsecret3
    SharedSecrets2:
      title: SharedSecrets2
      required:
      - external-gateway
      - shared-secret
      type: object
      properties:
        external-gateway:
          type: string
        shared-secret:
          type: string
      example:
        external-gateway: External_Gateway_1
        shared-secret: mysharedsecret1
    delete-vpn-community-meshed-request:
      title: delete-vpn-community-meshed-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_VPN_Community_Meshed_1
    show-vpn-communities-meshed-request:
      title: show-vpn-communities-meshed-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: full
    show-vpn-communities-meshed:
      title: show-vpn-communities-meshed
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object23'
          description: ''
      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: []
    Object23:
      title: Object23
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - use-shared-secret
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      - gateways
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
        gateways:
          type: array
          items:
            type: string
          description: ''
      example:
        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: []
    add-vpn-community-star-request:
      title: add-vpn-community-star-request
      required:
      - name
      - center-gateways
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      type: object
      properties:
        name:
          type: string
        center-gateways:
          type: string
        encryption-method:
          type: string
        encryption-suite:
          type: string
        ike-phase-1:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
      example:
        name: New_VPN_Community_Star_1
        center-gateways: Second_Security_Gateway
        encryption-method: prefer ikev2 but support ikev1
        encryption-suite: custom
        ike-phase-1:
          data-integrity: sha1
          encryption-algorithm: aes-128
          diffie-hellman-group: group 19
        ike-phase-2:
          data-integrity: aes-xcbc
          encryption-algorithm: aes-gcm-128
    add-vpn-community-star:
      title: add-vpn-community-star
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - use-shared-secret
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      - center-gateways
      - satellite-gateways
      - mesh-center-gateways
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
        center-gateways:
          type: array
          items:
            $ref: '#/components/schemas/CenterGateway'
          description: ''
        satellite-gateways:
          type: array
          items:
            type: string
          description: ''
        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
    CenterGateway:
      title: CenterGateway
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    add-vpn-community-starwithsharedsecretsrequest:
      title: add-vpn-community-starwithsharedsecretsrequest
      required:
      - name
      - center-gateways
      - use-shared-secret
      - shared-secrets
      type: object
      properties:
        name:
          type: string
        center-gateways:
          type: string
        use-shared-secret:
          type: boolean
        shared-secrets:
          type: array
          items:
            $ref: '#/components/schemas/SharedSecrets2'
          description: ''
      example:
        name: New_VPN_Community_Star_1
        center-gateways: External_Gateway_1
        use-shared-secret: true
        shared-secrets:
        - external-gateway: External_Gateway_1
          shared-secret: mysharedsecret1
    show-vpn-community-star-request:
      title: show-vpn-community-star-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_VPN_Community_Meshed_1
    show-vpn-community-star:
      title: show-vpn-community-star
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - use-shared-secret
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      - center-gateways
      - satellite-gateways
      - mesh-center-gateways
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
        center-gateways:
          type: array
          items:
            $ref: '#/components/schemas/CenterGateway'
          description: ''
        satellite-gateways:
          type: array
          items:
            type: string
          description: ''
        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
    set-vpn-community-star-request:
      title: set-vpn-community-star-request
      required:
      - name
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      type: object
      properties:
        name:
          type: string
        encryption-method:
          type: string
        encryption-suite:
          type: string
        ike-phase-1:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
      example:
        name: New_VPN_Community_Star_1
        encryption-method: ikev2 only
        encryption-suite: custom
        ike-phase-1:
          data-integrity: sha1
          encryption-algorithm: aes-128
          diffie-hellman-group: group 19
        ike-phase-2:
          data-integrity: aes-xcbc
          encryption-algorithm: aes-gcm-128
    set-vpn-community-star:
      title: set-vpn-community-star
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - use-shared-secret
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      - center-gateways
      - satellite-gateways
      - mesh-center-gateways
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
        center-gateways:
          type: array
          items:
            $ref: '#/components/schemas/CenterGateway'
          description: ''
        satellite-gateways:
          type: array
          items:
            type: string
          description: ''
        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
    set-vpn-community-staraddsharedsecretrequest:
      title: set-vpn-community-staraddsharedsecretrequest
      required:
      - name
      - shared-secrets
      type: object
      properties:
        name:
          type: string
        shared-secrets:
          allOf:
          - $ref: '#/components/schemas/SharedSecrets'
          - example:
              add:
              - external-gateway: External_Gateway_2
                shared-secret: mysharedsecret2
      example:
        name: New_VPN_Community_Star_1
        shared-secrets:
          add:
          - external-gateway: External_Gateway_2
            shared-secret: mysharedsecret2
    set-vpn-community-starremovesharedsecretrequest:
      title: set-vpn-community-starremovesharedsecretrequest
      required:
      - name
      - shared-secrets
      type: object
      properties:
        name:
          type: string
        shared-secrets:
          allOf:
          - $ref: '#/components/schemas/SharedSecrets1'
          - example:
              remove:
              - External_Gateway_2
      example:
        name: New_VPN_Community_Star_1
        shared-secrets:
          remove:
          - External_Gateway_2
    set-vpn-community-starreplace-clearallsharedsecretsrequest:
      title: set-vpn-community-starreplace-clearallsharedsecretsrequest
      required:
      - name
      - shared-secrets
      type: object
      properties:
        name:
          type: string
        shared-secrets:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New_VPN_Community_Star_1
        shared-secrets: []
    set-vpn-community-starreplacesharedsecretsrequest:
      title: set-vpn-community-starreplacesharedsecretsrequest
      required:
      - name
      - shared-secrets
      type: object
      properties:
        name:
          type: string
        shared-secrets:
          type: array
          items:
            $ref: '#/components/schemas/SharedSecrets2'
          description: ''
      example:
        name: New_VPN_Community_Star_1
        shared-secrets:
        - external-gateway: External_Gateway_1
          shared-secret: mysharedsecret1
        - external-gateway: External_Gateway_3
          shared-secret: mysharedsecret3
    delete-vpn-community-star-request:
      title: delete-vpn-community-star-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_VPN_Community_Star_1
    show-vpn-communities-star-request:
      title: show-vpn-communities-star-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: full
    show-vpn-communities-star:
      title: show-vpn-communities-star
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object24'
          description: ''
      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
    Object24:
      title: Object24
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - use-shared-secret
      - encryption-method
      - encryption-suite
      - ike-phase-1
      - ike-phase-2
      - center-gateways
      - satellite-gateways
      - mesh-center-gateways
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        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:
          allOf:
          - $ref: '#/components/schemas/IkePhase1'
          - example:
              data-integrity: sha1
              encryption-algorithm: aes-128
              diffie-hellman-group: group 19
        ike-phase-2:
          allOf:
          - $ref: '#/components/schemas/IkePhase2'
          - example:
              data-integrity: aes-xcbc
              encryption-algorithm: aes-gcm-128
        center-gateways:
          type: array
          items:
            $ref: '#/components/schemas/CenterGateway3'
          description: ''
        satellite-gateways:
          type: array
          items:
            type: string
          description: ''
        mesh-center-gateways:
          type: boolean
      example:
        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
    CenterGateway3:
      title: CenterGateway3
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        ipv4-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: array
          items:
            type: string
          description: ''
        firewall:
          type: boolean
        firewall-settings:
          allOf:
          - $ref: '#/components/schemas/FirewallSettings'
          - example:
              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:
          type: boolean
        vpn-settings:
          allOf:
          - $ref: '#/components/schemas/VpnSettings'
          - example:
              maximum-concurrent-ike-negotiations: 1000
              maximum-concurrent-tunnels: 10000
        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
          description: ''
        send-logs-to-server:
          type: array
          items:
            type: string
          description: ''
        send-logs-to-backup-server:
          type: array
          items:
            type: string
          description: ''
        logs-settings:
          allOf:
          - $ref: '#/components/schemas/LogsSettings'
          - example:
              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
    VpnSettings:
      title: VpnSettings
      required:
      - maximum-concurrent-ike-negotiations
      - maximum-concurrent-tunnels
      type: object
      properties:
        maximum-concurrent-ike-negotiations:
          type: integer
          format: int32
        maximum-concurrent-tunnels:
          type: integer
          format: int32
      example:
        maximum-concurrent-ike-negotiations: 1000
        maximum-concurrent-tunnels: 10000
    add-threat-rule-request:
      title: add-threat-rule-request
      required:
      - layer
      - position
      - name
      - comments
      - track
      - protected-scope
      - install-on
      type: object
      properties:
        layer:
          type: string
        position:
          type: string
        name:
          type: string
        comments:
          type: string
        track:
          type: string
        protected-scope:
          type: string
        install-on:
          type: string
      example:
        layer: New Layer 1
        position: top
        name: First threat rule
        comments: ''
        track: None
        protected-scope: All_Internet
        install-on: Policy Targets
    add-threat-rule:
      title: add-threat-rule
      required:
      - uid
      - enabled
      - comments
      - folder
      - domain
      - meta-info
      - install-on
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - protected-scope
      - protected-scope-negate
      - name
      - track
      - track-settings
      - action
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn5'
          description: ''
        source:
          type: array
          items:
            $ref: '#/components/schemas/Source4'
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            $ref: '#/components/schemas/Destination4'
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            $ref: '#/components/schemas/Service4'
          description: ''
        service-negate:
          type: boolean
        protected-scope:
          type: array
          items:
            $ref: '#/components/schemas/ProtectedScope'
          description: ''
        protected-scope-negate:
          type: boolean
        name:
          type: string
        track:
          allOf:
          - $ref: '#/components/schemas/Track6'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/TrackSettings'
          - example:
              packet-capture: true
        action:
          allOf:
          - $ref: '#/components/schemas/Action5'
          - example:
              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
      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
    InstallOn5:
      title: InstallOn5
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    Source4:
      title: Source4
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    Destination4:
      title: Destination4
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    Service4:
      title: Service4
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    ProtectedScope:
      title: ProtectedScope
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    Track6:
      title: Track6
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    TrackSettings:
      title: TrackSettings
      required:
      - packet-capture
      type: object
      properties:
        packet-capture:
          type: boolean
      example:
        packet-capture: true
    Action5:
      title: Action5
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    show-threat-rulebase-request:
      title: show-threat-rulebase-request
      required:
      - name
      - offset
      - limit
      - details-level
      - use-object-dictionary
      - filter
      type: object
      properties:
        name:
          type: string
        offset:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        details-level:
          type: string
        use-object-dictionary:
          type: boolean
        filter:
          type: string
      example:
        name: Threat Prevention
        offset: 0
        limit: 20
        details-level: standard
        use-object-dictionary: false
        filter: ''
    show-threat-rulebase:
      title: show-threat-rulebase
      required:
      - from
      - to
      - total
      - name
      - uid
      - rulebase
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        name:
          type: string
        uid:
          type: string
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase14'
          description: ''
    Rulebase14:
      title: Rulebase14
      required:
      - uid
      - enabled
      - comments
      - domain
      - meta-info
      - install-on
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - protected-scope
      - protected-scope-negate
      - track
      - track-settings
      - action
      - rule-number
      - type
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn'
          description: ''
        source:
          type: array
          items:
            $ref: '#/components/schemas/Source'
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            $ref: '#/components/schemas/Destination'
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            $ref: '#/components/schemas/Service5'
          description: ''
        service-negate:
          type: boolean
        protected-scope:
          type: array
          items:
            $ref: '#/components/schemas/ProtectedScope1'
          description: ''
        protected-scope-negate:
          type: boolean
        name:
          type: string
        track:
          allOf:
          - $ref: '#/components/schemas/Track'
          - example:
              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-settings:
          allOf:
          - $ref: '#/components/schemas/TrackSettings'
          - example:
              packet-capture: true
        action:
          allOf:
          - $ref: '#/components/schemas/Action'
          - example:
              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
        exceptions:
          type: array
          items:
            $ref: '#/components/schemas/Exception'
          description: ''
        rule-number:
          type: integer
          format: int32
        type:
          type: string
      example:
        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
    Service5:
      title: Service5
      required:
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    ProtectedScope1:
      title: ProtectedScope1
      required:
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    Exception:
      title: Exception
      required:
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        domain:
          domain-type: domain
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
        type: threat-exception
        name: abc
        uid: 54ed2702-9184-477b-ba35-bb162733f3dc
    show-threat-rulebase-with-filter-request:
      title: show-threat-rulebase-with-filter-request
      required:
      - name
      - offset
      - limit
      - details-level
      - use-object-dictionary
      - filter
      type: object
      properties:
        name:
          type: string
        offset:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        details-level:
          type: string
        use-object-dictionary:
          type: boolean
        filter:
          type: string
      example:
        name: Standard Threat Prevention
        offset: 0
        limit: 20
        details-level: standard
        use-object-dictionary: false
        filter: WirelessZone
    show-threat-rulebase-with-filter:
      title: show-threat-rulebase-with-filter
      required:
      - from
      - to
      - total
      - name
      - uid
      - rulebase
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        name:
          type: string
        uid:
          type: string
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase15'
          description: ''
      example:
        from: 1
        to: 2
        total: 2
        name: Standard Threat Prevention
        uid: 5244d78e-7749-40e2-8604-4d04bc5ee13f
        rulebase:
        - uid: 25af9a7c-f4e5-4cd5-a6a8-f74f19854db0
          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: 1451453598360
              iso-8601: 2015-12-30T07:33+0200
            last-modifier: aa
            creation-time:
              posix: 1450930796908
              iso-8601: 2015-12-24T06:19+0200
            creator: System
          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: security-zone
            name: WirelessZone
            uid: 57de3848-3675-48ed-b045-41378f4babb3
          protected-scope-negate: false
          name: Rule 1
          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: Optimized
            uid: fa1aa324-a8cc-4dbd-bc04-f31fdb8abf61
          rule-number: 1
          type: rule
        - uid: 8439c5cd-8879-477c-92af-91ea46b54071
          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: 1451453620395
              iso-8601: 2015-12-30T07:33+0200
            last-modifier: aa
            creation-time:
              posix: 1451453601902
              iso-8601: 2015-12-30T07:33+0200
            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: security-zone
            name: WirelessZone
            uid: 57de3848-3675-48ed-b045-41378f4babb3
          protected-scope-negate: false
          name: Rule 3
          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: Optimized
            uid: fa1aa324-a8cc-4dbd-bc04-f31fdb8abf61
          rule-number: 2
          type: rule
    Rulebase15:
      title: Rulebase15
      required:
      - uid
      - enabled
      - comments
      - domain
      - meta-info
      - install-on
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - protected-scope
      - protected-scope-negate
      - name
      - track
      - track-settings
      - action
      - rule-number
      - type
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn'
          description: ''
        source:
          type: array
          items:
            $ref: '#/components/schemas/Source'
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            $ref: '#/components/schemas/Destination'
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            $ref: '#/components/schemas/Service5'
          description: ''
        service-negate:
          type: boolean
        protected-scope:
          type: array
          items:
            $ref: '#/components/schemas/ProtectedScope1'
          description: ''
        protected-scope-negate:
          type: boolean
        name:
          type: string
        track:
          allOf:
          - $ref: '#/components/schemas/Track'
          - example:
              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-settings:
          allOf:
          - $ref: '#/components/schemas/TrackSettings'
          - example:
              packet-capture: true
        action:
          allOf:
          - $ref: '#/components/schemas/Action'
          - example:
              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
        rule-number:
          type: integer
          format: int32
        type:
          type: string
      example:
        uid: 25af9a7c-f4e5-4cd5-a6a8-f74f19854db0
        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: 1451453598360
            iso-8601: 2015-12-30T07:33+0200
          last-modifier: aa
          creation-time:
            posix: 1450930796908
            iso-8601: 2015-12-24T06:19+0200
          creator: System
        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: security-zone
          name: WirelessZone
          uid: 57de3848-3675-48ed-b045-41378f4babb3
        protected-scope-negate: false
        name: Rule 1
        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: Optimized
          uid: fa1aa324-a8cc-4dbd-bc04-f31fdb8abf61
        rule-number: 1
        type: rule
    show-threat-rule-request:
      title: show-threat-rule-request
      required:
      - rule-number
      - layer
      type: object
      properties:
        rule-number:
          type: integer
          format: int32
        layer:
          type: string
      example:
        rule-number: 1
        layer: New Layer 1
    set-threat-rule-request:
      title: set-threat-rule-request
      required:
      - rule-number
      - layer
      - comments
      - protected-scope
      - action
      - install-on
      type: object
      properties:
        rule-number:
          type: integer
          format: int32
        layer:
          type: string
        comments:
          type: string
        protected-scope:
          type: string
        action:
          type: string
        install-on:
          type: string
      example:
        rule-number: 2
        layer: New Layer 1
        comments: commnet for the first rule
        protected-scope: All_Internet
        action: New Profile 1
        install-on: Policy Targets
    set-threat-rule:
      title: set-threat-rule
      required:
      - uid
      - enabled
      - comments
      - folder
      - domain
      - meta-info
      - install-on
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - protected-scope
      - protected-scope-negate
      - name
      - track
      - track-settings
      - action
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn5'
          description: ''
        source:
          type: array
          items:
            $ref: '#/components/schemas/Source4'
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            $ref: '#/components/schemas/Destination4'
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            $ref: '#/components/schemas/Service4'
          description: ''
        service-negate:
          type: boolean
        protected-scope:
          type: array
          items:
            $ref: '#/components/schemas/ProtectedScope'
          description: ''
        protected-scope-negate:
          type: boolean
        name:
          type: string
        track:
          allOf:
          - $ref: '#/components/schemas/Track6'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/TrackSettings'
          - example:
              packet-capture: true
        action:
          allOf:
          - $ref: '#/components/schemas/Action5'
          - example:
              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
      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
    delete-threat-rule-request:
      title: delete-threat-rule-request
      required:
      - rule-number
      - layer
      type: object
      properties:
        rule-number:
          type: integer
          format: int32
        layer:
          type: string
      example:
        rule-number: 1
        layer: New Layer 1
    add-threat-exception-request:
      title: add-threat-exception-request
      required:
      - layer
      - rule-number
      - position
      - name
      - track
      - protected-scope
      - protection-or-site
      type: object
      properties:
        layer:
          type: string
        rule-number:
          type: integer
          format: int32
        position:
          type: integer
          format: int32
        name:
          type: string
        track:
          type: string
        protected-scope:
          type: string
        protection-or-site:
          type: string
      example:
        layer: New Layer 1
        rule-number: 1
        position: 1
        name: Exception Rule
        track: Log
        protected-scope: All_Internet
        protection-or-site: Adware.a
    add-threat-exception:
      title: add-threat-exception
      required:
      - uid
      - enabled
      - comments
      - folder
      - domain
      - meta-info
      - install-on
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - protected-scope
      - protected-scope-negate
      - protection-or-site
      - name
      - track
      - action
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn5'
          description: ''
        source:
          type: array
          items:
            $ref: '#/components/schemas/Source4'
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            $ref: '#/components/schemas/Destination4'
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            $ref: '#/components/schemas/Service4'
          description: ''
        service-negate:
          type: boolean
        protected-scope:
          type: array
          items:
            $ref: '#/components/schemas/ProtectedScope'
          description: ''
        protected-scope-negate:
          type: boolean
        protection-or-site:
          type: array
          items:
            $ref: '#/components/schemas/ProtectionOrSite'
          description: ''
        name:
          type: string
        track:
          allOf:
          - $ref: '#/components/schemas/Track6'
          - example:
              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
        action:
          allOf:
          - $ref: '#/components/schemas/Action5'
          - example:
              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
      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
    ProtectionOrSite:
      title: ProtectionOrSite
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    show-threat-rule-exception-rulebase-request:
      title: show-threat-rule-exception-rulebase-request
      required:
      - name
      - rule-number
      type: object
      properties:
        name:
          type: string
        rule-number:
          type: integer
          format: int32
      example:
        name: Standard Threat Prevention
        rule-number: 1
    show-threat-rule-exception-rulebase:
      title: show-threat-rule-exception-rulebase
      required:
      - uid
      - name
      - rulebase
      - total
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        rulebase:
          type: array
          items:
            $ref: '#/components/schemas/Rulebase16'
          description: ''
        total:
          type: integer
          format: int32
      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
    Rulebase16:
      title: Rulebase16
      required:
      - uid
      - name
      - type
      - rulebase
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        rulebase:
          type: array
          items:
            type: string
          description: ''
      example:
        uid: 685ebbb2-8d9d-4908-9af4-77a823e22e76
        name: Global Exceptions
        type: threat-section
        rulebase: []
    show-threat-exception-request:
      title: show-threat-exception-request
      required:
      - rule-number
      - exception-number
      - layer
      type: object
      properties:
        rule-number:
          type: integer
          format: int32
        exception-number:
          type: integer
          format: int32
        layer:
          type: string
      example:
        rule-number: 1
        exception-number: 1
        layer: New Layer 1
    show-threat-exception:
      title: show-threat-exception
      required:
      - uid
      - enabled
      - comments
      - folder
      - domain
      - meta-info
      - install-on
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - protected-scope
      - protected-scope-negate
      - protection-or-site
      - name
      - track
      - action
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn5'
          description: ''
        source:
          type: array
          items:
            $ref: '#/components/schemas/Source4'
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            $ref: '#/components/schemas/Destination4'
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            $ref: '#/components/schemas/Service4'
          description: ''
        service-negate:
          type: boolean
        protected-scope:
          type: array
          items:
            $ref: '#/components/schemas/ProtectedScope'
          description: ''
        protected-scope-negate:
          type: boolean
        protection-or-site:
          type: array
          items:
            $ref: '#/components/schemas/ProtectionOrSite'
          description: ''
        name:
          type: string
        track:
          allOf:
          - $ref: '#/components/schemas/Track6'
          - example:
              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
        action:
          allOf:
          - $ref: '#/components/schemas/Action5'
          - example:
              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
      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
    set-threat-exception-request:
      title: set-threat-exception-request
      required:
      - name
      - layer
      - rule-number
      - new-name
      type: object
      properties:
        name:
          type: string
        layer:
          type: string
        rule-number:
          type: integer
          format: int32
        new-name:
          type: string
      example:
        name: Exception Rule
        layer: New Layer 1
        rule-number: 1
        new-name: Last rule
    set-threat-exception:
      title: set-threat-exception
      required:
      - uid
      - enabled
      - comments
      - folder
      - domain
      - meta-info
      - install-on
      - source
      - source-negate
      - destination
      - destination-negate
      - service
      - service-negate
      - protected-scope
      - protected-scope-negate
      - protection-or-site
      - name
      - track
      - action
      type: object
      properties:
        uid:
          type: string
        enabled:
          type: boolean
        comments:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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
        install-on:
          type: array
          items:
            $ref: '#/components/schemas/InstallOn5'
          description: ''
        source:
          type: array
          items:
            $ref: '#/components/schemas/Source4'
          description: ''
        source-negate:
          type: boolean
        destination:
          type: array
          items:
            $ref: '#/components/schemas/Destination4'
          description: ''
        destination-negate:
          type: boolean
        service:
          type: array
          items:
            $ref: '#/components/schemas/Service4'
          description: ''
        service-negate:
          type: boolean
        protected-scope:
          type: array
          items:
            $ref: '#/components/schemas/ProtectedScope'
          description: ''
        protected-scope-negate:
          type: boolean
        protection-or-site:
          type: array
          items:
            $ref: '#/components/schemas/ProtectionOrSite'
          description: ''
        name:
          type: string
        track:
          allOf:
          - $ref: '#/components/schemas/Track6'
          - example:
              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
        action:
          allOf:
          - $ref: '#/components/schemas/Action5'
          - example:
              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
      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
    delete-threat-exception-request:
      title: delete-threat-exception-request
      required:
      - rule-number
      - exception-number
      - layer
      type: object
      properties:
        rule-number:
          type: integer
          format: int32
        exception-number:
          type: integer
          format: int32
        layer:
          type: string
      example:
        rule-number: 1
        exception-number: 1
        layer: New Layer 1
    add-exception-group-request:
      title: add-exception-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: exception_group_2
    add-exception-group-request1:
      title: add-exception-group-request1
      required:
      - name
      - apply-on
      - applied-threat-rules.0.layer
      - applied-threat-rules.0.name
      type: object
      properties:
        name:
          type: string
        apply-on:
          type: string
        applied-threat-rules.0.layer:
          type: string
        applied-threat-rules.0.name:
          type: string
      example:
        name: exception_group_2
        apply-on: manually-select-threat-rules
        applied-threat-rules.0.layer: MyLayer
        applied-threat-rules.0.name: MyThreatRule
    show-exception-group-request:
      title: show-exception-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: exception_group_2
    set-exception-group-request:
      title: set-exception-group-request
      required:
      - name
      - new-name
      - tags
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        tags:
          type: string
      example:
        name: exception_group_2
        new-name: exception_group_2.1
        tags: tag3
    set-exception-group-request1:
      title: set-exception-group-request1
      required:
      - name
      - new-name
      - apply-on
      - tags
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        apply-on:
          type: string
        tags:
          type: string
      example:
        name: exception_group_2
        new-name: exception_group_2.1
        apply-on: all-threat-rules
        tags: tag3
    delete-exception-group-request:
      title: delete-exception-group-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: exception_group_2
    show-exception-groups-request:
      title: show-exception-groups-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-threat-protection-request:
      title: show-threat-protection-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: FTP Commands
    set-threat-protection-request:
      title: set-threat-protection-request
      required:
      - name
      - overrides
      type: object
      properties:
        name:
          type: string
        overrides:
          type: array
          items:
            $ref: '#/components/schemas/Override'
          description: ''
      example:
        name: FTP Commands
        overrides:
        - profile: New Profile 1
          action: inactive
          track: None
          capture-packets: true
    Override:
      title: Override
      required:
      - profile
      - action
      - track
      - capture-packets
      type: object
      properties:
        profile:
          type: string
        action:
          type: string
        track:
          type: string
        capture-packets:
          type: boolean
      example:
        profile: New Profile 1
        action: inactive
        track: None
        capture-packets: true
    set-threat-protectionmultipleoverridesrequest:
      title: set-threat-protectionmultipleoverridesrequest
      required:
      - name
      - overrides
      type: object
      properties:
        name:
          type: string
        overrides:
          type: array
          items:
            $ref: '#/components/schemas/Override'
          description: ''
      example:
        name: FTP Commands
        overrides:
        - profile: New Profile 1
          action: inactive
          track: Log
          capture-packets: true
        - profile: New Profile 2
          action: inactive
          track: Log
          capture-packets: true
    set-threat-protectionremoveoverriderequest:
      title: set-threat-protectionremoveoverriderequest
      required:
      - name
      - overrides
      type: object
      properties:
        name:
          type: string
        overrides:
          allOf:
          - $ref: '#/components/schemas/Overrides'
          - example:
              remove:
              - New profile 1
      example:
        name: FTP Commands
        overrides:
          remove:
          - New profile 1
    Overrides:
      title: Overrides
      required:
      - remove
      type: object
      properties:
        remove:
          type: array
          items:
            type: string
          description: ''
      example:
        remove:
        - New profile 1
    show-threat-protections-request:
      title: show-threat-protections-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-threat-protections-request:
      title: add-threat-protections-request
      required:
      - package-path
      - package-format
      type: object
      properties:
        package-path:
          type: string
        package-format:
          type: string
      example:
        package-path: /path/to/community.rules
        package-format: snort
    add-threat-protections:
      title: add-threat-protections
      required:
      - task-id
      type: object
      properties:
        task-id:
          type: string
      example:
        task-id: 6b2e5c77-0622-4e7f-a9bf-4e1f21899553
    delete-threat-protections-request:
      title: delete-threat-protections-request
      required:
      - package-format
      type: object
      properties:
        package-format:
          type: string
      example:
        package-format: snort
    add-threat-profile-request:
      title: add-threat-profile-request
      required:
      - name
      - active-protections-performance-impact
      - active-protections-severity
      - confidence-level-medium
      - confidence-level-high
      - threat-emulation
      - anti-virus
      - anti-bot
      - ips
      - ips-settings
      type: object
      properties:
        name:
          type: string
        active-protections-performance-impact:
          type: string
        active-protections-severity:
          type: string
        confidence-level-medium:
          type: string
        confidence-level-high:
          type: string
        threat-emulation:
          type: boolean
        anti-virus:
          type: boolean
        anti-bot:
          type: boolean
        ips:
          type: boolean
        ips-settings:
          allOf:
          - $ref: '#/components/schemas/IpsSettings'
          - example:
              newly-updated-protections: staging
              exclude-protection-with-performance-impact: true
              exclude-protection-with-performance-impact-mode: high or lower
      example:
        name: New Profile 1
        active-protections-performance-impact: low
        active-protections-severity: low or above
        confidence-level-medium: prevent
        confidence-level-high: prevent
        threat-emulation: true
        anti-virus: true
        anti-bot: true
        ips: true
        ips-settings:
          newly-updated-protections: staging
          exclude-protection-with-performance-impact: true
          exclude-protection-with-performance-impact-mode: high or lower
    IpsSettings:
      title: IpsSettings
      required:
      - newly-updated-protections
      - exclude-protection-with-performance-impact
      - exclude-protection-with-performance-impact-mode
      type: object
      properties:
        newly-updated-protections:
          type: string
        exclude-protection-with-performance-impact:
          type: boolean
        exclude-protection-with-performance-impact-mode:
          type: string
      example:
        newly-updated-protections: staging
        exclude-protection-with-performance-impact: true
        exclude-protection-with-performance-impact-mode: high or lower
    add-threat-profilewithoverridesrequest:
      title: add-threat-profilewithoverridesrequest
      required:
      - name
      - active-protections-performance-impact
      - active-protections-severity
      - confidence-level-medium
      - confidence-level-high
      - threat-emulation
      - anti-virus
      - anti-bot
      - ips
      - ips-settings
      - overrides
      type: object
      properties:
        name:
          type: string
        active-protections-performance-impact:
          type: string
        active-protections-severity:
          type: string
        confidence-level-medium:
          type: string
        confidence-level-high:
          type: string
        threat-emulation:
          type: boolean
        anti-virus:
          type: boolean
        anti-bot:
          type: boolean
        ips:
          type: boolean
        ips-settings:
          allOf:
          - $ref: '#/components/schemas/IpsSettings'
          - example:
              newly-updated-protections: staging
              exclude-protection-with-performance-impact: true
              exclude-protection-with-performance-impact-mode: high or lower
        overrides:
          type: array
          items:
            $ref: '#/components/schemas/Overrides1'
          description: ''
      example:
        name: New Profile 1
        active-protections-performance-impact: low
        active-protections-severity: low or above
        confidence-level-medium: prevent
        confidence-level-high: prevent
        threat-emulation: true
        anti-virus: true
        anti-bot: true
        ips: true
        ips-settings:
          newly-updated-protections: staging
          exclude-protection-with-performance-impact: true
          exclude-protection-with-performance-impact-mode: High or lower
        overrides:
        - protection: VNC
          capture-packets: true
          action: Prevent
          track: Log
        - protection: GoToMyPC
          capture-packets: true
          action: Prevent
          track: Log
    Overrides1:
      title: Overrides1
      required:
      - protection
      - capture-packets
      - action
      - track
      type: object
      properties:
        protection:
          type: string
        capture-packets:
          type: boolean
        action:
          type: string
        track:
          type: string
      example:
        protection: VNC
        capture-packets: true
        action: Prevent
        track: Log
    show-threat-profile-request:
      title: show-threat-profile-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: Recommended_Profile
    set-threat-profile-request:
      title: set-threat-profile-request
      required:
      - name
      - new-name
      - comments
      - active-protections-performance-impact
      - active-protections-severity
      - confidence-level-low
      - confidence-level-medium
      - confidence-level-high
      - threat-emulation
      - anti-virus
      - anti-bot
      - ips
      - ips-settings
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
        comments:
          type: string
        active-protections-performance-impact:
          type: string
        active-protections-severity:
          type: string
        confidence-level-low:
          type: string
        confidence-level-medium:
          type: string
        confidence-level-high:
          type: string
        threat-emulation:
          type: boolean
        anti-virus:
          type: boolean
        anti-bot:
          type: boolean
        ips:
          type: boolean
        ips-settings:
          allOf:
          - $ref: '#/components/schemas/IpsSettings'
          - example:
              newly-updated-protections: staging
              exclude-protection-with-performance-impact: true
              exclude-protection-with-performance-impact-mode: high or lower
      example:
        name: New Profile 1
        new-name: New Profile 2
        comments: update recommended profile
        active-protections-performance-impact: low
        active-protections-severity: low or above
        confidence-level-low: prevent
        confidence-level-medium: prevent
        confidence-level-high: prevent
        threat-emulation: true
        anti-virus: false
        anti-bot: true
        ips: false
        ips-settings:
          newly-updated-protections: active
          exclude-protection-with-performance-impact: true
          exclude-protection-with-performance-impact-mode: high or lower
    set-threat-profilesetmaliciousmailpolicysettingsrequest:
      title: set-threat-profilesetmaliciousmailpolicysettingsrequest
      required:
      - name
      - malicious-mail-policy-settings
      type: object
      properties:
        name:
          type: string
        malicious-mail-policy-settings:
          allOf:
          - $ref: '#/components/schemas/MaliciousMailPolicySettings'
          - example:
              email-action: allow
              remove-attachments-and-links: 'true'
              malicious-attachments-text: Original attachment $filename$ found malicious and removed by Check Point.
              add-x-header-to-email: 'true'
              add-email-subject-prefix: 'true'
              email-subject-prefix-text: 'malicious email - '
              add-customized-text-to-email-body: 'true'
              send-copy: 'true'
              send-copy-list:
                add: test@checkpoint.com
      example:
        name: New Profile 1
        malicious-mail-policy-settings:
          email-action: allow
          remove-attachments-and-links: 'true'
          malicious-attachments-text: Original attachment $filename$ found malicious and removed by Check Point.
          add-x-header-to-email: 'true'
          add-email-subject-prefix: 'true'
          email-subject-prefix-text: 'malicious email - '
          add-customized-text-to-email-body: 'true'
          send-copy: 'true'
          send-copy-list:
            add: test@checkpoint.com
    MaliciousMailPolicySettings:
      title: MaliciousMailPolicySettings
      required:
      - email-action
      - remove-attachments-and-links
      - malicious-attachments-text
      - add-x-header-to-email
      - add-email-subject-prefix
      - email-subject-prefix-text
      - add-customized-text-to-email-body
      - send-copy
      - send-copy-list
      type: object
      properties:
        email-action:
          type: string
        remove-attachments-and-links:
          type: string
        malicious-attachments-text:
          type: string
        add-x-header-to-email:
          type: string
        add-email-subject-prefix:
          type: string
        email-subject-prefix-text:
          type: string
        add-customized-text-to-email-body:
          type: string
        send-copy:
          type: string
        send-copy-list:
          allOf:
          - $ref: '#/components/schemas/SendCopyList'
          - example:
              add: test@checkpoint.com
      example:
        email-action: allow
        remove-attachments-and-links: 'true'
        malicious-attachments-text: Original attachment $filename$ found malicious and removed by Check Point.
        add-x-header-to-email: 'true'
        add-email-subject-prefix: 'true'
        email-subject-prefix-text: 'malicious email - '
        add-customized-text-to-email-body: 'true'
        send-copy: 'true'
        send-copy-list:
          add: test@checkpoint.com
    SendCopyList:
      title: SendCopyList
      required:
      - add
      type: object
      properties:
        add:
          type: string
      example:
        add: test@checkpoint.com
    set-threat-profileaddoverridesrequest:
      title: set-threat-profileaddoverridesrequest
      required:
      - name
      - comments
      - active-protections-performance-impact
      - active-protections-severity
      - confidence-level-medium
      - confidence-level-high
      - threat-emulation
      - anti-virus
      - anti-bot
      - ips
      - overrides
      type: object
      properties:
        name:
          type: string
        comments:
          type: string
        active-protections-performance-impact:
          type: string
        active-protections-severity:
          type: string
        confidence-level-medium:
          type: string
        confidence-level-high:
          type: string
        threat-emulation:
          type: boolean
        anti-virus:
          type: boolean
        anti-bot:
          type: boolean
        ips:
          type: boolean
        overrides:
          allOf:
          - $ref: '#/components/schemas/Overrides2'
          - example:
              add:
              - protection: VNC
                capture-packets: true
                action: Prevent
                track: Log
              - protection: GoToMyPC
                capture-packets: true
                action: Prevent
                track: Log
      example:
        name: New Profile 2
        comments: update recommended profile
        active-protections-performance-impact: low
        active-protections-severity: low or above
        confidence-level-medium: prevent
        confidence-level-high: prevent
        threat-emulation: true
        anti-virus: false
        anti-bot: true
        ips: false
        overrides:
          add:
          - protection: VNC
            capture-packets: true
            action: Prevent
            track: Log
          - protection: GoToMyPC
            capture-packets: true
            action: Prevent
            track: Log
    Overrides2:
      title: Overrides2
      required:
      - add
      type: object
      properties:
        add:
          type: array
          items:
            $ref: '#/components/schemas/Add2'
          description: ''
      example:
        add:
        - protection: VNC
          capture-packets: true
          action: Prevent
          track: Log
        - protection: GoToMyPC
          capture-packets: true
          action: Prevent
          track: Log
    Add2:
      title: Add2
      required:
      - protection
      - capture-packets
      - action
      - track
      type: object
      properties:
        protection:
          type: string
        capture-packets:
          type: boolean
        action:
          type: string
        track:
          type: string
      example:
        protection: VNC
        capture-packets: true
        action: Prevent
        track: Log
    set-threat-profileremoveoverriderequest:
      title: set-threat-profileremoveoverriderequest
      required:
      - name
      - comments
      - active-protections-performance-impact
      - active-protections-severity
      - confidence-level-medium
      - confidence-level-high
      - threat-emulation
      - anti-virus
      - anti-bot
      - ips
      - overrides
      type: object
      properties:
        name:
          type: string
        comments:
          type: string
        active-protections-performance-impact:
          type: string
        active-protections-severity:
          type: string
        confidence-level-medium:
          type: string
        confidence-level-high:
          type: string
        threat-emulation:
          type: boolean
        anti-virus:
          type: boolean
        anti-bot:
          type: boolean
        ips:
          type: boolean
        overrides:
          allOf:
          - $ref: '#/components/schemas/Overrides'
          - example:
              remove:
              - New profile 1
      example:
        name: New Profile 2
        comments: 'update recommended profile  '
        active-protections-performance-impact: low
        active-protections-severity: low or above
        confidence-level-medium: prevent
        confidence-level-high: prevent
        threat-emulation: true
        anti-virus: false
        anti-bot: true
        ips: false
        overrides:
          remove:
          - VNC
    set-threat-profilereplace-clearalloverridesrequest:
      title: set-threat-profilereplace-clearalloverridesrequest
      required:
      - name
      - comments
      - active-protections-performance-impact
      - active-protections-severity
      - confidence-level-medium
      - confidence-level-high
      - threat-emulation
      - anti-virus
      - anti-bot
      - ips
      - overrides
      type: object
      properties:
        name:
          type: string
        comments:
          type: string
        active-protections-performance-impact:
          type: string
        active-protections-severity:
          type: string
        confidence-level-medium:
          type: string
        confidence-level-high:
          type: string
        threat-emulation:
          type: boolean
        anti-virus:
          type: boolean
        anti-bot:
          type: boolean
        ips:
          type: boolean
        overrides:
          type: array
          items:
            type: string
          description: ''
      example:
        name: New Profile 2
        comments: 'update recommended profile  '
        active-protections-performance-impact: low
        active-protections-severity: low or above
        confidence-level-medium: prevent
        confidence-level-high: prevent
        threat-emulation: true
        anti-virus: false
        anti-bot: true
        ips: false
        overrides: []
    set-threat-profilereplaceoverridesrequest:
      title: set-threat-profilereplaceoverridesrequest
      required:
      - name
      - comments
      - active-protections-performance-impact
      - active-protections-severity
      - confidence-level-medium
      - confidence-level-high
      - threat-emulation
      - anti-virus
      - anti-bot
      - ips
      - overrides
      type: object
      properties:
        name:
          type: string
        comments:
          type: string
        active-protections-performance-impact:
          type: string
        active-protections-severity:
          type: string
        confidence-level-medium:
          type: string
        confidence-level-high:
          type: string
        threat-emulation:
          type: boolean
        anti-virus:
          type: boolean
        anti-bot:
          type: boolean
        ips:
          type: boolean
        overrides:
          type: array
          items:
            $ref: '#/components/schemas/Overrides1'
          description: ''
      example:
        name: New Profile 2
        comments: 'update recommended profile  '
        active-protections-performance-impact: low
        active-protections-severity: low or above
        confidence-level-medium: prevent
        confidence-level-high: prevent
        threat-emulation: true
        anti-virus: false
        anti-bot: true
        ips: false
        overrides:
        - protection: ART Files
          capture-packets: true
          action: Prevent
          track: Log
        - protection: GoToMyPC
          capture-packets: true
          action: Prevent
          track: Log
        - protection: DHCP
          capture-packets: true
          action: Prevent
          track: Log
    delete-threat-profile-request:
      title: delete-threat-profile-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Profile 1
    show-threat-profiles-request:
      title: show-threat-profiles-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-threat-indicator-request:
      title: add-threat-indicator-request
      required:
      - name
      - observables
      - action
      - profile-overrides
      - ignore-warnings
      type: object
      properties:
        name:
          type: string
        observables:
          type: array
          items:
            $ref: '#/components/schemas/Observable'
          description: ''
        action:
          type: string
        profile-overrides:
          type: array
          items:
            $ref: '#/components/schemas/ProfileOverride'
          description: ''
        ignore-warnings:
          type: boolean
      example:
        name: My_Indicator
        observables:
        - name: My_Observable
          mail-to: someone@somewhere.com
          confidence: medium
          severity: low
          product: AV
        action: ask
        profile-overrides:
        - profile: My_Profile
          action: detect
        ignore-warnings: true
    Observable:
      title: Observable
      required:
      - name
      - mail-to
      - confidence
      - severity
      - product
      type: object
      properties:
        name:
          type: string
        mail-to:
          type: string
        confidence:
          type: string
        severity:
          type: string
        product:
          type: string
      example:
        name: My_Observable
        mail-to: someone@somewhere.com
        confidence: medium
        severity: low
        product: AV
    ProfileOverride:
      title: ProfileOverride
      required:
      - profile
      - action
      type: object
      properties:
        profile:
          type: string
        action:
          type: string
      example:
        profile: My_Profile
        action: detect
    show-threat-indicator-request:
      title: show-threat-indicator-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: My_Indicator
    show-threat-indicator:
      title: show-threat-indicator
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - icon
      - action
      - number-of-observables
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        icon:
          type: string
        action:
          type: string
        number-of-observables:
          type: integer
          format: int32
      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
    set-threat-indicator-request:
      title: set-threat-indicator-request
      required:
      - name
      - action
      - profile-overrides
      - ignore-warnings
      type: object
      properties:
        name:
          type: string
        action:
          type: string
        profile-overrides:
          allOf:
          - $ref: '#/components/schemas/ProfileOverrides'
          - example:
              remove: My_Profile
        ignore-warnings:
          type: boolean
      example:
        name: My_Indicator
        action: prevent
        profile-overrides:
          remove: My_Profile
        ignore-warnings: true
    ProfileOverrides:
      title: ProfileOverrides
      required:
      - remove
      type: object
      properties:
        remove:
          type: string
      example:
        remove: My_Profile
    set-threat-indicator:
      title: set-threat-indicator
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - icon
      - action
      - number-of-observables
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        icon:
          type: string
        action:
          type: string
        number-of-observables:
          type: integer
          format: int32
      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
    delete-threat-indicator-request:
      title: delete-threat-indicator-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: My_Indicator
    show-threat-indicators:
      title: show-threat-indicators
      required:
      - from
      - to
      - total
      - indicators
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        indicators:
          type: array
          items:
            $ref: '#/components/schemas/Indicator'
          description: ''
      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
    Indicator:
      title: Indicator
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      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
    add-threat-layer-request:
      title: add-threat-layer-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Layer 1
    show-threat-layer-request:
      title: show-threat-layer-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Layer 1
    set-threat-layer-request:
      title: set-threat-layer-request
      required:
      - name
      - new-name
      type: object
      properties:
        name:
          type: string
        new-name:
          type: string
      example:
        name: New Layer 1
        new-name: New Layer 2
    delete-threat-layer-request:
      title: delete-threat-layer-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Layer 2
    show-threat-layers-request:
      title: show-threat-layers-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-threat-layers:
      title: show-threat-layers
      required:
      - from
      - to
      - total
      - threat-layers
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        threat-layers:
          type: array
          items:
            $ref: '#/components/schemas/ThreatLayer'
          description: ''
      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
    ThreatLayer:
      title: ThreatLayer
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    show-ips-update-schedule:
      title: show-ips-update-schedule
      required:
      - enabled
      - time
      - recurrence
      type: object
      properties:
        enabled:
          type: boolean
        time:
          type: string
        recurrence:
          allOf:
          - $ref: '#/components/schemas/Recurrence2'
          - example:
              pattern: Daily
      example:
        enabled: true
        time: 0:00
        recurrence:
          pattern: Daily
    Recurrence2:
      title: Recurrence2
      required:
      - pattern
      type: object
      properties:
        pattern:
          type: string
      example:
        pattern: Daily
    set-ips-update-schedule-interval-request:
      title: set-ips-update-schedule-interval-request
      required:
      - enabled
      - recurrence
      type: object
      properties:
        enabled:
          type: boolean
        recurrence:
          allOf:
          - $ref: '#/components/schemas/Recurrence3'
          - example:
              pattern: interval
              minutes: 45
      example:
        enabled: true
        recurrence:
          pattern: interval
          minutes: 45
    Recurrence3:
      title: Recurrence3
      required:
      - pattern
      - minutes
      type: object
      properties:
        pattern:
          type: string
        minutes:
          type: integer
          format: int32
      example:
        pattern: interval
        minutes: 45
    set-ips-update-schedule-interval:
      title: set-ips-update-schedule-interval
      required:
      - enabled
      - recurrence
      type: object
      properties:
        enabled:
          type: boolean
        recurrence:
          allOf:
          - $ref: '#/components/schemas/Recurrence3'
          - example:
              pattern: interval
              minutes: 45
      example:
        enabled: true
        recurrence:
          pattern: Interval
          minutes: 45
    run-ips-update:
      title: run-ips-update
      required:
      - task-id
      type: object
      properties:
        task-id:
          type: string
      example:
        task-id: 6b2e5c77-0622-4e7f-a9bf-4e1f21899553
    run-ips-update-offline-request:
      title: run-ips-update-offline-request
      required:
      - package-path
      type: object
      properties:
        package-path:
          type: string
      example:
        package-path: path/to/update.upf
    run-ips-update-offline:
      title: run-ips-update-offline
      required:
      - task-id
      type: object
      properties:
        task-id:
          type: string
      example:
        task-id: 46c0720c-d9f0-4012-b88e-56baa523086d
    show-ips-status:
      title: show-ips-status
      required:
      - last-updated
      - installed-version
      - installed-version-creation-time
      - update-available
      - latest-version
      - latest-version-creation-time
      type: object
      properties:
        last-updated:
          allOf:
          - $ref: '#/components/schemas/LastUpdated'
          - example:
              posix: 1444285828000
              iso-8601: 2015-10-08T09:30+0300
        installed-version:
          type: string
        installed-version-creation-time:
          allOf:
          - $ref: '#/components/schemas/InstalledVersionCreationTime'
          - example:
              posix: 1440928800000
              iso-8601: 2015-08-30T13:00+0300
        update-available:
          type: boolean
        latest-version:
          type: string
        latest-version-creation-time:
          allOf:
          - $ref: '#/components/schemas/LatestVersionCreationTime'
          - example:
              posix: 1444276800000
              iso-8601: 2015-10-08T07:00+0300
      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
    LastUpdated:
      title: LastUpdated
      required:
      - posix
      - iso-8601
      type: object
      properties:
        posix:
          type: integer
          format: int64
        iso-8601:
          type: string
      example:
        posix: 1444285828000
        iso-8601: 2015-10-08T09:30+0300
    InstalledVersionCreationTime:
      title: InstalledVersionCreationTime
      required:
      - posix
      - iso-8601
      type: object
      properties:
        posix:
          type: integer
          format: int64
        iso-8601:
          type: string
      example:
        posix: 1440928800000
        iso-8601: 2015-08-30T13:00+0300
    LatestVersionCreationTime:
      title: LatestVersionCreationTime
      required:
      - posix
      - iso-8601
      type: object
      properties:
        posix:
          type: integer
          format: int64
        iso-8601:
          type: string
      example:
        posix: 1444276800000
        iso-8601: 2015-10-08T07:00+0300
    show-ips-protection-extended-attribute-request:
      title: show-ips-protection-extended-attribute-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: Vulnerability Effect
    show-ips-protection-extended-attribute:
      title: show-ips-protection-extended-attribute
      required:
      - object
      type: object
      properties:
        object:
          allOf:
          - $ref: '#/components/schemas/Object25'
          - example:
              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
      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
    Object25:
      title: Object25
      required:
      - name
      - uid
      - values
      type: object
      properties:
        name:
          type: string
        uid:
          type: string
        values:
          type: array
          items:
            $ref: '#/components/schemas/Value'
          description: ''
      example:
        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
    Value:
      title: Value
      required:
      - name
      - uid
      type: object
      properties:
        name:
          type: string
        uid:
          type: string
      example:
        name: Privilege Escalation
        uid: e23b95b3-4c4b-d046-8868-7c514f7c0856
    show-ips-protection-extended-attributes:
      title: show-ips-protection-extended-attributes
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object25'
          description: ''
      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
    run-threat-emulation-file-types-offline-update-request:
      title: run-threat-emulation-file-types-offline-update-request
      required:
      - file-path
      type: object
      properties:
        file-path:
          type: string
      example:
        file-path: /tmp/FileTypeUpdate.xml
    run-threat-emulation-file-types-offline-update:
      title: run-threat-emulation-file-types-offline-update
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: Update of file types supported by Threat Emulation completed successfully.
    verify-policy-request:
      title: verify-policy-request
      required:
      - policy-package
      type: object
      properties:
        policy-package:
          type: string
      example:
        policy-package: standard
    install-policy-request:
      title: install-policy-request
      required:
      - policy-package
      - access
      - threat-prevention
      - targets
      type: object
      properties:
        policy-package:
          type: string
        access:
          type: boolean
        threat-prevention:
          type: boolean
        targets:
          type: array
          items:
            type: string
          description: ''
      example:
        policy-package: standard
        access: true
        threat-prevention: true
        targets:
        - corporate-gateway
    add-package-request:
      title: add-package-request
      required:
      - name
      - comments
      - color
      - threat-prevention
      - access
      type: object
      properties:
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        threat-prevention:
          type: boolean
        access:
          type: boolean
      example:
        name: New_Standard_Package_1
        comments: My Comments
        color: green
        threat-prevention: false
        access: true
    add-package:
      title: add-package
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - access
      - access-layers
      - vpn-traditional-mode
      - nat-policy
      - qos
      - qos-policy-type
      - desktop-security
      - threat-prevention
      - installation-targets
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        access:
          type: boolean
        access-layers:
          type: array
          items:
            $ref: '#/components/schemas/AccessLayer'
          description: ''
        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
    AccessLayer:
      title: AccessLayer
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    show-package-request:
      title: show-package-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New_Standard_Package_1
    set-package-request:
      title: set-package-request
      required:
      - name
      - access-layers
      - threat-layers
      type: object
      properties:
        name:
          type: string
        access-layers:
          allOf:
          - $ref: '#/components/schemas/AccessLayers'
          - example:
              add:
              - name: New Access Layer 1
                position: 1
        threat-layers:
          allOf:
          - $ref: '#/components/schemas/ThreatLayers'
          - example:
              add:
              - name: New Layer 1
                position: 2
      example:
        name: Standard
        access-layers:
          add:
          - name: New Access Layer 1
            position: 1
        threat-layers:
          add:
          - name: New Layer 1
            position: 2
    AccessLayers:
      title: AccessLayers
      required:
      - add
      type: object
      properties:
        add:
          type: array
          items:
            $ref: '#/components/schemas/Add3'
          description: ''
      example:
        add:
        - name: New Access Layer 1
          position: 1
    Add3:
      title: Add3
      required:
      - name
      - position
      type: object
      properties:
        name:
          type: string
        position:
          type: integer
          format: int32
      example:
        name: New Access Layer 1
        position: 1
    ThreatLayers:
      title: ThreatLayers
      required:
      - add
      type: object
      properties:
        add:
          type: array
          items:
            $ref: '#/components/schemas/Add3'
          description: ''
      example:
        add:
        - name: New Layer 1
          position: 2
    set-package:
      title: set-package
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - name
      - comments
      - color
      - icon
      - access
      - access-layers
      - threat-layers
      - vpn-traditional-mode
      - nat-policy
      - qos
      - qos-policy-type
      - desktop-security
      - threat-prevention
      - installation-targets
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        name:
          type: string
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        access:
          type: boolean
        access-layers:
          type: array
          items:
            $ref: '#/components/schemas/AccessLayers1'
          description: ''
        threat-layers:
          type: array
          items:
            $ref: '#/components/schemas/ThreatLayers1'
          description: ''
        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
    AccessLayers1:
      title: AccessLayers1
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    ThreatLayers1:
      title: ThreatLayers1
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    delete-package-request:
      title: delete-package-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: New Standard Package 1
    show-packages-request:
      title: show-packages-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    add-domain-request:
      title: add-domain-request
      required:
      - name
      - servers
      type: object
      properties:
        name:
          type: string
        servers:
          allOf:
          - $ref: '#/components/schemas/Servers'
          - example:
              ip-address: 192.0.2.1
              name: domain1_ManagementServer_1
              multi-domain-server: MDM_Server
      example:
        name: domain1
        servers:
          ip-address: 192.0.2.1
          name: domain1_ManagementServer_1
          multi-domain-server: MDM_Server
    Servers:
      title: Servers
      required:
      - ip-address
      - name
      - multi-domain-server
      type: object
      properties:
        ip-address:
          type: string
        name:
          type: string
        multi-domain-server:
          type: string
      example:
        ip-address: 192.0.2.1
        name: domain1_ManagementServer_1
        multi-domain-server: MDM_Server
    add-domainwithtwodomainserversrequest:
      title: add-domainwithtwodomainserversrequest
      required:
      - name
      - servers
      type: object
      properties:
        name:
          type: string
        servers:
          type: array
          items:
            $ref: '#/components/schemas/Servers1'
          description: ''
      example:
        name: domain1
        servers:
        - ip-address: 192.0.2.1
          name: domain1_ManagementServer_1
          multi-domain-server: MDM_Server
          type: management server
        - ip-address: 192.0.2.2
          name: domain1_Log_Server_1
          multi-domain-server: Log_Server
          active: false
          type: log server
    Servers1:
      title: Servers1
      required:
      - ip-address
      - name
      - multi-domain-server
      - type
      type: object
      properties:
        ip-address:
          type: string
        name:
          type: string
        multi-domain-server:
          type: string
        type:
          type: string
        active:
          type: boolean
      example:
        ip-address: 192.0.2.1
        name: domain1_ManagementServer_1
        multi-domain-server: MDM_Server
        type: management server
    show-domain-request:
      title: show-domain-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: domain1
    set-domain-request:
      title: set-domain-request
      required:
      - name
      - comments
      type: object
      properties:
        name:
          type: string
        comments:
          type: string
      example:
        name: domain1
        comments: This is domain1 comment
    set-domainaddlogserverrequest:
      title: set-domainaddlogserverrequest
      required:
      - name
      - servers
      type: object
      properties:
        name:
          type: string
        servers:
          allOf:
          - $ref: '#/components/schemas/Servers2'
          - example:
              add:
                ip-address: 192.0.2.4
                name: domain2_Log_Server_2
                multi-domain-server: Log_Server
                type: log server
      example:
        name: domain2
        servers:
          add:
            ip-address: 192.0.2.4
            name: domain2_Log_Server_2
            multi-domain-server: Log_Server
            type: log server
    Servers2:
      title: Servers2
      required:
      - add
      type: object
      properties:
        add:
          allOf:
          - $ref: '#/components/schemas/Add5'
          - example:
              ip-address: 192.0.2.4
              name: domain2_Log_Server_2
              multi-domain-server: Log_Server
              type: log server
      example:
        add:
          ip-address: 192.0.2.4
          name: domain2_Log_Server_2
          multi-domain-server: Log_Server
          type: log server
    Add5:
      title: Add5
      required:
      - ip-address
      - name
      - multi-domain-server
      - type
      type: object
      properties:
        ip-address:
          type: string
        name:
          type: string
        multi-domain-server:
          type: string
        type:
          type: string
      example:
        ip-address: 192.0.2.4
        name: domain2_Log_Server_2
        multi-domain-server: Log_Server
        type: log server
    delete-domain-request:
      title: delete-domain-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: domain1
    show-domains-request:
      title: show-domains-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    show-global-domain-request:
      title: show-global-domain-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: Global2
    set-global-domain-request:
      title: set-global-domain-request
      required:
      - name
      - comments
      type: object
      properties:
        name:
          type: string
        comments:
          type: string
      example:
        name: Global2
        comments: this is my Global domain
    show-mds-request:
      title: show-mds-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: test_mds1
    show-mdss:
      title: show-mdss
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object3'
          description: ''
      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
    show-place-holder-request:
      title: show-place-holder-request
      required:
      - uid
      type: object
      properties:
        uid:
          type: string
      example:
        uid: 5df27676-83a6-4d38-beaa-0413838a7f85
    show-place-holder:
      title: show-place-holder
      required:
      - uid
      - folder
      - domain
      - meta-info
      - tags
      - comments
      - color
      - icon
      type: object
      properties:
        uid:
          type: string
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo'
          - example:
              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:
          type: array
          items:
            type: string
          description: ''
        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
    add-global-assignment-request:
      title: add-global-assignment-request
      required:
      - global-domain
      - dependent-domain
      - global-access-policy
      - global-threat-prevention-policy
      - manage-protection-actions
      type: object
      properties:
        global-domain:
          type: string
        dependent-domain:
          type: string
        global-access-policy:
          type: string
        global-threat-prevention-policy:
          type: string
        manage-protection-actions:
          type: boolean
      example:
        global-domain: Global
        dependent-domain: domain2
        global-access-policy: standard
        global-threat-prevention-policy: standard
        manage-protection-actions: true
    show-global-assignment-request:
      title: show-global-assignment-request
      required:
      - global-domain
      - dependent-domain
      type: object
      properties:
        global-domain:
          type: string
        dependent-domain:
          type: string
      example:
        global-domain: Global2
        dependent-domain: domain1
    set-global-assignment-request:
      title: set-global-assignment-request
      required:
      - global-domain
      - dependent-domain
      - global-threat-prevention-policy
      - manage-protection-actions
      type: object
      properties:
        global-domain:
          type: string
        dependent-domain:
          type: string
        global-threat-prevention-policy:
          type: string
        manage-protection-actions:
          type: boolean
      example:
        global-domain: Global2
        dependent-domain: domain1
        global-threat-prevention-policy: ''
        manage-protection-actions: false
    delete-global-assignment-request:
      title: delete-global-assignment-request
      required:
      - global-domain
      - dependent-domain
      type: object
      properties:
        global-domain:
          type: string
        dependent-domain:
          type: string
      example:
        global-domain: Global2
        dependent-domain: domain1
    show-global-assignments-request:
      title: show-global-assignments-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    assign-global-assignment-request:
      title: assign-global-assignment-request
      required:
      - global-domains
      - dependent-domains
      type: object
      properties:
        global-domains:
          type: string
        dependent-domains:
          type: string
      example:
        global-domains: Global2
        dependent-domains: domain1
    where-used-request:
      title: where-used-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: Host 1
    where-used:
      title: where-used
      required:
      - used-directly
      type: object
      properties:
        used-directly:
          allOf:
          - $ref: '#/components/schemas/UsedDirectly'
          - example:
              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
      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
    UsedDirectly:
      title: UsedDirectly
      required:
      - total
      - objects
      - threat-prevention-rules
      - nat-rules
      - access-control-rules
      type: object
      properties:
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object3'
          description: ''
        threat-prevention-rules:
          type: array
          items:
            type: string
          description: ''
        nat-rules:
          type: array
          items:
            type: string
          description: ''
        access-control-rules:
          type: array
          items:
            $ref: '#/components/schemas/AccessControlRule'
          description: ''
      example:
        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
    AccessControlRule:
      title: AccessControlRule
      required:
      - rule
      - position
      - owner
      - policy
      - layer
      - layer-position
      - package
      type: object
      properties:
        rule:
          allOf:
          - $ref: '#/components/schemas/Rule'
          - example:
              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:
          type: string
        owner:
          allOf:
          - $ref: '#/components/schemas/Owner'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/Policy'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/Layer'
          - example:
              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:
          type: integer
          format: int32
        package:
          allOf:
          - $ref: '#/components/schemas/Package'
          - example:
              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
      example:
        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
    Rule:
      title: Rule
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    Owner:
      title: Owner
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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:
      title: Policy
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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:
      title: Layer
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    Package:
      title: Package
      required:
      - folder
      - domain
      - type
      - name
      - uid
      type: object
      properties:
        folder:
          allOf:
          - $ref: '#/components/schemas/Folder'
          - example:
              uid: feb54da1-c5e2-4e83-a3ed-d0601ba5ccb9
              name: /Global Objects
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        type:
          type: string
        name:
          type: string
        uid:
          type: string
      example:
        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
    where-usedindirectrequest:
      title: where-usedindirectrequest
      required:
      - name
      - indirect
      - details-level
      - indirect-max-depth
      type: object
      properties:
        name:
          type: string
        indirect:
          type: boolean
        details-level:
          type: string
        indirect-max-depth:
          type: integer
          format: int32
      example:
        name: Host 1
        indirect: true
        details-level: uid
        indirect-max-depth: 5
    where-usedindirect:
      title: where-usedindirect
      required:
      - used-directly
      - used-indirectly
      type: object
      properties:
        used-directly:
          allOf:
          - $ref: '#/components/schemas/UsedDirectly1'
          - example:
              total: 2
              objects:
              - f5c7640d-92eb-4c91-b7ad-c9c972ec31d6
              threat-prevention-rules: []
              nat-rules: []
              access-control-rules:
              - rule: 6c4fc003-4a45-4a09-9438-b76745c55674
                position: '2'
                owner: f799c262-0942-4cb7-a7da-c5daed16b27b
                policy: 21bef0f6-026d-4730-80b2-b8159a0bc11a
                layer: f799c262-0942-4cb7-a7da-c5daed16b27b
                layer-position: 0
                package: 68451b5c-c330-4b5c-a9f4-4c9ff97b7b2d
        used-indirectly:
          allOf:
          - $ref: '#/components/schemas/UsedIndirectly'
          - example:
              total: 6
              objects:
              - 7a42b6fa-c0ab-4646-9f38-e6a75a2d1f65
              - a991a0db-cf5b-4228-ab7f-3093f8018fae
              - 47f15ffc-a7ba-4a80-a58d-5a992c649c8e
              - a652839f-2232-4db9-a444-b2f910fb0642
              - d2ddc3ef-29bc-469b-ab6c-c469a778d31f
              threat-prevention-rules: []
              nat-rules:
              - rule: 774bafc8-38d9-4580-817e-14b0da4e605e
                position: '1'
                owner: 20fd80bf-57f3-4c2b-8fa1-916f87375941
                policy: ed31f1cb-3f02-4bec-b29f-3814cc4f0e07
                package: 68451b5c-c330-4b5c-a9f4-4c9ff97b7b2d
              access-control-rules: []
      example:
        used-directly:
          total: 2
          objects:
          - f5c7640d-92eb-4c91-b7ad-c9c972ec31d6
          threat-prevention-rules: []
          nat-rules: []
          access-control-rules:
          - rule: 6c4fc003-4a45-4a09-9438-b76745c55674
            position: '2'
            owner: f799c262-0942-4cb7-a7da-c5daed16b27b
            policy: 21bef0f6-026d-4730-80b2-b8159a0bc11a
            layer: f799c262-0942-4cb7-a7da-c5daed16b27b
            layer-position: 0
            package: 68451b5c-c330-4b5c-a9f4-4c9ff97b7b2d
        used-indirectly:
          total: 6
          objects:
          - 7a42b6fa-c0ab-4646-9f38-e6a75a2d1f65
          - a991a0db-cf5b-4228-ab7f-3093f8018fae
          - 47f15ffc-a7ba-4a80-a58d-5a992c649c8e
          - a652839f-2232-4db9-a444-b2f910fb0642
          - d2ddc3ef-29bc-469b-ab6c-c469a778d31f
          threat-prevention-rules: []
          nat-rules:
          - rule: 774bafc8-38d9-4580-817e-14b0da4e605e
            position: '1'
            owner: 20fd80bf-57f3-4c2b-8fa1-916f87375941
            policy: ed31f1cb-3f02-4bec-b29f-3814cc4f0e07
            package: 68451b5c-c330-4b5c-a9f4-4c9ff97b7b2d
          access-control-rules: []
    UsedDirectly1:
      title: UsedDirectly1
      required:
      - total
      - objects
      - threat-prevention-rules
      - nat-rules
      - access-control-rules
      type: object
      properties:
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            type: string
          description: ''
        threat-prevention-rules:
          type: array
          items:
            type: string
          description: ''
        nat-rules:
          type: array
          items:
            type: string
          description: ''
        access-control-rules:
          type: array
          items:
            $ref: '#/components/schemas/AccessControlRule1'
          description: ''
      example:
        total: 2
        objects:
        - f5c7640d-92eb-4c91-b7ad-c9c972ec31d6
        threat-prevention-rules: []
        nat-rules: []
        access-control-rules:
        - rule: 6c4fc003-4a45-4a09-9438-b76745c55674
          position: '2'
          owner: f799c262-0942-4cb7-a7da-c5daed16b27b
          policy: 21bef0f6-026d-4730-80b2-b8159a0bc11a
          layer: f799c262-0942-4cb7-a7da-c5daed16b27b
          layer-position: 0
          package: 68451b5c-c330-4b5c-a9f4-4c9ff97b7b2d
    AccessControlRule1:
      title: AccessControlRule1
      required:
      - rule
      - position
      - owner
      - policy
      - layer
      - layer-position
      - package
      type: object
      properties:
        rule:
          type: string
        position:
          type: string
        owner:
          type: string
        policy:
          type: string
        layer:
          type: string
        layer-position:
          type: integer
          format: int32
        package:
          type: string
      example:
        rule: 6c4fc003-4a45-4a09-9438-b76745c55674
        position: '2'
        owner: f799c262-0942-4cb7-a7da-c5daed16b27b
        policy: 21bef0f6-026d-4730-80b2-b8159a0bc11a
        layer: f799c262-0942-4cb7-a7da-c5daed16b27b
        layer-position: 0
        package: 68451b5c-c330-4b5c-a9f4-4c9ff97b7b2d
    UsedIndirectly:
      title: UsedIndirectly
      required:
      - total
      - objects
      - threat-prevention-rules
      - nat-rules
      - access-control-rules
      type: object
      properties:
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            type: string
          description: ''
        threat-prevention-rules:
          type: array
          items:
            type: string
          description: ''
        nat-rules:
          type: array
          items:
            $ref: '#/components/schemas/NatRule'
          description: ''
        access-control-rules:
          type: array
          items:
            type: string
          description: ''
      example:
        total: 6
        objects:
        - 7a42b6fa-c0ab-4646-9f38-e6a75a2d1f65
        - a991a0db-cf5b-4228-ab7f-3093f8018fae
        - 47f15ffc-a7ba-4a80-a58d-5a992c649c8e
        - a652839f-2232-4db9-a444-b2f910fb0642
        - d2ddc3ef-29bc-469b-ab6c-c469a778d31f
        threat-prevention-rules: []
        nat-rules:
        - rule: 774bafc8-38d9-4580-817e-14b0da4e605e
          position: '1'
          owner: 20fd80bf-57f3-4c2b-8fa1-916f87375941
          policy: ed31f1cb-3f02-4bec-b29f-3814cc4f0e07
          package: 68451b5c-c330-4b5c-a9f4-4c9ff97b7b2d
        access-control-rules: []
    NatRule:
      title: NatRule
      required:
      - rule
      - position
      - owner
      - policy
      - package
      type: object
      properties:
        rule:
          type: string
        position:
          type: string
        owner:
          type: string
        policy:
          type: string
        package:
          type: string
      example:
        rule: 774bafc8-38d9-4580-817e-14b0da4e605e
        position: '1'
        owner: 20fd80bf-57f3-4c2b-8fa1-916f87375941
        policy: ed31f1cb-3f02-4bec-b29f-3814cc4f0e07
        package: 68451b5c-c330-4b5c-a9f4-4c9ff97b7b2d
    show-task-request:
      title: show-task-request
      required:
      - task-id
      type: object
      properties:
        task-id:
          type: string
      example:
        task-id: 2eec70e5-78a8-4bdb-9a76-cfb5601d0bcb
    run-script-request:
      title: run-script-request
      required:
      - script-name
      - script
      - targets
      type: object
      properties:
        script-name:
          type: string
        script:
          type: string
        targets:
          type: array
          items:
            type: string
          description: ''
      example:
        script-name: 'Script Example: List files under / dir'
        script: ls -l /
        targets:
        - corporate-gateway
    run-scriptwithsession-idrequest:
      title: run-scriptwithsession-idrequest
      required:
      - script-name
      - script
      - set-session-id
      - targets
      type: object
      properties:
        script-name:
          type: string
        script:
          type: string
        set-session-id:
          type: boolean
        targets:
          type: array
          items:
            type: string
          description: ''
      example:
        script-name: Session ID Example
        script: echo $MGMT_CLI_SESSION_ID
        set-session-id: true
        targets:
        - corporate-gateway
    showunusedobjectsrequest:
      title: showunusedobjectsrequest
      required:
      - offset
      - limit
      - details-level
      type: object
      properties:
        offset:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        offset: 0
        limit: 50
        details-level: standard
    exportrequest:
      title: exportrequest
      required:
      - export-files-by-class
      type: object
      properties:
        export-files-by-class:
          type: boolean
      example:
        export-files-by-class: true
    export-with-include-request:
      title: export-with-include-request
      required:
      - export-files-by-class
      - include-classes
      type: object
      properties:
        export-files-by-class:
          type: boolean
        include-classes:
          type: array
          items:
            type: string
          description: ''
      example:
        export-files-by-class: true
        include-classes:
        - com.checkpoint.objects.classes.dummy.CpmiInspectLog
    exportwithquery-limitrequest:
      title: exportwithquery-limitrequest
      required:
      - export-files-by-class
      - query-limit
      type: object
      properties:
        export-files-by-class:
          type: boolean
        query-limit:
          type: integer
          format: int32
      example:
        export-files-by-class: true
        query-limit: 1000
    show-changesbetweenthedatesrequest:
      title: show-changesbetweenthedatesrequest
      required:
      - from-date
      - to-date
      type: object
      properties:
        from-date:
          type: string
        to-date:
          type: string
      example:
        from-date: 2017-02-01T08:20:50
        to-date: 2017-02-21
    show-changesbetweenthedates:
      title: show-changesbetweenthedates
      required:
      - tasks
      type: object
      properties:
        tasks:
          type: array
          items:
            $ref: '#/components/schemas/Task'
          description: ''
      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
    Task:
      title: Task
      required:
      - task-name
      - task-id
      - status
      - progress-percentage
      - progress-description
      - suppressed
      - task-details
      type: object
      properties:
        task-name:
          type: string
        task-id:
          type: string
        status:
          type: string
        progress-percentage:
          type: integer
          format: int32
        progress-description:
          type: string
        suppressed:
          type: boolean
        task-details:
          type: array
          items:
            $ref: '#/components/schemas/TaskDetail'
          description: ''
      example:
        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
    TaskDetail:
      title: TaskDetail
      required:
      - changes
      - limit
      - offset
      type: object
      properties:
        changes:
          type: array
          items:
            $ref: '#/components/schemas/Change'
          description: ''
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
      example:
        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
    Change:
      title: Change
      required:
      - session
      - operations
      type: object
      properties:
        session:
          allOf:
          - $ref: '#/components/schemas/Session'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/Operations'
          - example:
              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
      example:
        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
    Session:
      title: Session
      required:
      - session-uid
      - user-name
      - publish-time
      - domain-info
      type: object
      properties:
        session-uid:
          type: string
        user-name:
          type: string
        publish-time:
          allOf:
          - $ref: '#/components/schemas/PublishTime'
          - example:
              posix: 1485930056333
              iso-8601: 2017-02-01T08:20+0200
        domain-info:
          allOf:
          - $ref: '#/components/schemas/DomainInfo'
          - example:
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
              domain-type: domain
      example:
        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
    PublishTime:
      title: PublishTime
      required:
      - posix
      - iso-8601
      type: object
      properties:
        posix:
          type: integer
          format: int64
        iso-8601:
          type: string
      example:
        posix: 1485930056333
        iso-8601: 2017-02-01T08:20+0200
    DomainInfo:
      title: DomainInfo
      required:
      - uid
      - name
      - domain-type
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        domain-type:
          type: string
      example:
        uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
        name: SMC User
        domain-type: domain
    Operations:
      title: Operations
      required:
      - added-objects
      - modified-objects
      - deleted-objects
      type: object
      properties:
        added-objects:
          type: array
          items:
            $ref: '#/components/schemas/AddedObject'
          description: ''
        modified-objects:
          type: array
          items:
            $ref: '#/components/schemas/ModifiedObject'
          description: ''
        deleted-objects:
          type: array
          items:
            $ref: '#/components/schemas/DeletedObject'
          description: ''
      example:
        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
    AddedObject:
      title: AddedObject
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        uid: 408c7054-eb6d-4557-8a15-cb1b6160b80b
        name: MyRule3
        type: access-rule
        domain:
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
          domain-type: domain
    ModifiedObject:
      title: ModifiedObject
      required:
      - old-object
      - new-object
      type: object
      properties:
        old-object:
          allOf:
          - $ref: '#/components/schemas/OldObject'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/NewObject'
          - example:
              uid: fad17be7-6b4e-4033-b27f-b7769520e0a1
              name: MyRule4
              type: access-rule
              domain:
                uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                name: SMC User
                domain-type: domain
      example:
        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
    OldObject:
      title: OldObject
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        uid: fad17be7-6b4e-4033-b27f-b7769520e0a1
        name: MyRule2
        type: access-rule
        domain:
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
          domain-type: domain
    NewObject:
      title: NewObject
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        uid: fad17be7-6b4e-4033-b27f-b7769520e0a1
        name: MyRule4
        type: access-rule
        domain:
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
          domain-type: domain
    DeletedObject:
      title: DeletedObject
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        uid: 7bded5dc-ad1d-4300-8405-12f9afdbdba3
        name: MyRule1
        type: access-rule
        domain:
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
          domain-type: domain
    show-changesbysessionidentifiersrequest:
      title: show-changesbysessionidentifiersrequest
      required:
      - from-session
      - to-session
      type: object
      properties:
        from-session:
          type: string
        to-session:
          type: string
      example:
        from-session: 0ca1c8ad-88e1-46ee-aece-ff5774e5abee
        to-session: 40b969d3-6b3c-48a0-a4d7-7cfeeea1bc5a
    show-changesbysessionidentifiers:
      title: show-changesbysessionidentifiers
      required:
      - tasks
      type: object
      properties:
        tasks:
          type: array
          items:
            $ref: '#/components/schemas/Task1'
          description: ''
      example:
        tasks:
        - task-name: Show Changes
          task-id: abcdef01-2345-6789-8ce9-363a54ca2d74
          status: succeeded
          progress-percentage: 100
          progress-description: Operation Complete
          suppressed: false
          task-details:
          - changes:
            - session:
                session-uid: f769407d-4bce-4b1b-aaf5-f7f6727525be
                user-name: aa
                publish-time:
                  posix: 1485930043334
                  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
            - session:
                session-uid: 0ca1c8ad-88e1-46ee-aece-ff5774e5abee
                user-name: aa
                publish-time:
                  posix: 1485929993764
                  iso-8601: 2017-02-01T08:19+0200
                domain-info:
                  uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                  name: SMC User
                  domain-type: domain
              operations:
                added-objects: []
                modified-objects:
                - old-object:
                    uid: fad17be7-6b4e-4033-b27f-b7769520e0a1
                    name: MyRule1
                    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: MyRule2
                    type: access-rule
                    domain:
                      uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                      name: SMC User
                      domain-type: domain
                deleted-objects: []
            limit: 10
            offset: 0
    Task1:
      title: Task1
      required:
      - task-name
      - task-id
      - status
      - progress-percentage
      - progress-description
      - suppressed
      - task-details
      type: object
      properties:
        task-name:
          type: string
        task-id:
          type: string
        status:
          type: string
        progress-percentage:
          type: integer
          format: int32
        progress-description:
          type: string
        suppressed:
          type: boolean
        task-details:
          type: array
          items:
            $ref: '#/components/schemas/TaskDetail1'
          description: ''
      example:
        task-name: Show Changes
        task-id: abcdef01-2345-6789-8ce9-363a54ca2d74
        status: succeeded
        progress-percentage: 100
        progress-description: Operation Complete
        suppressed: false
        task-details:
        - changes:
          - session:
              session-uid: f769407d-4bce-4b1b-aaf5-f7f6727525be
              user-name: aa
              publish-time:
                posix: 1485930043334
                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
          - session:
              session-uid: 0ca1c8ad-88e1-46ee-aece-ff5774e5abee
              user-name: aa
              publish-time:
                posix: 1485929993764
                iso-8601: 2017-02-01T08:19+0200
              domain-info:
                uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                name: SMC User
                domain-type: domain
            operations:
              added-objects: []
              modified-objects:
              - old-object:
                  uid: fad17be7-6b4e-4033-b27f-b7769520e0a1
                  name: MyRule1
                  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: MyRule2
                  type: access-rule
                  domain:
                    uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                    name: SMC User
                    domain-type: domain
              deleted-objects: []
          limit: 10
          offset: 0
    TaskDetail1:
      title: TaskDetail1
      required:
      - changes
      - limit
      - offset
      type: object
      properties:
        changes:
          type: array
          items:
            $ref: '#/components/schemas/Change1'
          description: ''
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
      example:
        changes:
        - session:
            session-uid: f769407d-4bce-4b1b-aaf5-f7f6727525be
            user-name: aa
            publish-time:
              posix: 1485930043334
              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
        - session:
            session-uid: 0ca1c8ad-88e1-46ee-aece-ff5774e5abee
            user-name: aa
            publish-time:
              posix: 1485929993764
              iso-8601: 2017-02-01T08:19+0200
            domain-info:
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
              domain-type: domain
          operations:
            added-objects: []
            modified-objects:
            - old-object:
                uid: fad17be7-6b4e-4033-b27f-b7769520e0a1
                name: MyRule1
                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: MyRule2
                type: access-rule
                domain:
                  uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
                  name: SMC User
                  domain-type: domain
            deleted-objects: []
        limit: 10
        offset: 0
    Change1:
      title: Change1
      required:
      - session
      - operations
      type: object
      properties:
        session:
          allOf:
          - $ref: '#/components/schemas/Session'
          - example:
              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:
          allOf:
          - $ref: '#/components/schemas/Operations1'
          - example:
              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
      example:
        session:
          session-uid: f769407d-4bce-4b1b-aaf5-f7f6727525be
          user-name: aa
          publish-time:
            posix: 1485930043334
            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
    Operations1:
      title: Operations1
      required:
      - added-objects
      - modified-objects
      - deleted-objects
      type: object
      properties:
        added-objects:
          type: array
          items:
            $ref: '#/components/schemas/AddedObject1'
          description: ''
        modified-objects:
          type: array
          items:
            $ref: '#/components/schemas/ModifiedObject'
          description: ''
        deleted-objects:
          type: array
          items:
            $ref: '#/components/schemas/DeletedObject1'
          description: ''
      example:
        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
    AddedObject1:
      title: AddedObject1
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        uid: 408c7054-eb6d-4557-8a15-cb1b6160b80b
        name: MyRule3
        type: access-rule
        domain:
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
          domain-type: domain
    DeletedObject1:
      title: DeletedObject1
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        uid: 7bded5dc-ad1d-4300-8405-12f9afdbdba3
        name: MyRule1
        type: access-rule
        domain:
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
          domain-type: domain
    show-gateways-and-servers-request:
      title: show-gateways-and-servers-request
      required:
      - details-level
      type: object
      properties:
        details-level:
          type: string
      example:
        details-level: full
    show-gateways-and-servers:
      title: show-gateways-and-servers
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object29'
          description: ''
      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
    Object29:
      title: Object29
      required:
      - uid
      - name
      - type
      - domain
      - meta-info
      - tags
      - read-only
      - comments
      - color
      - icon
      - groups
      - ipv4-address
      - operating-system
      - hardware
      - version
      - sic-status
      - policy
      - network-security-blades
      - management-blades
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        meta-info:
          allOf:
          - $ref: '#/components/schemas/MetaInfo6'
          - example:
              lock: locked by current session
              validation-state: ok
              last-modify-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              last-modifier: aa
              creation-time:
                posix: 1528267722225
                iso-8601: 2018-06-06T09:48+0300
              creator: aa
        tags:
          type: array
          items:
            type: string
          description: ''
        read-only:
          type: boolean
        comments:
          type: string
        color:
          type: string
        icon:
          type: string
        groups:
          type: array
          items:
            type: string
          description: ''
        ipv4-address:
          type: string
        operating-system:
          type: string
        hardware:
          type: string
        version:
          type: string
        sic-status:
          type: string
        policy:
          type: object
        network-security-blades:
          allOf:
          - $ref: '#/components/schemas/NetworkSecurityBlades'
          - example:
              firewall: true
        management-blades:
          allOf:
          - $ref: '#/components/schemas/ManagementBlades'
          - example: {}
        vpn-encryption-domain:
          type: string
        interfaces:
          type: array
          items:
            $ref: '#/components/schemas/Interface1'
          description: ''
      example:
        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
    NetworkSecurityBlades:
      title: NetworkSecurityBlades
      type: object
      properties:
        firewall:
          type: boolean
      example:
        firewall: true
    ManagementBlades:
      title: ManagementBlades
      type: object
      properties:
        logging-and-status:
          type: boolean
        network-policy-management:
          type: boolean
      example: {}
    Interface1:
      title: Interface1
      required:
      - interface-name
      - ipv4-address
      - ipv4-network-mask
      - ipv4-mask-length
      - topology
      - dynamic-ip
      type: object
      properties:
        interface-name:
          type: string
        ipv4-address:
          type: string
        ipv4-network-mask:
          type: string
        ipv4-mask-length:
          type: integer
          format: int32
        topology:
          allOf:
          - $ref: '#/components/schemas/Topology'
          - example:
              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:
          type: boolean
      example:
        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
    Topology:
      title: Topology
      required:
      - security-zone
      - leads-to-internet
      type: object
      properties:
        security-zone:
          allOf:
          - $ref: '#/components/schemas/SecurityZone'
          - example:
              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:
          type: boolean
      example:
        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
    SecurityZone:
      title: SecurityZone
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
      example:
        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
    show-objectsoftypegrouprequest:
      title: show-objectsoftypegrouprequest
      required:
      - limit
      - offset
      - order
      - type
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        order:
          type: array
          items:
            $ref: '#/components/schemas/Order'
          description: ''
        type:
          type: string
      example:
        limit: 50
        offset: 0
        order:
        - ASC: name
        type: group
    Order:
      title: Order
      required:
      - ASC
      type: object
      properties:
        ASC:
          type: string
      example:
        ASC: name
    show-objectsoftypehostrequest:
      title: show-objectsoftypehostrequest
      required:
      - limit
      - offset
      - order
      - type
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        order:
          type: array
          items:
            $ref: '#/components/schemas/Order'
          description: ''
        type:
          type: string
      example:
        limit: 50
        offset: 0
        order:
        - ASC: name
        type: host
    show-objectsoftypenetworkrequest:
      title: show-objectsoftypenetworkrequest
      required:
      - limit
      - offset
      - order
      - type
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        order:
          type: array
          items:
            $ref: '#/components/schemas/Order'
          description: ''
        type:
          type: string
      example:
        limit: 50
        offset: 0
        order:
        - ASC: name
        type: network
    show-objects-request:
      title: show-objects-request
      required:
      - limit
      - offset
      - order
      - type
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        order:
          type: array
          items:
            $ref: '#/components/schemas/Order3'
          description: ''
        type:
          type: string
      example:
        limit: 10
        offset: 0
        order:
        - ASC: name
        - DESC: objId
        type: object
    Order3:
      title: Order3
      type: object
      properties:
        ASC:
          type: string
        DESC:
          type: string
      example:
        ASC: name
    show-objectswithnameinABCRequest:
      title: show-objectswithnameinABCRequest
      required:
      - limit
      - offset
      - order
      - in
      - type
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        order:
          type: array
          items:
            $ref: '#/components/schemas/Order'
          description: ''
        in:
          type: array
          items:
            type: string
          description: ''
        type:
          type: string
      example:
        limit: 10
        offset: 0
        order:
        - ASC: name
        in:
        - name
        - ABC
        type: object
    show-objectswithnamenotinABCRequest:
      title: show-objectswithnamenotinABCRequest
      required:
      - limit
      - offset
      - order
      - not
      - type
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        order:
          type: array
          items:
            $ref: '#/components/schemas/Order3'
          description: ''
        not:
          allOf:
          - $ref: '#/components/schemas/Not'
          - example:
              in:
              - name
              - ABC
        type:
          type: string
      example:
        limit: 10
        offset: 0
        order:
        - ASC: name
        - DESC: objId
        not:
          in:
          - name
          - ABC
        type: object
    Not:
      title: Not
      required:
      - in
      type: object
      properties:
        in:
          type: array
          items:
            type: string
          description: ''
      example:
        in:
        - name
        - ABC
    show-objectsoftypetagrequest:
      title: show-objectsoftypetagrequest
      required:
      - limit
      - offset
      - order
      - type
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        order:
          type: array
          items:
            $ref: '#/components/schemas/Order6'
          description: ''
        type:
          type: string
      example:
        limit: 50
        offset: 0
        order:
        - DESC: name
        type: tag
    Order6:
      title: Order6
      required:
      - DESC
      type: object
      properties:
        DESC:
          type: string
      example:
        DESC: name
    show-objectsoftypeservice-tcprequest:
      title: show-objectsoftypeservice-tcprequest
      required:
      - limit
      - offset
      - order
      - type
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        order:
          type: array
          items:
            $ref: '#/components/schemas/Order'
          description: ''
        type:
          type: string
      example:
        limit: 50
        offset: 0
        order:
        - ASC: name
        type: service-tcp
    show-objects.SearchobjectsbyIPRequest:
      title: show-objects.SearchobjectsbyIPRequest
      required:
      - limit
      - offset
      - order
      - type
      - filter
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        order:
          type: array
          items:
            $ref: '#/components/schemas/Order'
          description: ''
        type:
          type: string
        filter:
          type: string
      example:
        limit: 50
        offset: 0
        order:
        - ASC: name
        type: object
        filter: 192.0.2.1
    show-objects.SearchobjectsbyIPonlyRequest:
      title: show-objects.SearchobjectsbyIPonlyRequest
      required:
      - limit
      - offset
      - type
      - filter
      - ip-only
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        type:
          type: string
        filter:
          type: string
        ip-only:
          type: boolean
      example:
        limit: 50
        offset: 0
        type: object
        filter: 192.0.2.100
        ip-only: true
    show-objects.SearchobjectsbyIPonly:
      title: show-objects.SearchobjectsbyIPonly
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object30'
          description: ''
      example:
        from: 1
        to: 3
        total: 3
        objects:
        - uid: 387e088c-3fa3-433d-816f-d3fe3bfeabd6
          name: All_Internet
          type: address-range
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          ipv4-address-first: 0.0.0.0
          ipv4-address-last: 255.255.255.255
        - uid: 0e16cffc-439a-4e3d-951d-7cf00faf4418
          name: h_192.0.2.100_with_iface_203.0.113
          type: host
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          ipv4-address: 192.0.2.100
        - uid: fa27706e-3d95-4abc-9601-26b42c07060f
          name: net_192.0.2.0
          type: network
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          subnet4: 192.0.2.0
          mask-length4: 24
          subnet-mask: 255.255.255.0
    Object30:
      title: Object30
      required:
      - uid
      - name
      - type
      - domain
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
        domain:
          allOf:
          - $ref: '#/components/schemas/Domain'
          - example:
              domain-type: local domain
              uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
              name: SMC User
        ipv4-address-first:
          type: string
        ipv4-address-last:
          type: string
        ipv4-address:
          type: string
        subnet4:
          type: string
        mask-length4:
          type: integer
          format: int32
        subnet-mask:
          type: string
      example:
        uid: 387e088c-3fa3-433d-816f-d3fe3bfeabd6
        name: All_Internet
        type: address-range
        domain:
          uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
          name: SMC User
          domain-type: domain
        ipv4-address-first: 0.0.0.0
        ipv4-address-last: 255.255.255.255
    show-objects.SearchobjectsbyIPonlywithpartialIPv4addressRequest:
      title: show-objects.SearchobjectsbyIPonlywithpartialIPv4addressRequest
      required:
      - limit
      - offset
      - type
      - filter
      - ip-only
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        type:
          type: string
        filter:
          type: string
        ip-only:
          type: boolean
      example:
        limit: 50
        offset: 0
        type: object
        filter: 203.0.113
        ip-only: true
    show-objects.SearchobjectsbyIPonlywithpartialIPv4address:
      title: show-objects.SearchobjectsbyIPonlywithpartialIPv4address
      required:
      - from
      - to
      - total
      - objects
      type: object
      properties:
        from:
          type: integer
          format: int32
        to:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        objects:
          type: array
          items:
            $ref: '#/components/schemas/Object30'
          description: ''
      example:
        from: 1
        to: 4
        total: 4
        objects:
        - uid: 387e088c-3fa3-433d-816f-d3fe3bfeabd6
          name: All_Internet
          type: address-range
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          ipv4-address-first: 0.0.0.0
          ipv4-address-last: 255.255.255.255
        - uid: 0e16cffc-439a-4e3d-951d-7cf00faf4418
          name: h_192.0.2.100_with_iface_203.0.113
          type: host
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          ipv4-address: 192.0.2.100
        - uid: f22430e5-16a8-4b1a-b24c-b48bf6ec2d79
          name: net_203.0.113.0
          type: network
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          subnet4: 203.0.113.0
          mask-length4: 24
          subnet-mask: 255.255.255.0
        - uid: 0931f471-da08-4fc1-9817-79dd1db21dd3
          name: range_203.0.113.100_203.0.113.200
          type: address-range
          domain:
            uid: 41e821a0-3720-11e3-aa6e-0800200c9fde
            name: SMC User
            domain-type: domain
          ipv4-address-first: 203.0.113.100
          ipv4-address-last: 203.0.113.200
    show-validations:
      title: show-validations
      required:
      - warnings-total
      - errors-total
      - blocking-errors-total
      - warnings
      - errors
      - blocking-errors
      type: object
      properties:
        warnings-total:
          type: integer
          format: int32
        errors-total:
          type: integer
          format: int32
        blocking-errors-total:
          type: integer
          format: int32
        warnings:
          type: array
          items:
            $ref: '#/components/schemas/Warning'
          description: ''
        errors:
          type: array
          items:
            $ref: '#/components/schemas/Error'
          description: ''
        blocking-errors:
          type: array
          items:
            type: string
          description: ''
      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: []
    Warning:
      title: Warning
      required:
      - message
      type: object
      properties:
        message:
          type: string
      example:
        message: 'IPv4 address is invalid. IP address suggestion: 192.0.2.0'
    show-tasks-request:
      title: show-tasks-request
      required:
      - initiator
      - status
      - from-date
      type: object
      properties:
        initiator:
          type: string
        status:
          type: string
        from-date:
          type: string
      example:
        initiator: admin1
        status: successful
        from-date: 2018-05-23T08:00:00
    show-api-versions:
      title: show-api-versions
      required:
      - current-version
      - supported-versions
      type: object
      properties:
        current-version:
          type: string
        supported-versions:
          type: array
          items:
            type: string
          description: ''
      example:
        current-version: '1.1'
        supported-versions:
        - '1'
        - '1.1'
    show-object-request:
      title: show-object-request
      required:
      - uid
      type: object
      properties:
        uid:
          type: string
      example:
        uid: ef82887c-d08f-49a3-a18f-a376be633848
    show-object:
      title: show-object
      required:
      - object
      type: object
      properties:
        object:
          allOf:
          - $ref: '#/components/schemas/Object3'
          - example:
              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
      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
    put-file-request:
      title: put-file-request
      required:
      - file-path
      - file-name
      - file-content
      - targets
      type: object
      properties:
        file-path:
          type: string
        file-name:
          type: string
        file-content:
          type: string
        targets:
          type: array
          items:
            type: string
          description: ''
      example:
        file-path: /home/admin/
        file-name: vsx_conf
        file-content: >-
          vs ip 192.0.2.1

          vs2 ip 192.0.2.2
        targets:
        - corporate-gateway
    add-administrator-request:
      title: add-administrator-request
      required:
      - name
      - password
      - must-change-password
      - email
      - phone-number
      - authentication-method
      - permissions-profile
      type: object
      properties:
        name:
          type: string
        password:
          type: string
        must-change-password:
          type: boolean
        email:
          type: string
        phone-number:
          type: string
        authentication-method:
          type: string
        permissions-profile:
          type: string
      example:
        name: admin
        password: secret
        must-change-password: false
        email: admin@gmail.com
        phone-number: 1800-800-800
        authentication-method: INTERNAL_PASSWORD
        permissions-profile: read write all
    add-administratordomainsuperuserinMDMRequest:
      title: add-administratordomainsuperuserinMDMRequest
      required:
      - name
      - password
      - must-change-password
      - email
      - phone-number
      - authentication-method
      - multi-domain-profile
      type: object
      properties:
        name:
          type: string
        password:
          type: string
        must-change-password:
          type: boolean
        email:
          type: string
        phone-number:
          type: string
        authentication-method:
          type: string
        multi-domain-profile:
          type: string
      example:
        name: super_admin
        password: aaaa
        must-change-password: false
        email: admin@gmail.com
        phone-number: 1800-800-800
        authentication-method: INTERNAL_PASSWORD
        multi-domain-profile: domain super user
    add-administratorglobalmanagerinMDMRequest:
      title: add-administratorglobalmanagerinMDMRequest
      required:
      - name
      - password
      - must-change-password
      - email
      - phone-number
      - authentication-method
      - multi-domain-profile
      - permissions-profile
      type: object
      properties:
        name:
          type: string
        password:
          type: string
        must-change-password:
          type: boolean
        email:
          type: string
        phone-number:
          type: string
        authentication-method:
          type: string
        multi-domain-profile:
          type: string
        permissions-profile:
          type: array
          items:
            $ref: '#/components/schemas/PermissionsProfile'
          description: ''
      example:
        name: admin
        password: aaaa
        must-change-password: false
        email: admin@gmail.com
        phone-number: 1800-800-800
        authentication-method: INTERNAL_PASSWORD
        multi-domain-profile: global manager
        permissions-profile:
        - domain: domain1
          profile: read only all
        - domain: All Global Domains
          profile: read write all
    PermissionsProfile:
      title: PermissionsProfile
      required:
      - domain
      - profile
      type: object
      properties:
        domain:
          type: string
        profile:
          type: string
      example:
        domain: domain1
        profile: read only all
    show-administrator-request:
      title: show-administrator-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: admin
    set-administrator-request:
      title: set-administrator-request
      required:
      - name
      - password
      - permissions-profile
      type: object
      properties:
        name:
          type: string
        password:
          type: string
        permissions-profile:
          type: string
      example:
        name: admin
        password: bew secret
        permissions-profile: read only profile
    set-administratorinMDMRequest:
      title: set-administratorinMDMRequest
      required:
      - name
      - permissions-profile
      type: object
      properties:
        name:
          type: string
        permissions-profile:
          allOf:
          - $ref: '#/components/schemas/PermissionsProfile1'
          - example:
              add:
              - domain: locals
                profile: read only profile
              - domain: globals
                profile: read only profile
      example:
        name: admin
        permissions-profile:
          add:
          - domain: locals
            profile: read only profile
          - domain: globals
            profile: read only profile
    PermissionsProfile1:
      title: PermissionsProfile1
      required:
      - add
      type: object
      properties:
        add:
          type: array
          items:
            $ref: '#/components/schemas/Add6'
          description: ''
      example:
        add:
        - domain: locals
          profile: read only profile
        - domain: globals
          profile: read only profile
    Add6:
      title: Add6
      required:
      - domain
      - profile
      type: object
      properties:
        domain:
          type: string
        profile:
          type: string
      example:
        domain: locals
        profile: read only profile
    delete-administrator-request:
      title: delete-administrator-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: admin
    show-administrators-request:
      title: show-administrators-request
      required:
      - limit
      - offset
      - details-level
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        details-level:
          type: string
      example:
        limit: 50
        offset: 0
        details-level: standard
    unlock-administrator-request:
      title: unlock-administrator-request
      required:
      - name
      type: object
      properties:
        name:
          type: string
      example:
        name: aa
    set-api-settings-request:
      title: set-api-settings-request
      required:
      - accepted-api-calls-from
      type: object
      properties:
        accepted-api-calls-from:
          type: string
      example:
        accepted-api-calls-from: All IP addresses
tags:
- name: Session Management
  description: ''
- name: Session
  description: ''
- name: Login Message
  description: ''
- name: Host
  description: ''
- name: Network
  description: ''
- name: Wildcard
  description: ''
- name: Group
  description: ''
- name: Address Range
  description: ''
- name: Multicast Address Range
  description: ''
- name: Group with exclusion
  description: ''
- name: Simple Gateway
  description: ''
- name: Security Zone
  description: ''
- name: Time
  description: ''
- name: Time Group
  description: ''
- name: Access Role
  description: ''
- name: Dynamic Object
  description: ''
- name: Trusted Client
  description: ''
- name: Tags
  description: ''
- name: DNS Domain
  description: ''
- name: OPSEC Application
  description: ''
- name: Data Center
  description: ''
- name: Data Center Object
  description: ''
- name: Updatable Objects Repository
  description: ''
- name: Updatable Object
  description: ''
- name: Service TCP
  description: ''
- name: Service UDP
  description: ''
- name: Service ICMP
  description: ''
- name: Service ICMP6
  description: ''
- name: Service SCTP
  description: ''
- name: Service Other
  description: ''
- name: Service Group
  description: ''
- name: Application
  description: ''
- name: Application Category
  description: ''
- name: Application Group
  description: ''
- name: Service DCE-RPC
  description: ''
- name: Service RPC
  description: ''
- name: Access Rule
  description: ''
- name: Access Section
  description: ''
- name: Access Layer
  description: ''
- name: NAT Rule
  description: ''
- name: NAT Section
  description: ''
- name: VPN Community Meshed
  description: ''
- name: VPN Community Star
  description: ''
- name: Threat Rule
  description: ''
- name: Threat Exception
  description: ''
- name: Threat Exception Group
  description: ''
- name: Threat Protection
  description: ''
- name: Threat Profile
  description: ''
- name: Threat Indicator
  description: ''
- name: Threat Layer
  description: ''
- name: IPS
  description: ''
- name: IPS Extended Attributes
  description: ''
- name: Threat Emulation
  description: ''
- name: Policy
  description: ''
- name: Policy Package
  description: ''
- name: Domain
  description: ''
- name: Global Domain
  description: ''
- name: Multi-Domain Server (MDS)
  description: ''
- name: Placeholder
  description: ''
- name: Global Assignment
  description: ''
- name: Misc.
  description: ''
- name: Administrator
  description: ''
- name: API Settings
  description: ''
