{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-project-source-version-structure.json", "name": "ProjectSourceVersion", "description": " A source identifier and its corresponding version. ", "type": "object", "properties": { "sourceIdentifier": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "An identifier for a source in the build project. The identifier can only contain alphanumeric characters and underscores, and must be less than 128 characters in length. " } ] }, "sourceVersion": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "

The source version for the corresponding source identifier. If specified, must be one of:

For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.

" } ] } }, "required": [ "sourceIdentifier", "sourceVersion" ] }