changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "StudyResponse": {
+ "properties": {
+ "directions": {
+ "anyOf": [
+ {
+ "items": {
+ "enum": [
+ "minimize",
+ "maximize"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The optimization directions for each objective.",
+ "title": "Directions"
+ },
+ "metric_names": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The metric names for each objective.",
+ "title": "Metric Names"
+ },
+ "sampler_name": {
+ "anyOf": [
+ {
+ "enum": [
+ "TPESampler",
+ "NSGAIISampler",
+ "RandomSampler",
+ "GPSampler"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The name of the sampler used in the study.",
+ "title": "Sampler Name"
+ },
+ "study_name": {
+ "title": "Study Name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "study_name"
+ ],
+ "title": "StudyResponse",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "result": {
+ "items": {
+ "$ref": "#/$defs/StudyResponse"
+ },
+ "title": "Result",
+ "type": "array"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "title": "get_all_study_namesOutput",
+ "type": "object"
+}