changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "documents": {
+ "items": {
+ "additionalProperties": false,
+ "description": "Artifact metadata and lifecycle counters.",
+ "properties": {
+ "canManage": {
+ "type": "boolean"
+ },
+ "commentPolicy": {
+ "description": "Who may add comments: nobody, invited reviewers, signed-in users, or anyone.",
+ "enum": [
+ "disabled",
+ "invited",
+ "authenticated",
+ "anyone"
+ ],
+ "type": "string"
+ },
+ "createdAt": {
+ "description": "ISO 8601 timestamp.",
+ "type": "string"
+ },
+ "createdBy": {
+ "type": "string"
+ },
+ "createdByName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "createdByType": {
+ "anyOf": [
+ {
+ "enum": [
+ "human",
+ "agent"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "createdOnBehalfOfId": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "createdOnBehalfOfName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "format": "uuid",
+ "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
+ "type": "string"
+ },
+ "latestVersionId": {
+ "anyOf": [
+ {
+ "format": "uuid",
+ "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "openThreadCount": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "ownerId": {
+ "type": "string"
+ },
+ "settingsUpdatedAt": {
+ "description": "ISO 8601 timestamp.",
+ "type": "string"
+ },
+ "settingsUpdatedBy": {
+ "type": "string"
+ },
+ "settingsUpdatedByName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "settingsUpdatedByType": {
+ "anyOf": [
+ {
+ "enum": [
+ "human",
+ "agent"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "settingsUpdatedOnBehalfOfId": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "settingsUpdatedOnBehalfOfName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "sourceType": {
+ "description": "Source format used by every version of the artifact.",
+ "enum": [
+ "markdown",
+ "html"
+ ],
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "updatedAt": {
+ "description": "ISO 8601 timestamp.",
+ "type": "string"
+ },
+ "versionCount": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "visibility": {
+ "description": "Artifact visibility: private, link-accessible unlisted, or public.",
+ "enum": [
+ "private",
+ "unlisted",
+ "public"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "canManage",
+ "commentPolicy",
+ "createdAt",
+ "createdBy",
+ "createdByName",
+ "createdByType",
+ "createdOnBehalfOfId",
+ "createdOnBehalfOfName",
+ "id",
+ "latestVersionId",
+ "openThreadCount",
+ "ownerId",
+ "settingsUpdatedAt",
+ "settingsUpdatedBy",
+ "settingsUpdatedByName",
+ "settingsUpdatedByType",
+ "settingsUpdatedOnBehalfOfId",
+ "settingsUpdatedOnBehalfOfName",
+ "sourceType",
+ "title",
+ "updatedAt",
+ "versionCount",
+ "visibility"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "documents"
+ ],
+ "type": "object"
+}