Project Card

APIs.ioEngineeringPlatform

Properties

Name Type Description
after_id integer
archived boolean Whether or not the card is archived
column_id integer
column_url string
content_url string
created_at string
creator object
id integer The project card's ID
node_id string
note string
project_url string
updated_at string
url string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webhooks-project-card-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhooks_project_card",
  "title": "Project Card",
  "type": "object",
  "properties": {
    "after_id": {
      "type": "integer",
      "nullable": true
    },
    "archived": {
      "description": "Whether or not the card is archived",
      "type": "boolean"
    },
    "column_id": {
      "type": "integer"
    },
    "column_url": {
      "type": "string",
      "format": "uri"
    },
    "content_url": {
      "type": "string",
      "format": "uri"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "creator": {
      "title": "User",
      "type": "object",
      "nullable": true,
      "properties": {
        "avatar_url": {
          "type": "string",
          "format": "uri"
        },
        "deleted": {
          "type": "boolean"
        },
        "email": {
          "type": "string",
          "nullable": true
        },
        "events_url": {
          "type": "string",
          "format": "uri-template"
        },
        "followers_url": {
          "type": "string",
          "format": "uri"
        },
        "following_url": {
          "type": "string",
          "format": "uri-template"
        },
        "gists_url": {
          "type": "string",
          "format": "uri-template"
        },
        "gravatar_id": {
          "type": "string"
        },
        "html_url": {
          "type": "string",
          "format": "uri"
        },
        "id": {
          "type": "integer"
        },
        "login": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "node_id": {
          "type": "string"
        },
        "organizations_url": {
          "type": "string",
          "format": "uri"
        },
        "received_events_url": {
          "type": "string",
          "format": "uri"
        },
        "repos_url": {
          "type": "string",
          "format": "uri"
        },
        "site_admin": {
          "type": "boolean"
        },
        "starred_url": {
          "type": "string",
          "format": "uri-template"
        },
        "subscriptions_url": {
          "type": "string",
          "format": "uri"
        },
        "type": {
          "type": "string",
          "enum": [
            "Bot",
            "User",
            "Organization"
          ]
        },
        "url": {
          "type": "string",
          "format": "uri"
        }
      },
      "required": [
        "login",
        "id"
      ]
    },
    "id": {
      "description": "The project card's ID",
      "type": "integer"
    },
    "node_id": {
      "type": "string"
    },
    "note": {
      "type": "string",
      "nullable": true
    },
    "project_url": {
      "type": "string",
      "format": "uri"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  },
  "required": [
    "url",
    "project_url",
    "column_url",
    "column_id",
    "id",
    "node_id",
    "note",
    "archived",
    "creator",
    "created_at",
    "updated_at"
  ]
}