From 34c43e0282668403a8a8479fbb112acec7654aa6 Mon Sep 17 00:00:00 2001 From: Artem Tsybulko Date: Thu, 21 Nov 2024 15:14:40 +0300 Subject: [PATCH 1/2] SP-19782 - update TransactionInfo --- p-process.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/p-process.yml b/p-process.yml index f0660706..db95b47b 100644 --- a/p-process.yml +++ b/p-process.yml @@ -763,13 +763,32 @@ components: type: string DateTime: type: string + DocumentsDatabase: + $ref: "#/components/schemas/DocumentsDatabase" + SystemInfo: + type: string + Tag: + type: string TransactionID: type: string UserName: type: string + Version: + type: string example: "ComputerName": "7cded6852d20" "DateTime": "2020-05-27T08:17:03.247Z" "TransactionID": "dc5eb444-ad6e-4ebc-8102-d62d5bb56a4e" "UserName": "user" + DocumentsDatabase: + type: object + properties: + Description: + type: string + ExportDate: + type: string + ID: + type: string + Version: + type: string From ef966faa0fa9e43f6850856d7aa973d89bf4acf7 Mon Sep 17 00:00:00 2001 From: Artem Tsybulko Date: Thu, 21 Nov 2024 15:48:42 +0300 Subject: [PATCH 2/2] SP-19782 - add descriptions --- p-process.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/p-process.yml b/p-process.yml index db95b47b..375b9bd5 100644 --- a/p-process.yml +++ b/p-process.yml @@ -760,20 +760,27 @@ components: type: object properties: ComputerName: + description: "Computer name" type: string DateTime: + description: "Date and time" type: string DocumentsDatabase: $ref: "#/components/schemas/DocumentsDatabase" SystemInfo: + description: "System information" type: string Tag: + description: "Transaction tag" type: string TransactionID: + description: "Transaction identifier" type: string UserName: + description: "User name" type: string Version: + description: "SDK version" type: string example: "ComputerName": "7cded6852d20" @@ -783,12 +790,17 @@ components: DocumentsDatabase: type: object + description: "Document database information" properties: Description: + description: "Document database description" type: string ExportDate: + description: "Date the document database was created" type: string ID: + description: "Document database identifier" type: string Version: + description: "Document database version" type: string