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

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

# AssetBulkJobResponse

## OpenAPI definition

```yaml
openapi: 3.1.1
info:
  title: tesma
  version: v1
servers:
  - url: https://api.tesma.com
components:
  schemas:
    BulkJobAssetErrorResponse:
      additionalProperties: false
      properties:
        assetId:
          format: int64
          type: integer
        errors:
          items:
            type: string
          type:
            - "null"
            - array
      type: object
    ExecutionStatus:
      enum:
        - notStarted
        - validating
        - inProgress
        - successful
        - partiallySuccessful
        - failed
        - failedPotentiallyInconsistent
      type: string
    AssetBulkJobResponse:
      additionalProperties: false
      properties:
        assetsSuccessfullyUpdated:
          format: int32
          type:
            - "null"
            - integer
        assetsTotal:
          format: int32
          type: integer
        createDate:
          format: date-time
          type: string
        endDate:
          format: date-time
          type:
            - "null"
            - string
        errors:
          items:
            $ref: "#/components/schemas/BulkJobAssetErrorResponse"
          type:
            - "null"
            - array
          x-is-public: true
        id:
          format: int32
          type: integer
        startDate:
          format: date-time
          type:
            - "null"
            - string
        status:
          $ref: "#/components/schemas/ExecutionStatus"
      type: object
```
