Project Column

APIs.ioEngineeringPlatform

Properties

Name Type Description
after_id integer
cards_url string
created_at string
id integer The unique identifier of the project column
name string Name of the project column
node_id string
project_url string
updated_at string
url string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webhooks-project-column-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhooks_project_column",
  "title": "Project Column",
  "type": "object",
  "properties": {
    "after_id": {
      "type": "integer",
      "nullable": true
    },
    "cards_url": {
      "type": "string",
      "format": "uri"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "id": {
      "description": "The unique identifier of the project column",
      "type": "integer"
    },
    "name": {
      "description": "Name of the project column",
      "type": "string"
    },
    "node_id": {
      "type": "string"
    },
    "project_url": {
      "type": "string",
      "format": "uri"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  },
  "required": [
    "url",
    "project_url",
    "cards_url",
    "id",
    "node_id",
    "name",
    "created_at",
    "updated_at"
  ]
}