# ActionExecutionMeta

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    ActionExecutionMeta:
      type: object
      properties:
        actionsRequested:
          type: integer
          description: Total number of actions requested in this execution.
          format: int32
        actionsSucceeded:
          type: integer
          description: Total number of actions that reported success.
          format: int32
        startedAtUtc:
          type: string
          description: UTC timestamp (ISO 8601) when execution started.
          format: date-time
        finishedAtUtc:
          type: string
          description: UTC timestamp (ISO 8601) when execution finished.
          format: date-time
        durationMs:
          type: integer
          description: Total execution duration in milliseconds.
          format: int64
          readOnly: true
        responseSizeBytes:
          type: integer
          description: >-
            Size in bytes of the serialized results payload (not including
            envelope overhead).
          format: int64
        maxActionsAllowed:
          type: integer
          description: >-
            The maximum number of actions allowed for a single request at the
            time of execution.
          format: int32
      additionalProperties: false
      description: Metadata describing an execution batch.
      x-apidog-orders:
        - actionsRequested
        - actionsSucceeded
        - startedAtUtc
        - finishedAtUtc
        - durationMs
        - responseSizeBytes
        - maxActionsAllowed
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.scrapingduck.com
    description: Prod Env
security: []

```
