---
title: "PolicyDeviceDto"
url: "https://public-api-docs.cipherscale.com/apis/cipherscale-api-1/versions/fef69080-6094-4620-8bf0-16fd2de7b598/schemas/PolicyDeviceDto"
---

> Full API specification: https://public-api-docs.cipherscale.com/apis/cipherscale-api-1/versions/fef69080-6094-4620-8bf0-16fd2de7b598.md

# PolicyDeviceDto

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Cipherscale API
  version: "1.0"
servers:
  - url: https://public-api.cipherscale.com/qa
    description: Cipherscale Public API Server
components:
  schemas:
    PolicyDeviceDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        name:
          type: string
        active:
          type: boolean
        lastConnection:
          format: date-time
          type: string
        status:
          type: string
          enum:
            - Online
            - Offline
            - Deactivated
        hardwareId:
          type: string
        posture:
          type: object
        appVersion:
          type: string
      required:
        - id
        - createdAt
        - updatedAt
        - name
        - active
        - status
        - hardwareId
```
