changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "description": "Targeted review request for an immutable version.",
+ "properties": {
+ "assigneeId": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "completedAt": {
+ "anyOf": [
+ {
+ "description": "ISO 8601 timestamp.",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "completedBy": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "completedByName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "completedOnBehalfOfId": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "completedOnBehalfOfName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "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"
+ },
+ "instructions": {
+ "type": "string"
+ },
+ "requesterId": {
+ "type": "string"
+ },
+ "requesterName": {
+ "type": "string"
+ },
+ "requesterOnBehalfOfId": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "requesterOnBehalfOfName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "requesterType": {
+ "enum": [
+ "human",
+ "agent"
+ ],
+ "type": "string"
+ },
+ "status": {
+ "description": "Current review-request state.",
+ "enum": [
+ "pending",
+ "completed",
+ "cancelled"
+ ],
+ "type": "string"
+ },
+ "versionId": {
+ "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"
+ }
+ },
+ "required": [
+ "assigneeId",
+ "completedAt",
+ "completedBy",
+ "completedByName",
+ "completedOnBehalfOfId",
+ "completedOnBehalfOfName",
+ "createdAt",
+ "documentId",
+ "id",
+ "instructions",
+ "requesterId",
+ "requesterName",
+ "requesterOnBehalfOfId",
+ "requesterOnBehalfOfName",
+ "requesterType",
+ "status",
+ "versionId"
+ ],
+ "type": "object"
+}