{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "NoteSummaryDto", "type": "object", "properties": { "id": { "type": "string" }, "date": { "type": "string" }, "createdAt": { "type": "string" }, "authorId": { "type": "string" }, "contributorId": { "type": "string" }, "title": { "type": "string" }, "identifier": { "type": "string" }, "subjectId": { "type": "string" }, "isPersonal": { "type": "boolean" }, "state": { "type": "string" }, "approvalStatus": { "type": "string" }, "attachmentIds": { "type": "array" }, "relatedSymbols": { "type": "array" }, "recommendationId": { "type": "string" }, "sentimentId": { "type": "string" }, "customFields": { "type": "array" } } }