addedOutput schema / $defs
Added value: +{
+ "ModelSummary": {
+ "additionalProperties": true,
+ "description": "One model entry from list_models / schema_catalog.",
+ "properties": {
+ "model": {
+ "description": "Technical model name, e.g. res.partner.",
+ "title": "Model",
+ "type": "string"
+ },
+ "name": {
+ "default": "",
+ "description": "Human display name.",
+ "title": "Name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "model"
+ ],
+ "title": "ModelSummary",
+ "type": "object"
+ }
+}
addedOutput schema / additionalProperties
Added value: +true
addedOutput schema / properties / count
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Count"
+}
addedOutput schema / properties / error
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Sanitized error message when success is false.",
+ "title": "Error"
+}
removedOutput schema / properties / result / additionalProperties
Removed value: -true
addedOutput schema / properties / result / anyOf
Added value: +[
+ {
+ "items": {
+ "$ref": "#/$defs/ModelSummary"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
addedOutput schema / properties / result / default
Added value: +null
removedOutput schema / properties / result / type
Removed value: -"object"
addedOutput schema / properties / success
Added value: +{
+ "description": "False when the call failed; see error.",
+ "title": "Success",
+ "type": "boolean"
+}
addedOutput schema / properties / tool
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Reporting tool name.",
+ "title": "Tool"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "success"
+]
changedOutput schema / title
Previous value: -"list_modelsOutput"New value: +"ListModelsResponse"