{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-schema/codestar-project-summary-schema.json",
"title": "ProjectSummary",
"description": "Information about the metadata for a project.",
"type": "object",
"properties": {
"projectId": {
"allOf": [
{
"$ref": "#/components/schemas/ProjectId"
},
{
"description": "The ID of the project."
}
]
},
"projectArn": {
"allOf": [
{
"$ref": "#/components/schemas/ProjectArn"
},
{
"description": "The Amazon Resource Name (ARN) of the project."
}
]
}
}
}