changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "comments": {
+ "additionalProperties": false,
+ "properties": {
+ "carried": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "failed": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "outdated": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "carried",
+ "failed",
+ "outdated"
+ ],
+ "type": "object"
+ },
+ "version": {
+ "additionalProperties": false,
+ "description": "Metadata for one immutable artifact version.",
+ "properties": {
+ "createdAt": {
+ "description": "ISO 8601 timestamp.",
+ "type": "string"
+ },
+ "documentId": {
+ "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"
+ },
+ "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"
+ },
+ "number": {
+ "exclusiveMinimum": 0,
+ "maximum": 9007199254740991,
+ "type": "integer"
+ },
+ "publishedBy": {
+ "type": "string"
+ },
+ "publishedByName": {
+ "type": "string"
+ },
+ "publishedByType": {
+ "enum": [
+ "human",
+ "agent"
+ ],
+ "type": "string"
+ },
+ "publishedOnBehalfOfId": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "publishedOnBehalfOfName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "sourceHash": {
+ "type": "string"
+ },
+ "sourceSize": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "sourceType": {
+ "description": "Source format used by every version of the artifact.",
+ "enum": [
+ "markdown",
+ "html"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "createdAt",
+ "documentId",
+ "id",
+ "number",
+ "publishedBy",
+ "publishedByName",
+ "publishedByType",
+ "publishedOnBehalfOfId",
+ "publishedOnBehalfOfName",
+ "sourceHash",
+ "sourceSize",
+ "sourceType"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "comments",
+ "version"
+ ],
+ "type": "object"
+}