{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codecatalyst/refs/heads/main/json-structure/amazon-codecatalyst-list-source-repositories-item-structure.json",
"name": "ListSourceRepositoriesItem",
"description": "Information about a source repository returned in a list of source repositories.",
"type": "object",
"properties": {
"id": {
"allOf": [
{
"$ref": "#/components/schemas/SourceRepositoryIdString"
},
{
"description": "The system-generated unique ID of the source repository."
}
]
},
"name": {
"allOf": [
{
"$ref": "#/components/schemas/SourceRepositoryNameString"
},
{
"description": "The name of the source repository."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/SourceRepositoryDescriptionString"
},
{
"description": "The description of the repository, if any."
}
]
},
"lastUpdatedTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time the source repository was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339."
}
]
},
"createdTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time the source repository was created, in coordinated universal time (UTC) timestamp format as specified in RFC 3339."
}
]
}
},
"required": [
"id",
"name",
"lastUpdatedTime",
"createdTime"
]
}