Amazon Proton · Schema

RepositorySyncEvent

Repository sync event detail data for a sync attempt.

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

Name Type Description
event object
externalId object
time object
type object
View JSON Schema on GitHub

JSON Schema

amazon-proton-repository-sync-event-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-event-schema.json",
  "title": "RepositorySyncEvent",
  "description": "Repository sync event detail data for a sync attempt.",
  "type": "object",
  "properties": {
    "event": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Event detail for a repository sync attempt."
        }
      ]
    },
    "externalId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The external ID of the sync event."
        }
      ]
    },
    "time": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time that the sync event occurred."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The type of event."
        }
      ]
    }
  },
  "required": [
    "event",
    "time",
    "type"
  ]
}