APIGen · Schema

APIGen Deployment

A deployment record representing an API deployed to a target environment.

CodeDocumentationGenerationOpen-SourcePHP

Properties

Name Type Description
id string Unique identifier for the deployment.
apiId string ID of the deployed API.
projectId string ID of the parent project.
environment string Target environment for the deployment.
status string Current status of the deployment.
url stringnull Live URL of the deployed API, available once deployment succeeds.
version string Version of the API that was deployed.
region string Cloud region where the API is deployed.
replicas integer Number of running instances.
logs array Deployment log entries.
deployedBy string User ID of the person who initiated the deployment.
createdAt string Timestamp when the deployment was initiated.
updatedAt string Timestamp when the deployment record was last updated.
View JSON Schema on GitHub

JSON Schema

apigen-deployment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.apigen.com/schemas/deployment.json",
  "title": "APIGen Deployment",
  "description": "A deployment record representing an API deployed to a target environment.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier for the deployment."
    },
    "apiId": {
      "type": "string",
      "format": "uuid",
      "description": "ID of the deployed API."
    },
    "projectId": {
      "type": "string",
      "format": "uuid",
      "description": "ID of the parent project."
    },
    "environment": {
      "type": "string",
      "enum": ["development", "staging", "production"],
      "description": "Target environment for the deployment."
    },
    "status": {
      "type": "string",
      "enum": ["pending", "in_progress", "deployed", "failed", "torn_down"],
      "description": "Current status of the deployment."
    },
    "url": {
      "type": ["string", "null"],
      "format": "uri",
      "description": "Live URL of the deployed API, available once deployment succeeds."
    },
    "version": {
      "type": "string",
      "description": "Version of the API that was deployed."
    },
    "region": {
      "type": "string",
      "description": "Cloud region where the API is deployed."
    },
    "replicas": {
      "type": "integer",
      "minimum": 1,
      "default": 1,
      "description": "Number of running instances."
    },
    "logs": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string",
            "format": "date-time"
          },
          "level": {
            "type": "string",
            "enum": ["info", "warn", "error"]
          },
          "message": {
            "type": "string"
          }
        },
        "required": ["timestamp", "level", "message"]
      },
      "description": "Deployment log entries."
    },
    "deployedBy": {
      "type": "string",
      "format": "uuid",
      "description": "User ID of the person who initiated the deployment."
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the deployment was initiated."
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the deployment record was last updated."
    }
  },
  "required": ["id", "apiId", "projectId", "environment", "status", "createdAt", "updatedAt"],
  "additionalProperties": false
}

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.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/apigen-deployment"
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 email required.

A second provider on the same verified email joins the account you already have.