{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CreateNoteDto", "type": "object", "properties": { "title": { "type": "string" }, "identifier": { "type": "string" }, "date": { "type": "string" }, "subjectId": { "type": "string" }, "recommendationId": { "type": "string" }, "sentimentId": { "type": "string" }, "source": { "type": "string" }, "link": { "type": "string" }, "relatedSymbols": { "type": "array" }, "relatedContacts": { "type": "array" }, "customFieldValues": { "type": "array" }, "isPersonal": { "type": "boolean" } } }