addedOutput schema / $defs
Added value: +{
+ "ResearchSummary": {
+ "description": "Summary of research material.",
+ "properties": {
+ "date": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Publication or update date",
+ "title": "Date"
+ },
+ "summary": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Brief summary of the document",
+ "title": "Summary"
+ },
+ "title": {
+ "description": "Research document title",
+ "title": "Title",
+ "type": "string"
+ },
+ "topics": {
+ "default": [],
+ "description": "Key topics covered",
+ "items": {
+ "type": "string"
+ },
+ "title": "Topics",
+ "type": "array"
+ },
+ "type": {
+ "description": "Type of document (CRS Report, Committee Report, etc.)",
+ "title": "Type",
+ "type": "string"
+ },
+ "url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "URL to access the document",
+ "title": "Url"
+ }
+ },
+ "required": [
+ "title",
+ "type",
+ "date",
+ "summary",
+ "url"
+ ],
+ "title": "ResearchSummary",
+ "type": "object"
+ }
+}
addedOutput schema / description
Added value: +"Response from the research and professional tool."
addedOutput schema / properties / operation
Added value: +{
+ "description": "The operation that was performed",
+ "title": "Operation",
+ "type": "string"
+}
addedOutput schema / properties / recommended_reading
Added value: +{
+ "default": [],
+ "description": "Recommended follow-up reading",
+ "items": {
+ "type": "string"
+ },
+ "title": "Recommended Reading",
+ "type": "array"
+}
addedOutput schema / properties / research_materials
Added value: +{
+ "default": [],
+ "description": "Research materials found",
+ "items": {
+ "$ref": "#/$defs/ResearchSummary"
+ },
+ "title": "Research Materials",
+ "type": "array"
+}
removedOutput schema / properties / result
Removed value: -{
- "title": "Result",
- "type": "string"
-}
addedOutput schema / properties / results_count
Added value: +{
+ "description": "Number of results returned",
+ "title": "Results Count",
+ "type": "integer"
+}
addedOutput schema / properties / success
Added value: +{
+ "description": "Whether the operation was successful",
+ "title": "Success",
+ "type": "boolean"
+}
addedOutput schema / properties / summary
Added value: +{
+ "description": "Human-readable summary of research results",
+ "title": "Summary",
+ "type": "string"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "success",
+ "operation",
+ "results_count",
+ "summary"
+]
changedOutput schema / title
Previous value: -"research_and_professionalOutput"New value: +"ResearchProfessionalResponse"