changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "items": {
+ "description": "Translation memories accessible to the authenticated account",
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "collaboratorsCount": {
+ "description": "Number of collaborators with access to the memory",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "createdAt": {
+ "description": "ISO 8601 timestamp",
+ "type": "string"
+ },
+ "externalId": {
+ "description": "External identifier (e.g. MyMemory ID) when imported",
+ "type": "string"
+ },
+ "id": {
+ "description": "Unique memory identifier (format: mem_*)",
+ "type": "string"
+ },
+ "isPersonal": {
+ "description": "True if the memory is private to the owner",
+ "type": "boolean"
+ },
+ "name": {
+ "description": "Display name of the memory",
+ "type": "string"
+ },
+ "ownerId": {
+ "description": "Identifier of the memory owner",
+ "type": "string"
+ },
+ "secret": {
+ "description": "Memory secret, if any",
+ "type": "string"
+ },
+ "sharedAt": {
+ "description": "ISO 8601 timestamp",
+ "type": "string"
+ },
+ "updatedAt": {
+ "description": "ISO 8601 timestamp",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "createdAt",
+ "updatedAt",
+ "sharedAt",
+ "name",
+ "ownerId",
+ "collaboratorsCount",
+ "isPersonal"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items"
+ ],
+ "type": "object"
+}