Amazon CodeCatalyst · JSON Structure

Amazon Codecatalyst List Source Repositories Item Structure

Information about a source repository returned in a list of source repositories.

Type: object Properties: 5 Required: 4
AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

ListSourceRepositoriesItem is a JSON Structure definition published by Amazon CodeCatalyst, describing 5 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name description lastUpdatedTime createdTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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 <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"
  ]
}