project_card converted event

APIs.ioEngineeringPlatform

Properties

Name Type Description
action string
changes object
enterprise object
installation object
organization object
project_card object
repository object
sender object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webhook-project-card-converted-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook-project-card-converted",
  "title": "project_card converted event",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "converted"
      ]
    },
    "changes": {
      "type": "object",
      "properties": {
        "note": {
          "type": "object",
          "properties": {
            "from": {
              "type": "string"
            }
          },
          "required": [
            "from"
          ]
        }
      },
      "required": [
        "note"
      ]
    },
    "enterprise": {
      "$ref": "#/components/schemas/enterprise-webhooks"
    },
    "installation": {
      "$ref": "#/components/schemas/simple-installation"
    },
    "organization": {
      "$ref": "#/components/schemas/organization-simple-webhooks"
    },
    "project_card": {
      "$ref": "#/components/schemas/webhooks_project_card"
    },
    "repository": {
      "$ref": "#/components/schemas/repository-webhooks"
    },
    "sender": {
      "$ref": "#/components/schemas/simple-user-webhooks"
    }
  },
  "required": [
    "action",
    "changes",
    "project_card",
    "sender"
  ]
}