{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--aws-codepipeline-pipeline.json",
  "title": "AWSCodePipelinePipelineProperties",
  "description": "Resource Type definition for AWS::CodePipeline::Pipeline. Source:- No source definition found, add manually please",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/lalcebo/json-schema/master/serverless/resources/cloudformation-modified/aws-codepipeline-pipeline.json",
    "sourceSha256": "5671418f1f58c1db024979248a2139c56466c99ae5349c6a5a0c328209795ab7"
  },
  "type": "object",
  "properties": {
    "ArtifactStores": {
      "type": "array",
      "uniqueItems": true,
      "items": {
        "$ref": "#/$defs/ArtifactStoreMap"
      }
    },
    "ArtifactStore": {
      "$ref": "#/$defs/ArtifactStore"
    },
    "DisableInboundStageTransitions": {
      "type": "array",
      "uniqueItems": true,
      "items": {
        "$ref": "#/$defs/StageTransition"
      }
    },
    "Stages": {
      "type": "array",
      "uniqueItems": true,
      "items": {
        "$ref": "#/$defs/StageDeclaration"
      }
    },
    "RestartExecutionOnUpdate": {
      "type": "boolean"
    },
    "RoleArn": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ]
    },
    "Tags": {
      "type": "array",
      "uniqueItems": false,
      "items": {
        "$ref": "#/$defs/Tag"
      }
    },
    "Name": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ]
    }
  },
  "typeName": "AWS::CodePipeline::Pipeline",
  "readOnlyProperties": [
    "/properties/Id",
    "/properties/Version"
  ],
  "$defs": {
    "ActionDeclaration": {
      "type": "object",
      "title": "AWSCodePipelinePipelineActionDeclarationDefinition",
      "properties": {
        "ActionTypeId": {
          "$ref": "#/$defs/ActionTypeId"
        },
        "Configuration": {
          "type": "object"
        },
        "InputArtifacts": {
          "type": "array",
          "uniqueItems": true,
          "items": {
            "$ref": "#/$defs/InputArtifact"
          }
        },
        "OutputArtifacts": {
          "type": "array",
          "uniqueItems": true,
          "items": {
            "$ref": "#/$defs/OutputArtifact"
          }
        },
        "Region": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "Namespace": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "RoleArn": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "RunOrder": {
          "type": "integer"
        },
        "Name": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "ActionTypeId",
        "Name"
      ],
      "additionalProperties": false
    },
    "BlockerDeclaration": {
      "type": "object",
      "title": "AWSCodePipelinePipelineBlockerDeclarationDefinition",
      "properties": {
        "Type": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "Name": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "Type",
        "Name"
      ],
      "additionalProperties": false
    },
    "ActionTypeId": {
      "type": "object",
      "title": "AWSCodePipelinePipelineActionTypeIdDefinition",
      "properties": {
        "Owner": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "Category": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "Version": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "Provider": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "Owner",
        "Category",
        "Version",
        "Provider"
      ],
      "additionalProperties": false
    },
    "StageDeclaration": {
      "type": "object",
      "title": "AWSCodePipelinePipelineStageDeclarationDefinition",
      "properties": {
        "Blockers": {
          "type": "array",
          "uniqueItems": true,
          "items": {
            "$ref": "#/$defs/BlockerDeclaration"
          }
        },
        "Actions": {
          "type": "array",
          "uniqueItems": true,
          "items": {
            "$ref": "#/$defs/ActionDeclaration"
          }
        },
        "Name": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "Actions",
        "Name"
      ],
      "additionalProperties": false
    },
    "InputArtifact": {
      "type": "object",
      "title": "AWSCodePipelinePipelineInputArtifactDefinition",
      "properties": {
        "Name": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "Name"
      ],
      "additionalProperties": false
    },
    "ArtifactStore": {
      "type": "object",
      "title": "AWSCodePipelinePipelineArtifactStoreDefinition",
      "properties": {
        "Type": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "EncryptionKey": {
          "$ref": "#/$defs/EncryptionKey"
        },
        "Location": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "Type",
        "Location"
      ],
      "additionalProperties": false
    },
    "ArtifactStoreMap": {
      "type": "object",
      "title": "AWSCodePipelinePipelineArtifactStoreMapDefinition",
      "properties": {
        "ArtifactStore": {
          "$ref": "#/$defs/ArtifactStore"
        },
        "Region": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "ArtifactStore",
        "Region"
      ],
      "additionalProperties": false
    },
    "StageTransition": {
      "type": "object",
      "title": "AWSCodePipelinePipelineStageTransitionDefinition",
      "properties": {
        "StageName": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "Reason": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "StageName",
        "Reason"
      ],
      "additionalProperties": false
    },
    "EncryptionKey": {
      "type": "object",
      "title": "AWSCodePipelinePipelineEncryptionKeyDefinition",
      "properties": {
        "Type": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "Id": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "Type",
        "Id"
      ],
      "additionalProperties": false
    },
    "Tag": {
      "type": "object",
      "title": "AWSCodePipelinePipelineTagDefinition",
      "properties": {
        "Value": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "Key": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "Value",
        "Key"
      ],
      "additionalProperties": false
    },
    "OutputArtifact": {
      "type": "object",
      "title": "AWSCodePipelinePipelineOutputArtifactDefinition",
      "properties": {
        "Name": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "Name"
      ],
      "additionalProperties": false
    }
  },
  "primaryIdentifier": [
    "/properties/Id"
  ],
  "additionalProperties": false,
  "required": [
    "Stages",
    "RoleArn"
  ],
  "createOnlyProperties": [
    "/properties/Name"
  ]
}
