changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "TrialResponse": {
+ "properties": {
+ "params": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The parameter values suggested by the trial.",
+ "title": "Params"
+ },
+ "system_attrs": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "System-defined attributes for the trial.",
+ "title": "System Attrs"
+ },
+ "trial_number": {
+ "title": "Trial Number",
+ "type": "integer"
+ },
+ "user_attrs": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "User-defined attributes for the trial.",
+ "title": "User Attrs"
+ },
+ "values": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "number"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The objective values of the trial.",
+ "title": "Values"
+ }
+ },
+ "required": [
+ "trial_number"
+ ],
+ "title": "TrialResponse",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "result": {
+ "items": {
+ "$ref": "#/$defs/TrialResponse"
+ },
+ "title": "Result",
+ "type": "array"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "title": "best_trialsOutput",
+ "type": "object"
+}