Factset · Schema

CommentDto

FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch

Properties

Name Type Description
id string
authorId string
parentCommentId string
body string
createdAt string
attachments array
subcomments array
View JSON Schema on GitHub

JSON Schema

factset-irn-notes-comment-dto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CommentDto",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "authorId": {
      "type": "string"
    },
    "parentCommentId": {
      "type": "string"
    },
    "body": {
      "type": "string"
    },
    "createdAt": {
      "type": "string"
    },
    "attachments": {
      "type": "array"
    },
    "subcomments": {
      "type": "array"
    }
  }
}