Amazon CodeCatalyst · Schema
ListSourceRepositoriesItem
Information about a source repository returned in a list of source repositories.
AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control
Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| name | object | |
| description | object | |
| lastUpdatedTime | object | |
| createdTime | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codecatalyst/refs/heads/main/json-schema/amazon-codecatalyst-list-source-repositories-item-schema.json",
"title": "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 <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>."
}
]
},
"createdTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time the source repository was created, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>."
}
]
}
},
"required": [
"id",
"name",
"lastUpdatedTime",
"createdTime"
]
}