Deployment branch policy

Details of a deployment branch policy.

APIs.ioEngineeringPlatform

Properties

Name Type Description
id integer The unique identifier of the branch policy.
node_id string
name string The name pattern that branches must match in order to deploy to the environment.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-deployment-branch-policy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/deployment-branch-policy",
  "title": "Deployment branch policy",
  "description": "Details of a deployment branch policy.",
  "type": "object",
  "properties": {
    "id": {
      "description": "The unique identifier of the branch policy.",
      "type": "integer",
      "example": 361471
    },
    "node_id": {
      "type": "string",
      "example": "MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjE0NzE="
    },
    "name": {
      "description": "The name pattern that branches must match in order to deploy to the environment.",
      "type": "string",
      "example": "release/*"
    }
  }
}