GitHub · JSON Structure

Github Installation Integration Installation Request Structure

Request to install an integration on a target

Type: object Properties: 5 Required: 4
CodePipelinesPlatformSoftware DevelopmentSource ControlT1

integration-installation-request is a JSON Structure definition published by GitHub, describing 5 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id node_id account requester created_at

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-installation-integration-installation-request-structure.json",
  "name": "integration-installation-request",
  "description": "Request to install an integration on a target",
  "type": "object",
  "properties": {
    "id": {
      "description": "Unique identifier of the request installation.",
      "type": "int32",
      "example": 42
    },
    "node_id": {
      "type": "string",
      "example": "MDExOkludGVncmF0aW9uMQ=="
    },
    "account": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/simple-user"
        },
        {
          "$ref": "#/components/schemas/enterprise"
        }
      ],
      "example": "example_value"
    },
    "requester": {
      "$ref": "#/components/schemas/simple-user"
    },
    "created_at": {
      "type": "datetime",
      "example": "2022-07-08T16:18:44-04:00"
    }
  },
  "required": [
    "id",
    "account",
    "requester",
    "created_at"
  ]
}