{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NewNoteRequest", "title": "NewNoteRequest", "type": "object", "required": [ "target", "domain", "description" ], "properties": { "target": { "type": "object", "description": "Target.", "properties": { "id": { "type": "string" }, "type": { "type": "string" }, "url": { "type": "string" } } }, "domain": { "type": "string" }, "description": { "type": "string" } } }