{ "type": "object", "description": "Payload for creating an annotation", "name": "AnnotationCreate", "properties": { "name": { "type": "string", "description": "Display name" }, "description": { "type": "string", "description": "Annotation notes" }, "dateRange": { "type": "string", "description": "ISO 8601 date range" }, "rsids": { "type": "array", "description": "Report suite IDs to apply to", "items": { "type": "string" } }, "color": { "type": "string", "description": "Hex color code" } }, "required": [ "name", "dateRange" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }