Issue Event Project Card

Issue Event Project Card

APIs.ioEngineeringPlatform

Properties

Name Type Description
url string
id integer
project_url string
project_id integer
column_name string
previous_column_name string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-issue-event-project-card-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/issue-event-project-card",
  "title": "Issue Event Project Card",
  "description": "Issue Event Project Card",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri"
    },
    "id": {
      "type": "integer"
    },
    "project_url": {
      "type": "string",
      "format": "uri"
    },
    "project_id": {
      "type": "integer"
    },
    "column_name": {
      "type": "string"
    },
    "previous_column_name": {
      "type": "string"
    }
  },
  "required": [
    "url",
    "id",
    "project_url",
    "project_id",
    "column_name"
  ]
}