Unified.to · Schema

Issue

IntegrationsUnified API

Properties

Name Type Description
created_at string
id string
importance number
resolution_time number
size number
status string
ticket_ref string
title string
type object
updated_at string
url string
workspace_id string
View JSON Schema on GitHub

JSON Schema

unified-to-issue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Issue",
  "title": "Issue",
  "properties": {
    "created_at": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "importance": {
      "type": "number"
    },
    "resolution_time": {
      "type": "number"
    },
    "size": {
      "type": "number"
    },
    "status": {
      "enum": [
        "COMPLETED",
        "NEW",
        "ROADMAP",
        "IN_PROGRESS",
        "ON_HOLD",
        "VALIDATING",
        "REJECTED"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "ticket_ref": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "type": {
      "$ref": "#/components/schemas/property_Issue_type"
    },
    "updated_at": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "workspace_id": {
      "type": "string"
    }
  },
  "required": [
    "title",
    "status",
    "workspace_id",
    "ticket_ref"
  ],
  "type": "object"
}