Thread

Thread

APIs.ioEngineeringPlatform

Properties

Name Type Description
id string
repository object
subject object
reason string
unread boolean
updated_at string
last_read_at string
url string
subscription_url string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-thread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/thread",
  "title": "Thread",
  "description": "Thread",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "repository": {
      "$ref": "#/components/schemas/minimal-repository"
    },
    "subject": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "latest_comment_url": {
          "type": "string"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "latest_comment_url",
        "type"
      ]
    },
    "reason": {
      "type": "string"
    },
    "unread": {
      "type": "boolean"
    },
    "updated_at": {
      "type": "string"
    },
    "last_read_at": {
      "type": "string",
      "nullable": true
    },
    "url": {
      "type": "string"
    },
    "subscription_url": {
      "type": "string",
      "example": "https://api.github.com/notifications/threads/2/subscription"
    }
  },
  "required": [
    "id",
    "unread",
    "reason",
    "updated_at",
    "last_read_at",
    "subject",
    "repository",
    "url",
    "subscription_url"
  ]
}