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