{
  "openapi": "3.0.1",
  "info": {
    "title": "Subtitle QC – SRT/VTT Compliance Checker",
    "description": "Validate SRT and VTT subtitle files for reading speed, line length, timing, overlaps, gaps, and formatting. Get a detailed compliance report and, when safe, an automatically corrected subtitle file with all remaining issues clearly listed.",
    "version": "0.1",
    "x-build-id": "1VN3Fuf06ms4AkYfZ"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/lumaxys~subtitle-qc/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-lumaxys-subtitle-qc",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/lumaxys~subtitle-qc/runs": {
      "post": {
        "operationId": "runs-sync-lumaxys-subtitle-qc",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/lumaxys~subtitle-qc/run-sync": {
      "post": {
        "operationId": "run-sync-lumaxys-subtitle-qc",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "files": {
            "title": "Files to process",
            "maxItems": 20,
            "uniqueItems": true,
            "type": "array",
            "description": "Upload files from your computer, select files from an Apify Key-Value Store, or paste direct file URLs.",
            "items": {
              "type": "string"
            }
          },
          "fileUrls": {
            "title": "Direct file URLs (advanced)",
            "maxItems": 20,
            "uniqueItems": true,
            "type": "array",
            "description": "Direct HTTP(S) URLs to files. Social platform page links are not supported.",
            "items": {
              "type": "string"
            }
          },
          "kvsKeys": {
            "title": "Key-Value Store keys (advanced)",
            "maxItems": 20,
            "uniqueItems": true,
            "type": "array",
            "description": "Record keys already stored in the run's default Key-Value Store.",
            "items": {
              "type": "string"
            }
          },
          "example": {
            "title": "Bundled example (used only when no file is supplied)",
            "enum": [
              "clean",
              "messy",
              "vtt_social",
              "invalid"
            ],
            "type": "string",
            "description": "Runs a reproducible file bundled with the Actor. Uploads, URLs and KVS keys always take priority over this field."
          },
          "maxCostUsd": {
            "title": "Additional custom-event cost cap (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Extra safety cap checked before custom event charging. Apify's native max-total-charge limit remains the final authority.",
            "default": 1.5
          },
          "profile": {
            "title": "Spec profile",
            "enum": [
              "documentary",
              "social",
              "accessibility",
              "custom"
            ],
            "type": "string",
            "description": "Preset thresholds. Use 'custom' with specOverrides for a broadcaster-specific spec.",
            "default": "documentary"
          },
          "specOverrides": {
            "title": "Spec overrides",
            "type": "object",
            "description": "Any of: max_lines, max_chars_per_line, max_cps, max_cps_cjk, min_duration_ms, max_duration_ms, min_gap_ms.",
            "properties": {
              "max_lines": {
                "title": "Maximum lines per subtitle",
                "description": "Maximum number of text lines allowed in one subtitle cue.",
                "type": "integer",
                "minimum": 1,
                "maximum": 10
              },
              "max_chars_per_line": {
                "title": "Maximum characters per line",
                "description": "Maximum display width allowed for each subtitle line.",
                "type": "integer",
                "minimum": 1,
                "maximum": 500
              },
              "max_cps": {
                "title": "Maximum reading speed (CPS)",
                "description": "Maximum characters per second for non-CJK subtitle text.",
                "type": "number",
                "minimum": 0.01,
                "maximum": 200
              },
              "max_cps_cjk": {
                "title": "Maximum CJK reading speed (CPS)",
                "description": "Maximum characters per second for Chinese, Japanese, and Korean text.",
                "type": "number",
                "minimum": 0.01,
                "maximum": 200
              },
              "min_duration_ms": {
                "title": "Minimum duration (milliseconds)",
                "description": "Minimum on-screen duration allowed for a subtitle cue.",
                "type": "integer",
                "minimum": 0,
                "maximum": 60000
              },
              "max_duration_ms": {
                "title": "Maximum duration (milliseconds)",
                "description": "Maximum on-screen duration allowed for a subtitle cue.",
                "type": "integer",
                "minimum": 1,
                "maximum": 300000
              },
              "min_gap_ms": {
                "title": "Minimum gap (milliseconds)",
                "description": "Minimum time gap required between consecutive subtitle cues.",
                "type": "integer",
                "minimum": 0,
                "maximum": 10000
              }
            },
            "default": {},
            "additionalProperties": false
          },
          "correctionMode": {
            "title": "Correction mode",
            "enum": [
              "check-only",
              "check-and-correct"
            ],
            "type": "string",
            "description": "Choose check-only, or request an automatically corrected file when real changes can be produced."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}