Atlassian · Schema

Pipeline Command

An executable pipeline command.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
name string The name of the command.
command string The executable command.
View JSON Schema on GitHub

JSON Schema

atlassian-pipeline-command-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pipeline_command",
  "title": "Pipeline Command",
  "type": "object",
  "description": "An executable pipeline command.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the command.",
      "example": "Example Title"
    },
    "command": {
      "type": "string",
      "description": "The executable command.",
      "example": "example_value"
    }
  }
}