Amazon CodeBuild · Schema

Project

Project schema from Amazon CodeBuild

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
name string
arn string
description string
created string
lastModified string
serviceRole string
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-project-schema.json",
  "title": "Project",
  "description": "Project schema from Amazon CodeBuild",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "arn": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "lastModified": {
      "type": "string",
      "format": "date-time"
    },
    "serviceRole": {
      "type": "string"
    }
  }
}