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