Amazon Proton · Schema

RepositorySyncAttempt

Detail data for a repository sync attempt activated by a push to a repository.

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

Name Type Description
events object
startedAt object
status object
View JSON Schema on GitHub

JSON Schema

amazon-proton-repository-sync-attempt-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-schema/amazon-proton-repository-sync-attempt-schema.json",
  "title": "RepositorySyncAttempt",
  "description": "Detail data for a repository sync attempt activated by a push to a repository.",
  "type": "object",
  "properties": {
    "events": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositorySyncEvents"
        },
        {
          "description": "Detail data for sync attempt events."
        }
      ]
    },
    "startedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time when the sync attempt started."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositorySyncStatus"
        },
        {
          "description": "The sync attempt status."
        }
      ]
    }
  },
  "required": [
    "events",
    "startedAt",
    "status"
  ]
}