Removed from Project Issue Event

Removed from Project 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
performed_via_github_app object
project_card object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-removed-from-project-issue-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/removed-from-project-issue-event",
  "title": "Removed from Project Issue Event",
  "description": "Removed from Project Issue Event",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "node_id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "actor": {
      "$ref": "#/components/schemas/simple-user"
    },
    "event": {
      "type": "string"
    },
    "commit_id": {
      "type": "string",
      "nullable": true
    },
    "commit_url": {
      "type": "string",
      "nullable": true
    },
    "created_at": {
      "type": "string"
    },
    "performed_via_github_app": {
      "$ref": "#/components/schemas/nullable-integration"
    },
    "project_card": {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer"
        },
        "url": {
          "type": "string",
          "format": "uri"
        },
        "project_id": {
          "type": "integer"
        },
        "project_url": {
          "type": "string",
          "format": "uri"
        },
        "column_name": {
          "type": "string"
        },
        "previous_column_name": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "url",
        "project_id",
        "project_url",
        "column_name"
      ]
    }
  },
  "required": [
    "id",
    "node_id",
    "url",
    "actor",
    "event",
    "commit_id",
    "commit_url",
    "created_at",
    "performed_via_github_app"
  ]
}