---
title: "ExportJobResponse"
url: "https://developer.tesma.com/apis/tesma-platform-api-v1/versions/333907fb-f0a7-4e20-b01e-c9915c73321a/schemas/ExportJobResponse"
---

> Full API specification: https://developer.tesma.com/apis/tesma-platform-api-v1/versions/333907fb-f0a7-4e20-b01e-c9915c73321a.md

# ExportJobResponse

## OpenAPI definition

```yaml
openapi: 3.1.1
info:
  title: tesma
  version: v1
servers:
  - url: https://api.tesma.com
components:
  schemas:
    ExportSource:
      enum:
        - none
        - leaseSchedules
        - leaseScheduleAssets
        - invoices
        - invoiceAssets
        - collections
        - collectedAssets
        - ownedAssets
      type: string
    ExportFiletype:
      enum:
        - xlsx
        - csv
      type: string
    ExportScheduleRepetition:
      enum:
        - weekly
        - monthly
      type: string
    DayOfWeek:
      enum:
        - sunday
        - monday
        - tuesday
        - wednesday
        - thursday
        - friday
        - saturday
      type: string
    ExportJobResponse:
      additionalProperties: false
      properties:
        active:
          type: boolean
        createDate:
          format: date-time
          type: string
        creatorName:
          type:
            - "null"
            - string
        excludeEmpty:
          type: boolean
        executionTime:
          type:
            - "null"
            - string
        exportSource:
          $ref: "#/components/schemas/ExportSource"
        filetype:
          $ref: "#/components/schemas/ExportFiletype"
        id:
          format: int32
          type: integer
        languageSettings:
          type:
            - "null"
            - string
        name:
          type:
            - "null"
            - string
        recipientEmail:
          type:
            - "null"
            - string
        repetition:
          $ref: "#/components/schemas/ExportScheduleRepetition"
        repetitionDayOfMonth:
          format: int32
          type:
            - "null"
            - integer
        repetitionDaysOfWeek:
          items:
            $ref: "#/components/schemas/DayOfWeek"
          type:
            - "null"
            - array
        repetitionMonths:
          items:
            format: int32
            type: integer
          type:
            - "null"
            - array
        ruleFieldName:
          type:
            - "null"
            - string
        ruleNumberOfDays:
          format: int32
          type: integer
        subject:
          type:
            - "null"
            - string
        timezone:
          type:
            - "null"
            - string
        validFrom:
          format: date
          type:
            - "null"
            - string
        validTo:
          format: date
          type:
            - "null"
            - string
      type: object
```
