Amazon Proton · JSON Structure

Amazon Proton Sync Blocker Structure

Detailed data of the sync blocker.

Type: object Properties: 8 Required: 5
DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

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

Properties

contexts createdAt createdReason id resolvedAt resolvedReason status type

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-proton/refs/heads/main/json-structure/amazon-proton-sync-blocker-structure.json",
  "name": "SyncBlocker",
  "description": "Detailed data of the sync blocker.",
  "type": "object",
  "properties": {
    "contexts": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyncBlockerContexts"
        },
        {
          "description": "The contexts for the sync blocker."
        }
      ]
    },
    "createdAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time when the sync blocker was created."
        }
      ]
    },
    "createdReason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The reason why the sync blocker was created."
        }
      ]
    },
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The ID of the sync blocker."
        }
      ]
    },
    "resolvedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time the sync blocker was resolved."
        }
      ]
    },
    "resolvedReason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The reason the sync blocker was resolved."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BlockerStatus"
        },
        {
          "description": "The status of the sync blocker."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BlockerType"
        },
        {
          "description": "The type of the sync blocker."
        }
      ]
    }
  },
  "required": [
    "createdAt",
    "createdReason",
    "id",
    "status",
    "type"
  ]
}