changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": {},
+ "properties": {
+ "byGoal": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "properties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Recommended panel and alternatives for the stated goals"
+ },
+ "bySymptom": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "properties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Panels, individual tests and explanations for the stated symptoms"
+ },
+ "disclaimer": {
+ "type": "string"
+ },
+ "goals": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "labFee": {
+ "description": "USD",
+ "type": "number"
+ },
+ "next": {
+ "description": "Suggested next tool call",
+ "type": "string"
+ },
+ "symptoms": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}