Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the target the same as `generate_gen_lock_id` |
| last_event_id | string | Unique identifier of the last event for the target |
| last_event_created_at | string | Timestamp when the event was created in the database. |
| last_event_interaction_type | object | Type of interaction. |
| success | boolean | Indicates whether the event was successful. |
| commit_head | string | Remote commit ID. |
| git_remote_default_owner | string | Default owner for git remote. |
| git_remote_default_repo | string | Default repository name for git remote. |
| git_relative_cwd | string | Current working directory relative to the git root. |
| generate_target | string | eg `typescript`, `terraform`, `python` |
| generate_target_name | string | The workflow name of the target. |
| generate_gen_lock_id | string | gen.lock ID (expected to be a uuid). The same as `id`. A unique identifier for the target. |
| generate_target_version | string | The version of the Speakeasy generator for this target eg v2 of the typescript generator. |
| generate_config_post_version | string | Version of the generated target (post generation) |
| generate_gen_lock_pre_features | string | Features prior to generation |
| generate_gen_lock_pre_version | string | Artifact version for the Previous Generation |
| generate_eligible_features | string | Eligible feature set during generation |
| generate_number_of_operations_ignored | integer | The number of operations ignored in generation. |
| generate_number_of_operations_used | integer | The number of operations used in generation. |
| generate_number_of_terraform_resources | integer | The number of terraform resources used in generation. |
| generate_published | boolean | Indicates whether the target was considered published. |
| continuous_integration_environment | string | Name of the CI environment. |
| gh_action_ref | string | GitHub Action ref value. |
| gh_action_run_link | string | Link to the GitHub action run. |
| gh_action_version | string | Version of the GitHub action. |
| gh_action_organization | string | GitHub organization of the action. |
| gh_action_repository | string | GitHub repository of the action. |
| repo_label | string | Label of the git repository. |
| hostname | string | Remote hostname. |
| git_user_name | string | User's name from git configuration. (not GitHub username) |
| git_user_email | string | User email from git configuration. |
| source_revision_digest | string | The revision digest of the source. |
| source_blob_digest | string | The blob digest of the source. |
| source_namespace_name | string | The namespace name of the source. |
| error | string | Error message if the last event was not successful. |
| workflow_pre_raw | string | Workflow file (prior to execution) |
| workflow_post_raw | string | Workflow file (post execution) |
| workflow_lock_pre_raw | string | Workflow lock file (prior to execution) |
| workflow_lock_post_raw | string | Workflow lock file (post execution) |
| publish_package_url | string | URL of the published package. |
| publish_package_name | string | Name of the published package. |
| publish_package_version | string | Version of the published package. |
| publish_package_registry_name | string | Name of the registry where the package was published. |
| last_publish_created_at | string | Timestamp when the last publishing event was created. |
| last_publish_gh_action_run_link | string | Link to the GitHub action run for the last publishing event. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TargetSDK",
"title": "TargetSDK",
"type": "object",
"required": [
"id",
"generate_target",
"generate_gen_lock_id",
"last_event_id",
"last_event_created_at",
"last_event_interaction_type"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the target the same as `generate_gen_lock_id`"
},
"last_event_id": {
"type": "string",
"description": "Unique identifier of the last event for the target"
},
"last_event_created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the event was created in the database."
},
"last_event_interaction_type": {
"$ref": "#/components/schemas/InteractionType",
"description": "Type of interaction."
},
"success": {
"type": "boolean",
"description": "Indicates whether the event was successful."
},
"commit_head": {
"type": "string",
"description": "Remote commit ID."
},
"git_remote_default_owner": {
"type": "string",
"description": "Default owner for git remote."
},
"git_remote_default_repo": {
"type": "string",
"description": "Default repository name for git remote."
},
"git_relative_cwd": {
"type": "string",
"description": "Current working directory relative to the git root."
},
"generate_target": {
"type": "string",
"description": "eg `typescript`, `terraform`, `python`"
},
"generate_target_name": {
"type": "string",
"description": "The workflow name of the target."
},
"generate_gen_lock_id": {
"type": "string",
"description": "gen.lock ID (expected to be a uuid). The same as `id`. A unique identifier for the target."
},
"generate_target_version": {
"type": "string",
"description": "The version of the Speakeasy generator for this target eg v2 of the typescript generator."
},
"generate_config_post_version": {
"type": "string",
"description": "Version of the generated target (post generation)"
},
"generate_gen_lock_pre_features": {
"type": "string",
"description": "Features prior to generation"
},
"generate_gen_lock_pre_version": {
"type": "string",
"description": "Artifact version for the Previous Generation"
},
"generate_eligible_features": {
"type": "string",
"description": "Eligible feature set during generation"
},
"generate_number_of_operations_ignored": {
"type": "integer",
"description": "The number of operations ignored in generation."
},
"generate_number_of_operations_used": {
"type": "integer",
"description": "The number of operations used in generation."
},
"generate_number_of_terraform_resources": {
"type": "integer",
"description": "The number of terraform resources used in generation."
},
"generate_published": {
"type": "boolean",
"description": "Indicates whether the target was considered published."
},
"continuous_integration_environment": {
"type": "string",
"description": "Name of the CI environment."
},
"gh_action_ref": {
"type": "string",
"description": "GitHub Action ref value."
},
"gh_action_run_link": {
"type": "string",
"description": "Link to the GitHub action run."
},
"gh_action_version": {
"type": "string",
"description": "Version of the GitHub action."
},
"gh_action_organization": {
"type": "string",
"description": "GitHub organization of the action."
},
"gh_action_repository": {
"type": "string",
"description": "GitHub repository of the action."
},
"repo_label": {
"type": "string",
"description": "Label of the git repository."
},
"hostname": {
"type": "string",
"description": "Remote hostname."
},
"git_user_name": {
"type": "string",
"description": "User's name from git configuration. (not GitHub username)"
},
"git_user_email": {
"type": "string",
"description": "User email from git configuration."
},
"source_revision_digest": {
"type": "string",
"description": "The revision digest of the source."
},
"source_blob_digest": {
"type": "string",
"description": "The blob digest of the source."
},
"source_namespace_name": {
"type": "string",
"description": "The namespace name of the source."
},
"error": {
"type": "string",
"description": "Error message if the last event was not successful."
},
"workflow_pre_raw": {
"type": "string",
"description": "Workflow file (prior to execution)"
},
"workflow_post_raw": {
"type": "string",
"description": "Workflow file (post execution)"
},
"workflow_lock_pre_raw": {
"type": "string",
"description": "Workflow lock file (prior to execution)"
},
"workflow_lock_post_raw": {
"type": "string",
"description": "Workflow lock file (post execution)"
},
"publish_package_url": {
"type": "string",
"description": "URL of the published package."
},
"publish_package_name": {
"type": "string",
"description": "Name of the published package."
},
"publish_package_version": {
"type": "string",
"description": "Version of the published package."
},
"publish_package_registry_name": {
"type": "string",
"description": "Name of the registry where the package was published."
},
"last_publish_created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the last publishing event was created."
},
"last_publish_gh_action_run_link": {
"type": "string",
"description": "Link to the GitHub action run for the last publishing event."
}
}
}
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/speakeasy-targetsdk"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.