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

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

# CreateResourceDto

## 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:
    CreateAddressDto:
      type: object
      properties:
        protocols:
          type: array
          items:
            type: string
            format: uuid
        address:
          type: string
      required:
        - protocols
        - address
    CreateResourceDto:
      type: object
      properties:
        addresses:
          type: array
          items:
            $ref: "#/components/schemas/CreateAddressDto"
        name:
          type: string
        type:
          type: string
          enum:
            - PRIVATE
            - SAAS
            - INTERNET
        description:
          type: string
      required:
        - addresses
        - name
        - type
```
