

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Annotations Service API (Deprecated)",
    "description": " # Deprecation Notice: This service will be disabled.\nLast Updated: 2026-01-16\nAnnotation service will be disabled on April 20th, 2026. The recommended alternative for Annotation and Collaboration features is the [Collaboration SDK](https://docs.unity3d.com/Packages/com.unity.cloud.collaboration@latest), which is available as an experimental package.",
    "contact": {
      "name": "API Support",
      "x-slack-channel": "#unity-cloud-support"
    },
    "license": {
      "name": "Unity Legal",
      "url": "https://unity.com/legal"
    },
    "version": "v1.0.0"
  },
  "servers": [
    {
      "url": "https://staging.services.api.unity.com",
      "description": "Staging"
    },
    {
      "url": "https://services.api.unity.com",
      "description": "Production"
    }
  ],
  "paths": {
    "/assets/annotations/v1/projects/{projectId}/assets/{assetId}/datasets/{datasetId}/notifications": {
      "get": {
        "deprecated": true,
        "tags": [
          "Notifications"
        ],
        "summary": "Retrieves notifications through long polling.",
        "operationId": "NotificationsLongPolling",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "The latest notification identifier from which to receive newer notifications",
            "schema": {
              "type": "integer",
              "format": "int64",
              "default": 0
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Returns list of notifications."
          },
          "400": {
            "description": "If the number of comment identifiers exceed the 200 limits."
          }
        }
      }
    },
    "/assets/annotations/v1/projects/{projectId}/assets/{assetId}/datasets/{datasetId}/topics": {
      "get": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "List all the topics in an asset's dataset.",
        "operationId": "GetTopics",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Returns dataset's list of topics.",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/TopicListResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TopicListResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TopicListResponse"
                }
              }
            }
          },
          "403": {
            "description": "If the current user is not allowed to get the topics under the specified asset."
          },
          "404": {
            "description": "If specified project or asset, dataset identifier does not exist."
          }
        }
      },
      "post": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "Create a new topic under the specified asset's dataset.",
        "operationId": "CreateTopic",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "The request body.",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTopicRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTopicRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTopicRequest"
              }
            }
          }
        },
        "responses": {
          "201": {
            "description": "Returns the newly created topic.",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/CreateTopicResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CreateTopicResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/CreateTopicResponse"
                }
              }
            }
          },
          "403": {
            "description": "If the current user is not allowed to create a new topic under the specified asset."
          },
          "503": {
            "description": "If the underliying service is not available."
          }
        }
      }
    },
    "/assets/annotations/v1/projects/{projectId}/assets/{assetId}/datasets/{datasetId}/topics/{topicId}": {
      "get": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "Get a topic under the specified asset.",
        "operationId": "GetTopic",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "topicId",
            "in": "path",
            "description": "Topic identifier.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Returns the topic.",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Topic"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Topic"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Topic"
                }
              }
            }
          },
          "403": {
            "description": "If the current user is not allowed to get the topics under the specified asset."
          },
          "404": {
            "description": "If specified project, asset, dataset or topic identifier does not exist."
          }
        }
      },
      "delete": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "Delete a topic.",
        "operationId": "DeleteTopic",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "topicId",
            "in": "path",
            "description": "Topic identifier.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "If the topic is successfully deleted."
          },
          "403": {
            "description": "If the current user is not allowed to delete the topic under the specified asset."
          },
          "404": {
            "description": "If specified project, asset, dataset or topic identifier does not exist."
          },
          "503": {
            "description": "If the underliying service is not available."
          }
        }
      }
    },
    "/assets/annotations/v1/projects/{projectId}/assets/{assetId}/datasets/{datasetId}/comments": {
      "get": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "List all the comments in a asset's dataset.",
        "operationId": "GetComments",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Returns dataset's list of comments.",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/CommentList"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommentList"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommentList"
                }
              }
            }
          },
          "403": {
            "description": "If the current user is not allowed to get the comments under the specified asset."
          },
          "404": {
            "description": "If the specified project, asset or dataset identifier does not exist."
          }
        }
      }
    },
    "/assets/annotations/v1/projects/{projectId}/assets/{assetId}/datasets/{datasetId}/topics/{topicId}/comments": {
      "get": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "Get the comments under a specific topic in a asset's dataset.",
        "operationId": "GetTopicComments",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "topicId",
            "in": "path",
            "description": "Topic identifier.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Returns topic's list of comments under the specified dataset.",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/CommentList"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommentList"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommentList"
                }
              }
            }
          },
          "403": {
            "description": "If the current user is not allowed to get the comments under the specified asset."
          },
          "404": {
            "description": "If the specified project, asset, dataset or topic identifier does not exist."
          }
        }
      },
      "post": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "Create a new comment.",
        "operationId": "CreateComment",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "topicId",
            "in": "path",
            "description": "Topic identifier.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The request body.",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateOrEditCommentRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateOrEditCommentRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateOrEditCommentRequest"
              }
            }
          }
        },
        "responses": {
          "201": {
            "description": "Returns the newly created comment.",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Comment"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Comment"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Comment"
                }
              }
            }
          },
          "403": {
            "description": "If the current user is not allowed to create a new comment under the specified asset."
          },
          "404": {
            "description": "If the specified project, asset, dataset or topic identifier does not exist."
          }
        }
      }
    },
    "/assets/annotations/v1/projects/{projectId}/assets/{assetId}/datasets/{datasetId}/topics/{topicId}/comments/{commentId}": {
      "get": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "Get the comment under a specific topic in an asset.",
        "operationId": "GetComment",
        "parameters": [
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "topicId",
            "in": "path",
            "description": "Topic identifier.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          },
          {
            "name": "commentId",
            "in": "path",
            "description": "Comment identifier.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Returns the comments under the specified topic in an asset.",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Comment"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Comment"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Comment"
                }
              }
            }
          },
          "403": {
            "description": "If the current user is not allowed to get the comments under the specified asset."
          },
          "404": {
            "description": "If the specified project, asset, dataset, topic or comment identifier does not exist."
          }
        }
      },
      "delete": {
        "tags": [
          "Topic"
        ],
        "summary": "Delete a comment.",
        "operationId": "DeleteComment",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "topicId",
            "in": "path",
            "description": "Topic identifier.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          },
          {
            "name": "commentId",
            "in": "path",
            "description": "Comment identifier.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "If the comment is successfully deleted."
          },
          "403": {
            "description": "If the current user is not allowed to delete the comment under the specified asset."
          },
          "404": {
            "description": "If the specified project, asset, dataset, topic or comment identifier does not exist."
          }
        }
      }
    },
    "/assets/annotations/v1/projects/{projectId}/assets/{assetId}/datasets/{datasetId}/mark-all-as-read": {
      "post": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "Mark all the topics and comments as read by current user.",
        "operationId": "MarkAllAsRead",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "If the topics and comments are successfully updated."
          },
          "403": {
            "description": "If the current user is not allowed to update topics and comments under the specified asset."
          }
        }
      }
    },
    "/assets/annotations/v1/projects/{projectId}/assets/{assetId}/datasets/{datasetId}/topics/mark-as-read": {
      "post": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "Mark all the topics as read by current user.",
        "operationId": "MarkTopicsAsRead",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "List of topic identifiers.",
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "string",
                  "format": "uuid"
                }
              }
            },
            "text/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "string",
                  "format": "uuid"
                }
              }
            },
            "application/*+json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "string",
                  "format": "uuid"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "If the topics are successfully updated."
          },
          "400": {
            "description": "If the number of topic identifiers exceed the 200 limits."
          },
          "403": {
            "description": "If the current user is not allowed to update topics under the specified asset."
          },
          "404": {
            "description": "If none of the specified topic identifiers exist."
          }
        }
      }
    },
    "/assets/annotations/v1/projects/{projectId}/assets/{assetId}/datasets/{datasetId}/comments/mark-as-read": {
      "post": {
        "deprecated": true,
        "tags": [
          "Topic"
        ],
        "summary": "Mark all the comments as read by current user.",
        "operationId": "MarkCommentsAsRead",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "Project identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "assetId",
            "in": "path",
            "description": "Asset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "datasetId",
            "in": "path",
            "description": "Dataset identifier.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "List of comment identifiers.",
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "string",
                  "format": "uuid"
                }
              }
            },
            "text/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "string",
                  "format": "uuid"
                }
              }
            },
            "application/*+json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "string",
                  "format": "uuid"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "If the comments are successfully updated."
          },
          "400": {
            "description": "If the number of comment identifiers exceed the 200 limits."
          },
          "403": {
            "description": "If the current user is not allowed to update comments under the specified asset."
          },
          "404": {
            "description": "If none of the specified comment identifiers exist."
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Author": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "string",
            "nullable": true
          },
          "FullName": {
            "type": "string",
            "nullable": true
          },
          "ColorIndex": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "AutodeskIssueManagementConnector": {
        "type": "object",
        "properties": {
          "ServerId": {
            "type": "string",
            "nullable": true
          },
          "ProjectId": {
            "type": "string",
            "nullable": true
          },
          "AutodeskHubId": {
            "type": "string",
            "nullable": true
          },
          "AutodeskIssueContainerId": {
            "type": "string",
            "nullable": true
          },
          "AutodeskRfiContainerId": {
            "type": "string",
            "nullable": true
          },
          "AutodeskProjectId": {
            "type": "string",
            "nullable": true
          },
          "BackendKey": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "AutodeskListObject": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "BaseIssueManagementConnector": {
        "type": "object",
        "properties": {
          "BackendKey": {
            "type": "string",
            "nullable": true
          },
          "ServerId": {
            "type": "string",
            "nullable": true
          },
          "ProjectId": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Color": {
        "type": "object",
        "properties": {
          "R": {
            "type": "number",
            "format": "float"
          },
          "G": {
            "type": "number",
            "format": "float"
          },
          "B": {
            "type": "number",
            "format": "float"
          },
          "A": {
            "type": "number",
            "format": "float"
          }
        },
        "additionalProperties": false
      },
      "ColorationFeature": {
        "enum": [
          0,
          1,
          2,
          3
        ],
        "type": "integer",
        "format": "int32"
      },
      "Comment": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "string",
            "nullable": true
          },
          "TopicId": {
            "type": "string",
            "nullable": true
          },
          "Date": {
            "type": "string",
            "format": "date-time"
          },
          "Author": {
            "$ref": "#/components/schemas/Author"
          },
          "Text": {
            "type": "string",
            "nullable": true
          },
          "ModifiedDate": {
            "type": "string",
            "format": "date-time"
          },
          "Read": {
            "type": "boolean"
          },
          "IssueManagementKey": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CommentList": {
        "type": "object",
        "properties": {
          "Comments": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Comment"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreateOrEditCommentRequest": {
        "type": "object",
        "properties": {
          "Comment": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreateTopicRequest": {
        "type": "object",
        "properties": {
          "InstanceId": {
            "type": "string",
            "nullable": true
          },
          "Title": {
            "type": "string",
            "nullable": true
          },
          "Description": {
            "type": "string",
            "nullable": true
          },
          "LocalTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "WorldTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "WorldCameraTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "LocalCameraTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "InitialComment": {
            "type": "string",
            "nullable": true
          },
          "IssueType": {
            "$ref": "#/components/schemas/IssueManagementType"
          },
          "IssueManagementKey": {
            "type": "string",
            "nullable": true
          },
          "IssueManagementData": {
            "type": "string",
            "nullable": true
          },
          "Attachment": {
            "$ref": "#/components/schemas/FileField"
          }
        },
        "additionalProperties": false
      },
      "CreateTopicResponse": {
        "type": "object",
        "properties": {
          "Topic": {
            "$ref": "#/components/schemas/Topic"
          },
          "Comment": {
            "$ref": "#/components/schemas/Comment"
          }
        },
        "additionalProperties": false
      },
      "EditTopicRequest": {
        "type": "object",
        "properties": {
          "InstanceId": {
            "type": "string",
            "nullable": true
          },
          "Title": {
            "type": "string",
            "nullable": true
          },
          "Description": {
            "type": "string",
            "nullable": true
          },
          "LocalTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "WorldTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "WorldCameraTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "LocalCameraTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "IssueManagementData": {
            "type": "string",
            "nullable": true
          },
          "IssueType": {
            "$ref": "#/components/schemas/IssueManagementType"
          }
        },
        "additionalProperties": false
      },
      "FileField": {
        "type": "object",
        "properties": {
          "Bytes": {
            "type": "string",
            "format": "byte",
            "nullable": true
          },
          "Filename": {
            "type": "string",
            "nullable": true
          },
          "ContentType": {
            "type": "string",
            "nullable": true
          },
          "Url": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "IssueManagementConnectorBody": {
        "type": "object",
        "properties": {
          "accessToken": {
            "type": "string",
            "nullable": true
          },
          "expiresAt": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "email": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "IssueManagementConnectorType": {
        "enum": [
          0,
          1,
          2
        ],
        "type": "integer",
        "format": "int32"
      },
      "IssueManagementType": {
        "enum": [
          1,
          2,
          4,
          8,
          16
        ],
        "type": "integer",
        "description": "Types of Issue Management Tickets supported",
        "format": "int32"
      },
      "ModelColor": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Color": {
            "$ref": "#/components/schemas/Color"
          },
          "Field": {
            "type": "string",
            "nullable": true
          },
          "Value": {
            "type": "string",
            "nullable": true
          },
          "ModifiedDate": {
            "type": "string",
            "format": "date-time",
            "readOnly": true
          },
          "ModifiedDateTicks": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "ModelColorPreset": {
        "type": "object",
        "properties": {
          "Color": {
            "$ref": "#/components/schemas/Color"
          },
          "Index": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "ModelColorPresetResponse": {
        "type": "object",
        "properties": {
          "ModelColorPresets": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ModelColorPreset"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ModelColorResponse": {
        "type": "object",
        "properties": {
          "ModelColors": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ModelColor"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Position": {
        "type": "object",
        "properties": {
          "X": {
            "type": "number",
            "format": "float"
          },
          "Y": {
            "type": "number",
            "format": "float"
          },
          "Z": {
            "type": "number",
            "format": "float"
          }
        },
        "additionalProperties": false
      },
      "ProcoreCallback": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ProcoreIssueManagementConnector": {
        "type": "object",
        "properties": {
          "ServerId": {
            "type": "string",
            "nullable": true
          },
          "ProjectId": {
            "type": "string",
            "nullable": true
          },
          "ProcoreCompanyId": {
            "type": "string",
            "nullable": true
          },
          "ProcoreProjectId": {
            "type": "string",
            "nullable": true
          },
          "BackendKey": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ProcoreListObject": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "name": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Quaternion": {
        "type": "object",
        "properties": {
          "X": {
            "type": "number",
            "format": "float"
          },
          "Y": {
            "type": "number",
            "format": "float"
          },
          "Z": {
            "type": "number",
            "format": "float"
          },
          "W": {
            "type": "number",
            "format": "float"
          }
        },
        "additionalProperties": false
      },
      "SetModelColorPresetRequest": {
        "type": "object",
        "properties": {
          "Color": {
            "$ref": "#/components/schemas/Color"
          },
          "Index": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "SetModelColorRequest": {
        "type": "object",
        "properties": {
          "Color": {
            "$ref": "#/components/schemas/Color"
          },
          "Field": {
            "type": "string",
            "nullable": true
          },
          "Value": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Topic": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "string",
            "nullable": true
          },
          "SceneId": {
            "type": "string",
            "nullable": true
          },
          "InstanceId": {
            "type": "string",
            "nullable": true
          },
          "Title": {
            "type": "string",
            "nullable": true
          },
          "CreationAuthor": {
            "$ref": "#/components/schemas/Author"
          },
          "CreationDate": {
            "type": "string",
            "format": "date-time"
          },
          "ModifiedAuthor": {
            "$ref": "#/components/schemas/Author"
          },
          "ModifiedDate": {
            "type": "string",
            "format": "date-time"
          },
          "Description": {
            "type": "string",
            "nullable": true
          },
          "State": {
            "$ref": "#/components/schemas/TopicState"
          },
          "Read": {
            "type": "boolean"
          },
          "LocalTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "WorldTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "WorldCameraTransform": {
            "$ref": "#/components/schemas/Transform"
          },
          "IssueType": {
            "$ref": "#/components/schemas/IssueManagementType"
          },
          "IssueManagementKey": {
            "type": "string",
            "nullable": true
          },
          "LocalCameraTransform": {
            "$ref": "#/components/schemas/Transform"
          }
        },
        "additionalProperties": false
      },
      "TopicListResponse": {
        "type": "object",
        "properties": {
          "Topics": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Topic"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "TopicState": {
        "enum": [
          0,
          1,
          2
        ],
        "type": "integer",
        "format": "int32"
      },
      "Transform": {
        "type": "object",
        "properties": {
          "Position": {
            "$ref": "#/components/schemas/Position"
          },
          "Rotation": {
            "$ref": "#/components/schemas/Quaternion"
          }
        },
        "additionalProperties": false
      }
    },
    "securitySchemes": {
      "Bearer": {
        "type": "http",
        "description": "JWT authorization header using Bearer schema.\r\nPut only your JWT token here.",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "Bearer": []
    }
  ],
  "tags": [
    {
      "name": "Notifications",
      "description": "Retrieves notifications using long polling."
    },
    {
      "name": "Topic",
      "description": "Create, update, delete and read topics and comments in an asset's dataset."
    }
  ]
}
```