Amazon CodeGuru Reviewer · JSON Structure

Amazon Codeguru Reviewer Event Info Structure

Information about an event. The event might be a push, pull request, scheduled request, or another type of event.

Type: object Properties: 2
AmazonCode ReviewSecurityDevOpsMachine LearningDeveloper Tools

EventInfo is a JSON Structure definition published by Amazon CodeGuru Reviewer, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name State

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-codeguru-reviewer/refs/heads/main/json-structure/amazon-codeguru-reviewer-event-info-structure.json",
  "name": "EventInfo",
  "description": "Information about an event. The event might be a push, pull request, scheduled request, or another type of event.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventName"
        },
        {
          "description": "The name of the event. The possible names are <code>pull_request</code>, <code>workflow_dispatch</code>, <code>schedule</code>, and <code>push</code> "
        }
      ]
    },
    "State": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventState"
        },
        {
          "description": "The state of an event. The state might be open, closed, or another state."
        }
      ]
    }
  }
}