Zamzar · Schema
Job
Represents the process of converting a file to another format.
File ConversionDocumentsVideoAudioImageCADREST API
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The unique identifier assigned to the job |
| key | string | The API key used to create the job |
| status | string | The current status of the job |
| failure | object | |
| sandbox | boolean | Indicates whether or not the job was processed on the developer sandbox (i.e. at no cost) |
| created_at | string | The time at which the job was created (UTC in ISO_8601) |
| finished_at | stringnull | The time at which the job finished if successful, or null otherwise (UTC in ISO_8601) |
| source_file | object | |
| target_files | array | The output from the job |
| target_format | string | The name of the format to which source_file is being converted |
| credit_cost | integer | The cost in conversion credits of the job |
| export_url | string | The location to which all converted files will be copied |
| options | object | Additional options for the conversion |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/zamzar/main/json-schema/job.json",
"title": "Job",
"type": "object",
"description": "Represents the process of converting a file to another format.",
"required": ["id"],
"properties": {
"id": {
"type": "integer",
"format": "int32",
"description": "The unique identifier assigned to the job",
"example": 1
},
"key": {
"type": "string",
"description": "The API key used to create the job",
"example": "apikey"
},
"status": {
"type": "string",
"description": "The current status of the job",
"enum": ["initialising", "converting", "successful", "failed", "cancelled"],
"example": "failed"
},
"failure": {
"$ref": "failure.json"
},
"sandbox": {
"type": "boolean",
"description": "Indicates whether or not the job was processed on the developer sandbox (i.e. at no cost)",
"example": false
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The time at which the job was created (UTC in ISO_8601)",
"example": "2022-01-01T14:15:22Z"
},
"finished_at": {
"type": ["string", "null"],
"format": "date-time",
"description": "The time at which the job finished if successful, or null otherwise (UTC in ISO_8601)",
"example": "2022-01-01T14:15:22Z"
},
"source_file": {
"$ref": "file.json"
},
"target_files": {
"type": "array",
"description": "The output from the job",
"items": {
"$ref": "file.json"
}
},
"target_format": {
"type": "string",
"description": "The name of the format to which source_file is being converted",
"example": "bmp"
},
"credit_cost": {
"type": "integer",
"format": "int32",
"description": "The cost in conversion credits of the job",
"example": 1
},
"export_url": {
"type": "string",
"description": "The location to which all converted files will be copied",
"example": "s3://CREDENTIAL_NAME@my-bucket-name/logo.jpg"
},
"options": {
"type": "object",
"description": "Additional options for the conversion",
"additionalProperties": true
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/job"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.