# Import UrlSchema

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    Import UrlSchema:
      type: object
      properties:
        url:
          type: string
        fileSize:
          type: number
          minimum: 0
      x-apidog-orders:
        - url
        - fileSize
      required:
        - url
        - fileSize
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://Example-Server.com
    description: Default
security: []

```
