{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AtsCreateNotesRequestDto", "title": "AtsCreateNotesRequestDto", "type": "object", "properties": { "visibility": { "$ref": "#/components/schemas/NotesVisibilityEnum" }, "content": { "type": "array", "items": { "type": "string" } } }, "required": [ "content", "visibility" ] }