GitHub · JSON Structure

Github Projects Project Card Structure

Project cards represent a scope of work.

Type: object Properties: 13 Required: 9
CodePipelinesPlatformSoftware DevelopmentSource ControlT1

project-card is a JSON Structure definition published by GitHub, describing 13 properties, of which 9 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

url id node_id note creator created_at updated_at archived column_name project_id column_url content_url project_url

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-structure/github-projects-project-card-structure.json",
  "name": "project-card",
  "description": "Project cards represent a scope of work.",
  "type": "object",
  "properties": {
    "url": {
      "type": "uri",
      "example": "https://api.github.com/projects/columns/cards/1478"
    },
    "id": {
      "description": "The project card's ID",
      "example": 42,
      "type": "int32"
    },
    "node_id": {
      "type": "string",
      "example": "MDExOlByb2plY3RDYXJkMTQ3OA=="
    },
    "note": {
      "type": "string",
      "example": "Add payload for delete Project column",
      "nullable": true
    },
    "creator": {
      "$ref": "#/components/schemas/nullable-simple-user"
    },
    "created_at": {
      "type": "datetime",
      "example": "2016-09-05T14:21:06Z"
    },
    "updated_at": {
      "type": "datetime",
      "example": "2016-09-05T14:20:22Z"
    },
    "archived": {
      "description": "Whether or not the card is archived",
      "example": false,
      "type": "boolean"
    },
    "column_name": {
      "type": "string",
      "example": "octocat"
    },
    "project_id": {
      "type": "string",
      "example": "12345678"
    },
    "column_url": {
      "type": "uri",
      "example": "https://api.github.com/projects/columns/367"
    },
    "content_url": {
      "type": "uri",
      "example": "https://api.github.com/repos/api-playground/projects-test/issues/3"
    },
    "project_url": {
      "type": "uri",
      "example": "https://api.github.com/projects/120"
    }
  },
  "required": [
    "id",
    "node_id",
    "note",
    "url",
    "column_url",
    "project_url",
    "creator",
    "created_at",
    "updated_at"
  ]
}