Issue Event

Issue Event

APIs.ioEngineeringPlatform

Properties

Name Type Description
id integer
node_id string
url string
actor object
event string
commit_id string
commit_url string
created_at string
issue object
label object
assignee object
assigner object
review_requester object
requested_reviewer object
requested_team object
dismissed_review object
milestone object
project_card object
rename object
author_association object
lock_reason string
performed_via_github_app object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-issue-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/issue-event",
  "title": "Issue Event",
  "description": "Issue Event",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "example": 1
    },
    "node_id": {
      "type": "string",
      "example": "MDEwOklzc3VlRXZlbnQx"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "example": "https://api.github.com/repos/octocat/Hello-World/issues/events/1"
    },
    "actor": {
      "$ref": "#/components/schemas/nullable-simple-user"
    },
    "event": {
      "type": "string",
      "example": "closed"
    },
    "commit_id": {
      "type": "string",
      "example": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
      "nullable": true
    },
    "commit_url": {
      "type": "string",
      "example": "https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e",
      "nullable": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "example": "2011-04-14T16:00:49Z"
    },
    "issue": {
      "$ref": "#/components/schemas/nullable-issue"
    },
    "label": {
      "$ref": "#/components/schemas/issue-event-label"
    },
    "assignee": {
      "$ref": "#/components/schemas/nullable-simple-user"
    },
    "assigner": {
      "$ref": "#/components/schemas/nullable-simple-user"
    },
    "review_requester": {
      "$ref": "#/components/schemas/nullable-simple-user"
    },
    "requested_reviewer": {
      "$ref": "#/components/schemas/nullable-simple-user"
    },
    "requested_team": {
      "$ref": "#/components/schemas/team"
    },
    "dismissed_review": {
      "$ref": "#/components/schemas/issue-event-dismissed-review"
    },
    "milestone": {
      "$ref": "#/components/schemas/issue-event-milestone"
    },
    "project_card": {
      "$ref": "#/components/schemas/issue-event-project-card"
    },
    "rename": {
      "$ref": "#/components/schemas/issue-event-rename"
    },
    "author_association": {
      "$ref": "#/components/schemas/author-association"
    },
    "lock_reason": {
      "type": "string",
      "nullable": true
    },
    "performed_via_github_app": {
      "$ref": "#/components/schemas/nullable-integration"
    }
  },
  "required": [
    "id",
    "node_id",
    "url",
    "actor",
    "event",
    "commit_id",
    "commit_url",
    "created_at"
  ]
}