changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "items": {
+ "description": "Glossaries accessible to the authenticated account",
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "createdAt": {
+ "description": "ISO 8601 timestamp",
+ "type": "string"
+ },
+ "id": {
+ "description": "Unique glossary identifier (format: gls_*)",
+ "type": "string"
+ },
+ "isPersonal": {
+ "description": "True if the glossary is private to the owner",
+ "type": "boolean"
+ },
+ "name": {
+ "description": "Display name of the glossary",
+ "type": "string"
+ },
+ "ownerId": {
+ "description": "Identifier of the glossary owner",
+ "type": "string"
+ },
+ "updatedAt": {
+ "description": "ISO 8601 timestamp",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "ownerId",
+ "createdAt",
+ "updatedAt",
+ "isPersonal"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items"
+ ],
+ "type": "object"
+}