diff --git a/src/swagger/OpenAPIService.ts b/src/swagger/OpenAPIService.ts index 80d689d..d4da30f 100644 --- a/src/swagger/OpenAPIService.ts +++ b/src/swagger/OpenAPIService.ts @@ -4,7 +4,6 @@ import { OpenAPITypesGuard } from './OpenAPITypesGuard'; import { IOpenAPI3 } from './v3/open-api'; import { IOpenAPI3Operation } from './v3/operation'; import { IOpenAPI3Reference } from './v3/reference'; -import { IOpenAPI3AllOfSchema } from './v3/schemas/all-of-schema'; import { IOpenAPI3EnumSchema } from './v3/schemas/enum-schema'; import { IOpenAPI3ObjectSchema } from './v3/schemas/object-schema'; import { OpenAPI3Schema, OpenAPI3SchemaContainer } from './v3/schemas/schema'; @@ -201,17 +200,11 @@ export class OpenAPIService { refKeys.add(ref.$ref); const schema = this.getSchemaByRef(ref); - if (this.typesGuard.isObject(schema)) { + if (schema) { const refsFromObject = this.getRefsByObject(schema, ref); const expanded = this.expandRefs(refsFromObject, refKeys); collectedRefs.push(...expanded); } - - if (this.typesGuard.isAllOf(schema)) { - const refsFromObject = this.getRefsByAllOf(schema, ref); - const expanded = this.expandRefs(refsFromObject, refKeys); - collectedRefs.push(...expanded); - } }); return collectedRefs; @@ -221,46 +214,29 @@ export class OpenAPIService { * @description Gets refs from object schema only one level down */ private getRefsByObject( - object: IOpenAPI3ObjectSchema, + schema: IOpenAPI3ObjectSchema | IOpenAPI3EnumSchema | OpenAPI3Schema, objectRef: IOpenAPI3Reference, outerRefs: IOpenAPI3Reference[] = [] ): IOpenAPI3Reference[] { const refs = outerRefs; - Object.values(object.properties || []).forEach((property) => { - this.getRefsFromSchema(property) - .filter((ref) => ref.$ref !== objectRef.$ref && !outerRefs.find((x) => x.$ref === ref.$ref)) - .forEach((ref) => { - refs.push(ref); - - if (this.typesGuard.isObject(property)) { - this.getRefsByObject(property, objectRef, refs); - } - }); - }); + const properties: OpenAPI3Schema[] = []; - return refs; - } + if (this.typesGuard.isAllOf(schema)) { + properties.push(...schema.allOf); + } - /** - * @description Gets refs from allof schema only one level down - */ - private getRefsByAllOf( - object: IOpenAPI3AllOfSchema, - objectRef: IOpenAPI3Reference, - outerRefs: IOpenAPI3Reference[] = [] - ): IOpenAPI3Reference[] { - const refs = outerRefs; + if (this.typesGuard.isObject(schema)) { + properties.push(...Object.values(schema.properties || [])); + } - Object.values(object.allOf || []).forEach((property) => { + properties.forEach((property) => { this.getRefsFromSchema(property) .filter((ref) => ref.$ref !== objectRef.$ref && !outerRefs.find((x) => x.$ref === ref.$ref)) .forEach((ref) => { refs.push(ref); - - if (this.typesGuard.isObject(property)) { - this.getRefsByObject(property, objectRef, refs); - } + this.getRefsByObject(property, objectRef, refs); + this.getRefsByObject(property, objectRef, refs); }); }); diff --git a/swagger copy.json b/swagger copy.json new file mode 100644 index 0000000..a6c41ec --- /dev/null +++ b/swagger copy.json @@ -0,0 +1,780 @@ +{ + "openapi": "3.0.1", + "info": { + "title": "Available use cases", + "version": "1.0" + }, + "paths": { + "/api/v1/Product/Items/GetById": { + "post": { + "tags": [ + "Product" + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + } + } + } + } + } + }, + "/api/v1/Product/Items/GetByIds": { + "post": { + "tags": [ + "Product" + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + } + } + } + } + } + }, + "/Product/getByCustomer/{customer}/type/{type}": { + "get": { + "tags": [ + "Product" + ], + "parameters": [ + { + "name": "customer", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "type", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "date", + "in": "query", + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/Product" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/Product" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/Product" + } + } + } + } + } + } + }, + "/api/v1/Product/GetById/{id}": { + "get": { + "tags": [ + "Product" + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/Product" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/Product" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/Product" + } + } + } + } + } + } + }, + "/api/v1/Category/AddCategory": { + "post": { + "tags": [ + "Category" + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Category" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/Category" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/Category" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/Product/GetProducts": { + "get": { + "tags": [ + "Product" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + } + } + } + } + } + }, + "/api/v1/Product": { + "get": { + "tags": [ + "Product" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + } + } + } + } + } + }, + "/Product/Product": { + "get": { + "tags": [ + "Product" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + } + } + } + } + } + }, + "/Product/SearchProducts": { + "get": { + "tags": [ + "Product" + ], + "parameters": [ + { + "name": "name", + "in": "query", + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + } + } + } + } + } + }, + "/Product/DownloadAttachment": { + "post": { + "tags": [ + "Product" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ProductIdentityDTO" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProductIdentityDTO" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ProductIdentityDTO" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ProductIdentityDTO" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/Product/GetProductsByStatus/{status}": { + "get": { + "tags": [ + "Product" + ], + "parameters": [ + { + "name": "status", + "in": "path", + "required": true, + "schema": { + "$ref": "#/components/schemas/ProductStatus" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Product" + } + } + } + } + } + } + } + }, + "/Product/Download": { + "get": { + "tags": [ + "Product" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/Category/Upload": { + "post": { + "tags": [ + "Category" + ], + "requestBody": { + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "properties": { + "ContentType": { + "type": "string", + "nullable": true + }, + "ContentDisposition": { + "type": "string", + "nullable": true + }, + "Headers": { + "type": "object", + "additionalProperties": { + "type": "array", + "items": { + "type": "string" + } + }, + "nullable": true + }, + "Length": { + "type": "integer", + "format": "int64" + }, + "Name": { + "type": "string", + "nullable": true + }, + "FileName": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + } + } + }, + "encoding": { + "ContentType": { + "style": "form" + }, + "ContentDisposition": { + "style": "form" + }, + "Headers": { + "style": "form" + }, + "Length": { + "style": "form" + }, + "Name": { + "style": "form" + }, + "FileName": { + "style": "form" + }, + "name": { + "style": "form" + } + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "Category": { + "type": "object", + "properties": { + "type": { + "type": "string" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false, + "discriminator": { + "propertyName": "type", + "mapping": { + "1": "#/components/schemas/CategoryElectronicsDto", + "2": "#/components/schemas/CategoryMotorsDto" + } + } + }, + "CategoryMotorsDto": { + "type": "object", + "properties": { + "volume": { + "type": "number", + "nullable": true + } + }, + "allOf": [ + { + "$ref": "#/components/schemas/Category" + } + ], + "additionalProperties": false + }, + "CategoryElectronicsDto": { + "type": "object", + "properties": { + "syntheticTest": { + "type": "number", + "nullable": true + } + }, + "allOf": [ + { + "$ref": "#/components/schemas/Category" + } + ], + "additionalProperties": false + }, + "ProductStatus": { + "enum": [ + 0, + -1, + 1 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "InStock", + "OutOfStock", + "UnderTheOrder" + ] + }, + "Product": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "externalId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "expireDate": { + "type": "string", + "format": "date-time" + }, + "modifyDates": { + "type": "array", + "items": { + "type": "string", + "format": "date-time" + }, + "nullable": true + }, + "colors": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "category": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/Category" + }, + { + "$ref": "#/components/schemas/CategoryElectronicsDto" + }, + { + "$ref": "#/components/schemas/CategoryMotorsDto" + } + ] + } + }, + "status": { + "allOf": [ + { + "$ref": "#/components/schemas/ProductStatus" + } + ], + "nullable": true + } + }, + "additionalProperties": false + }, + "ProductIdentityDTO": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + } + } + } +} \ No newline at end of file diff --git a/swagger.json b/swagger.json index 95f7865..3c61120 100644 --- a/swagger.json +++ b/swagger.json @@ -1,139 +1,180 @@ { "openapi": "3.0.1", "info": { - "title": "Available use cases", - "version": "1.0" + "title": "User API", + "version": "v1" }, "paths": { - "/api/v1/Product/Items/GetById": { + "/api/v1/Agreement/AddAgreementChatLastSeenDate": { "post": { "tags": [ - "Product" + "Agreement" ], "requestBody": { "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAgreementChatLastSeenDateCommand" + } + }, "application/json": { "schema": { - "type": "string", - "format": "uuid" + "$ref": "#/components/schemas/AddAgreementChatLastSeenDateCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAgreementChatLastSeenDateCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAgreementChatLastSeenDateCommand" } } } }, "responses": { "200": { - "description": "Success", - "content": { - "text/plain": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } - } - }, - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } - } - } + "description": "Success" + } + } + } + }, + "/contracts/{contractId}": { + "get": { + "tags": [ + "AgreementRedirect" + ], + "parameters": [ + { + "name": "contractId", + "in": "path", + "required": true, + "schema": { + "type": "string" } + }, + { + "name": "api-version", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success" } } } }, - "/api/v1/Product/Items/GetByIds": { + "/api/v1/AgreementRelation/UpdateComment": { "post": { "tags": [ - "Product" + "AgreementRelation" ], "requestBody": { "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateAgreementRelationCommentCommand" + } + }, "application/json": { "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } + "$ref": "#/components/schemas/UpdateAgreementRelationCommentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateAgreementRelationCommentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateAgreementRelationCommentCommand" } } } }, "responses": { "200": { - "description": "Success", - "content": { - "text/plain": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } - } - }, - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } - } - } - } + "description": "Success" } } } }, - "/Product/getByCustomer/{customer}/type/{type}": { - "get": { + "/api/v1/AgreementRelation/Remove": { + "delete": { "tags": [ - "Product" + "AgreementRelation" ], "parameters": [ { - "name": "customer", - "in": "path", - "required": true, + "name": "agreementRelationId", + "in": "query", "schema": { "type": "string", "format": "uuid" } - }, - { - "name": "type", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid" + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/AgreementRelation/AddRelation": { + "post": { + "tags": [ + "AgreementRelation" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAgreementRelationCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAgreementRelationCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAgreementRelationCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAgreementRelationCommand" + } } - }, + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/AgreementRelation/GetAgreementsForRelation": { + "get": { + "tags": [ + "AgreementRelation" + ], + "parameters": [ { - "name": "date", + "name": "query", "in": "query", "schema": { - "type": "string", - "nullable": true + "type": "string" } } ], @@ -143,17 +184,26 @@ "content": { "text/plain": { "schema": { - "$ref": "#/components/schemas/Product" + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementsForRelationResponse" + } } }, "application/json": { "schema": { - "$ref": "#/components/schemas/Product" + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementsForRelationResponse" + } } }, "text/json": { "schema": { - "$ref": "#/components/schemas/Product" + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementsForRelationResponse" + } } } } @@ -161,39 +211,43 @@ } } }, - "/api/v1/Product/GetById/{id}": { - "get": { + "/api/v1/AgreementSearchReport/DownloadClientAgreementSearchReport": { + "post": { "tags": [ - "Product" + "AgreementSearchReport" ], - "parameters": [ - { - "name": "id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid" + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementSearchReportQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementSearchReportQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementSearchReportQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementSearchReportQuery" + } } } - ], + }, "responses": { "200": { "description": "Success", "content": { - "text/plain": { - "schema": { - "$ref": "#/components/schemas/Product" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/Product" - } - }, - "text/json": { + "application/octet-stream": { "schema": { - "$ref": "#/components/schemas/Product" + "type": "string", + "format": "binary" } } } @@ -201,26 +255,31 @@ } } }, - "/api/v1/Category/AddCategory": { + "/api/v1/AgreementSearchReport/DownloadSupplierAgreementSearchReport": { "post": { "tags": [ - "Category" + "AgreementSearchReport" ], "requestBody": { "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementSearchReportQuery" + } + }, "application/json": { "schema": { - "$ref": "#/components/schemas/Category" + "$ref": "#/components/schemas/SupplierAgreementSearchReportQuery" } }, "text/json": { "schema": { - "$ref": "#/components/schemas/Category" + "$ref": "#/components/schemas/SupplierAgreementSearchReportQuery" } }, "application/*+json": { "schema": { - "$ref": "#/components/schemas/Category" + "$ref": "#/components/schemas/SupplierAgreementSearchReportQuery" } } } @@ -229,22 +288,10 @@ "200": { "description": "Success", "content": { - "text/plain": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "text/json": { + "application/octet-stream": { "schema": { "type": "string", - "format": "uuid" + "format": "binary" } } } @@ -252,11 +299,47 @@ } } }, - "/Product/GetProducts": { + "/Authentication/signout": { "get": { "tags": [ - "Product" + "Authentication" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Client/GetClientList": { + "post": { + "tags": [ + "Client" ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientsQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientsQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientsQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientsQuery" + } + } + } + }, "responses": { "200": { "description": "Success", @@ -265,7 +348,7 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/Product" + "$ref": "#/components/schemas/GetClientsResponse" } } }, @@ -273,7 +356,7 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/Product" + "$ref": "#/components/schemas/GetClientsResponse" } } }, @@ -281,7 +364,7 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/Product" + "$ref": "#/components/schemas/GetClientsResponse" } } } @@ -290,37 +373,161 @@ } } }, - "/api/v1/Product": { - "get": { + "/api/v1/ClientAgreementSearch/Search": { + "post": { "tags": [ - "Product" + "ClientAgreementSearch" ], - "responses": { - "200": { - "description": "Success", - "content": { + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ClientContractSearchQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractSearchQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractSearchQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ClientContractSearchQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { "text/plain": { "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } + "$ref": "#/components/schemas/ClientContractSearchResponse" } }, "application/json": { "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } + "$ref": "#/components/schemas/ClientContractSearchResponse" } }, "text/json": { "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } + "$ref": "#/components/schemas/ClientContractSearchResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientAgreementSearch/GetFilteredTasksCounters": { + "post": { + "tags": [ + "ClientAgreementSearch" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientFilteredTasksCountersQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientFilteredTasksCountersQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientFilteredTasksCountersQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientFilteredTasksCountersQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/FilteredTasksCounterResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/FilteredTasksCounterResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/FilteredTasksCounterResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/Create": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentFrameworkDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentFrameworkDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentFrameworkDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentFrameworkDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" } } } @@ -328,10 +535,20 @@ } } }, - "/Product/Product": { + "/api/v1/ClientContractAmendmentFrameworkDependent/GetEditHeader": { "get": { "tags": [ - "Product" + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } ], "responses": { "200": { @@ -339,26 +556,17 @@ "content": { "text/plain": { "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" } }, "application/json": { "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" } }, "text/json": { "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" } } } @@ -366,18 +574,18 @@ } } }, - "/Product/SearchProducts": { + "/api/v1/ClientContractAmendmentFrameworkDependent/GetEditMainInfo": { "get": { "tags": [ - "Product" + "ClientContractAmendmentFrameworkDependent" ], "parameters": [ { - "name": "name", + "name": "id", "in": "query", "schema": { "type": "string", - "nullable": true + "format": "uuid" } } ], @@ -387,26 +595,17 @@ "content": { "text/plain": { "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkMainInfoResponse" } }, "application/json": { "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkMainInfoResponse" } }, "text/json": { "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Product" - } + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkMainInfoResponse" } } } @@ -414,10 +613,10 @@ } } }, - "/Product/DownloadAttachment": { - "post": { + "/api/v1/ClientContractAmendmentFrameworkDependent/GetParentInfo": { + "get": { "tags": [ - "Product" + "ClientContractAmendmentFrameworkDependent" ], "parameters": [ { @@ -429,26 +628,55 @@ } } ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentParentInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentParentInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentParentInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/Save": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], "requestBody": { "content": { "application/json-patch+json": { "schema": { - "$ref": "#/components/schemas/ProductIdentityDTO" + "$ref": "#/components/schemas/SaveClientContractAmendmentFrameworkDependentCommand" } }, "application/json": { "schema": { - "$ref": "#/components/schemas/ProductIdentityDTO" + "$ref": "#/components/schemas/SaveClientContractAmendmentFrameworkDependentCommand" } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProductIdentityDTO" + "$ref": "#/components/schemas/SaveClientContractAmendmentFrameworkDependentCommand" } }, "application/*+json": { "schema": { - "$ref": "#/components/schemas/ProductIdentityDTO" + "$ref": "#/components/schemas/SaveClientContractAmendmentFrameworkDependentCommand" } } } @@ -457,10 +685,22 @@ "200": { "description": "Success", "content": { - "application/octet-stream": { + "text/plain": { "schema": { - "type": "string", - "format": "binary" + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" } } } @@ -468,18 +708,18 @@ } } }, - "/api/v1/Product/GetProductsByStatus/{status}": { + "/api/v1/ClientContractAmendmentFrameworkDependent/GetLabels": { "get": { "tags": [ - "Product" + "ClientContractAmendmentFrameworkDependent" ], "parameters": [ { - "name": "status", - "in": "path", - "required": true, + "name": "agreementId", + "in": "query", "schema": { - "$ref": "#/components/schemas/ProductStatus" + "type": "string", + "format": "uuid" } } ], @@ -491,7 +731,7 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/Product" + "$ref": "#/components/schemas/AgreementLabelType" } } }, @@ -499,7 +739,7 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/Product" + "$ref": "#/components/schemas/AgreementLabelType" } } }, @@ -507,7 +747,7 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/Product" + "$ref": "#/components/schemas/AgreementLabelType" } } } @@ -516,19 +756,38 @@ } } }, - "/Product/Download": { + "/api/v1/ClientContractAmendmentFrameworkDependent/GetEditProcessing": { "get": { "tags": [ - "Product" + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } ], "responses": { "200": { "description": "Success", "content": { - "application/octet-stream": { + "text/plain": { "schema": { - "type": "string", - "format": "binary" + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkProcessingResponse" } } } @@ -536,258 +795,73354 @@ } } }, - "/api/v1/Category/Upload": { - "post": { + "/api/v1/ClientContractAmendmentFrameworkDependent/GetEditRevenueRecognition": { + "get": { "tags": [ - "Category" + "ClientContractAmendmentFrameworkDependent" ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "ContentType": { - "type": "string", - "nullable": true - }, - "ContentDisposition": { - "type": "string", - "nullable": true - }, - "Headers": { - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - }, - "nullable": true - }, - "Length": { - "type": "integer", - "format": "int64" - }, - "Name": { - "type": "string", - "nullable": true - }, - "FileName": { - "type": "string", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - } + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkRevenueRecognitionResponse" } }, - "encoding": { - "ContentType": { - "style": "form" - }, - "ContentDisposition": { - "style": "form" - }, - "Headers": { - "style": "form" - }, - "Length": { - "style": "form" - }, - "Name": { - "style": "form" - }, - "FileName": { - "style": "form" - }, - "name": { - "style": "form" + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkRevenueRecognitionResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkRevenueRecognitionResponse" } } } } - }, + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetEditContent": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], "responses": { "200": { "description": "Success", "content": { "text/plain": { "schema": { - "type": "string", - "format": "uuid" + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentContentResponse" } }, "application/json": { "schema": { - "type": "string", - "format": "uuid" + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentContentResponse" } }, "text/json": { "schema": { - "type": "string", - "format": "uuid" + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentContentResponse" } } } } } } - } - }, - "components": { - "schemas": { - "Category": { + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetEditFinancial": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetOpportunities": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetVats": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/AgreementAttachmentOperation": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetAttachments": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetChatMessages": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetChatMessage": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/AddChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentFrameworkDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentFrameworkDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentFrameworkDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentFrameworkDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/UpdateChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetRelations": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/ExecuteTask": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkDependentTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkDependentTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkDependentTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkDependentTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetTaskDetail": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetTaskActionAvailability": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/DownloadAttachment": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/DownloadAttachmentVersion": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/DownloadAllAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/RemoveAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/UnlockAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentFrameworkDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentFrameworkDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentFrameworkDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentFrameworkDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetHighlightAttachments": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/AddAttachments": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkDependentAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkDependentAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkDependentAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkDependentAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/UpdateAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/RecalculateTask": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentFrameworkDependentTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentFrameworkDependentTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentFrameworkDependentTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentFrameworkDependentTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/AssignToMe": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetApprovalListComment": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetApprovalListAvailability": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetApprovalList": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetStatusChain": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetStatusHistory": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetHistoricStagePerformers": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetHighlightFields": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetWritableFieldsMeta": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/UpdateOpportunities": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentOpportunitiesCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentOpportunitiesCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentOpportunitiesCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkDependentOpportunitiesCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/RemoveOpportunity": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkDependentOpportunityCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkDependentOpportunityCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkDependentOpportunityCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkDependentOpportunityCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetSpecialClauses": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetTaskAndActions": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentFrameworkWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentFrameworkWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentFrameworkWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/ExecuteAction": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkDependentActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkDependentActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkDependentActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkDependentActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/CanCreate": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "clientContractFrameworkId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetChanges": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/NeedRestartWorkflow": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/CanAddAdditionalApprover": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/AddAdditionalApprover": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentFrameworkDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentFrameworkDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentFrameworkDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentFrameworkDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetChangedFields": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkFields" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkFields" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkFields" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetSpecialClausesViaAi": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentSpecialClausesViaAiQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentSpecialClausesViaAiQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentSpecialClausesViaAiQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkDependentSpecialClausesViaAiQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/CanAssignTo": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/AssignTo": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentFrameworkDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentFrameworkDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentFrameworkDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentFrameworkDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetParentLink": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetTerminationInfo": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/SendAttachmentToESigning": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentFrameworkDependentAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentFrameworkDependentAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentFrameworkDependentAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentFrameworkDependentAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkDependent/GetESigningParameters": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/Create": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentFrameworkStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetEditHeader": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetEditMainInfo": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetParentInfo": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneParentInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneParentInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneParentInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/Save": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentFrameworkStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetLabels": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetEditProcessing": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetEditRevenueRecognition": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkRevenueRecognitionResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkRevenueRecognitionResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkRevenueRecognitionResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetEditContent": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetEditFinancial": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetOpportunities": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetVats": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/AgreementAttachmentOperation": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetAttachments": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetChatMessages": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetChatMessage": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/AddChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/UpdateChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetRelations": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/ExecuteTask": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkStandaloneTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkStandaloneTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkStandaloneTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkStandaloneTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetTaskDetail": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetTaskActionAvailability": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/DownloadAttachment": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/DownloadAttachmentVersion": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/DownloadAllAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/RemoveAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/UnlockAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetHighlightAttachments": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/AddAttachments": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkStandaloneAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkStandaloneAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkStandaloneAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentFrameworkStandaloneAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/UpdateAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/RecalculateTask": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentFrameworkStandaloneTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentFrameworkStandaloneTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentFrameworkStandaloneTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentFrameworkStandaloneTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/AssignToMe": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetApprovalListComment": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetApprovalListAvailability": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetApprovalList": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetStatusChain": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetStatusHistory": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetHistoricStagePerformers": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetHighlightFields": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetWritableFieldsMeta": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/UpdateOpportunities": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneOpportunitiesCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneOpportunitiesCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneOpportunitiesCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentFrameworkStandaloneOpportunitiesCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/RemoveOpportunity": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkStandaloneOpportunityCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkStandaloneOpportunityCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkStandaloneOpportunityCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentFrameworkStandaloneOpportunityCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetSpecialClauses": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetTaskAndActions": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentFrameworkWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentFrameworkWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentFrameworkWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/ExecuteAction": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkStandaloneActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkStandaloneActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkStandaloneActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentFrameworkStandaloneActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/CanCreate": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "clientContractFrameworkId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetChanges": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/NeedRestartWorkflow": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/CanAddAdditionalApprover": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/AddAdditionalApprover": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentFrameworkStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetChangedFields": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkFields" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkFields" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkFields" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetSpecialClausesViaAi": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneSpecialClausesViaAiQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneSpecialClausesViaAiQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneSpecialClausesViaAiQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkStandaloneSpecialClausesViaAiQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentFrameworkSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/CanAssignTo": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/AssignTo": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentFrameworkStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentFrameworkStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetParentLink": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetTerminationInfo": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/SendAttachmentToESigning": { + "post": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentFrameworkStandaloneAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentFrameworkStandaloneAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentFrameworkStandaloneAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentFrameworkStandaloneAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentFrameworkStandalone/GetESigningParameters": { + "get": { + "tags": [ + "ClientContractAmendmentFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/Create": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetEditHeader": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetEditMainInfo": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetParentInfo": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialParentInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialParentInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialParentInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/Save": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetLabels": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetEditProcessing": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetEditContent": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/AgreementAttachmentOperation": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetAttachments": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetChatMessages": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetChatMessage": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/AddChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentNonCommercialChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentNonCommercialChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentNonCommercialChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentNonCommercialChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/UpdateChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentNonCommercialChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentNonCommercialChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetRelations": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/ExecuteTask": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentNonCommercialTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentNonCommercialTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentNonCommercialTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentNonCommercialTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetTaskDetail": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetTaskActionAvailability": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/DownloadAttachment": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/DownloadAttachmentVersion": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/DownloadAllAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/RemoveAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentNonCommercialAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentNonCommercialAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/UnlockAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentNonCommercialAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentNonCommercialAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetHighlightAttachments": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/AddAttachments": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentNonCommercialAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentNonCommercialAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentNonCommercialAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentNonCommercialAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/UpdateAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentNonCommercialAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentNonCommercialAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/RecalculateTask": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentNonCommercialTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentNonCommercialTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentNonCommercialTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentNonCommercialTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/AssignToMe": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetApprovalListComment": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetApprovalListAvailability": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetApprovalList": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetStatusChain": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetStatusHistory": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetHistoricStagePerformers": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetHighlightFields": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetWritableFieldsMeta": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentNonCommercialWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetTaskAndActions": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentNonCommercialWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentNonCommercialWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentNonCommercialWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/ExecuteAction": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentNonCommercialActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentNonCommercialActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentNonCommercialActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentNonCommercialActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/CanCreate": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "clientContractProjectId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetChanges": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/NeedRestartWorkflow": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/CanAddAdditionalApprover": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/AddAdditionalApprover": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetChangedFields": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentNonCommercialFields" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentNonCommercialFields" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentNonCommercialFields" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/CanAssignTo": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/AssignTo": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetParentLink": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetTerminationInfo": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/SendAttachmentToESigning": { + "post": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentNonCommercialAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentNonCommercialAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentNonCommercialAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentNonCommercialAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentNonCommercial/GetESigningParameters": { + "get": { + "tags": [ + "ClientContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/Create": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentProjectDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentProjectDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentProjectDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentProjectDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetEditHeader": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetEditMainInfo": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetParentInfo": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentParentInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentParentInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentParentInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/Save": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentProjectDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentProjectDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentProjectDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentProjectDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetLabels": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetEditProcessing": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetEditRevenueRecognition": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectRevenueRecognitionResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectRevenueRecognitionResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectRevenueRecognitionResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetEditContent": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetEditFinancial": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetOpportunities": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetVats": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/AgreementAttachmentOperation": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetAttachments": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetChatMessages": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetChatMessage": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/AddChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentProjectDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentProjectDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentProjectDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentProjectDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/UpdateChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetRelations": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/ExecuteTask": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectDependentTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectDependentTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectDependentTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectDependentTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetTaskDetail": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetTaskActionAvailability": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/DownloadAttachment": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/DownloadAttachmentVersion": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/DownloadAllAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/RemoveAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/UnlockAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentProjectDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentProjectDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentProjectDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentProjectDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetHighlightAttachments": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/AddAttachments": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectDependentAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectDependentAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectDependentAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectDependentAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/UpdateAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/RecalculateTask": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentProjectDependentTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentProjectDependentTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentProjectDependentTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentProjectDependentTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/AssignToMe": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetApprovalListComment": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetApprovalListAvailability": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetApprovalList": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetStatusChain": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetStatusHistory": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetHistoricStagePerformers": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetHighlightFields": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetWritableFieldsMeta": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/UpdateOpportunities": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentOpportunitiesCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentOpportunitiesCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentOpportunitiesCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectDependentOpportunitiesCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/RemoveOpportunity": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectDependentOpportunityCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectDependentOpportunityCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectDependentOpportunityCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectDependentOpportunityCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetParentsForCreation": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "searchValue", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetSpecialClauses": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetTaskAndActions": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentProjectWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentProjectWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentProjectWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/ExecuteAction": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectDependentActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectDependentActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectDependentActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectDependentActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/CanCreate": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "clientContractProjectId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetChanges": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/NeedRestartWorkflow": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/CanAddAdditionalApprover": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/AddAdditionalApprover": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentProjectDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentProjectDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentProjectDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentProjectDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetChangedFields": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectFields" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectFields" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectFields" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/CreateCopy": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractAmendmentProjectDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractAmendmentProjectDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractAmendmentProjectDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractAmendmentProjectDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/CanCopy": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetSpecialClausesViaAi": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentSpecialClausesViaAiQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentSpecialClausesViaAiQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentSpecialClausesViaAiQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentSpecialClausesViaAiQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectDependentSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/CanAssignTo": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/AssignTo": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentProjectDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentProjectDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentProjectDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentProjectDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetParentLink": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetTerminationInfo": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/SendAttachmentToESigning": { + "post": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentProjectDependentAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentProjectDependentAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentProjectDependentAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentProjectDependentAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectDependent/GetESigningParameters": { + "get": { + "tags": [ + "ClientContractAmendmentProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/Create": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentProjectStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentProjectStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentProjectStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractAmendmentProjectStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetEditHeader": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetEditMainInfo": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetParentInfo": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneParentInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneParentInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneParentInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/Save": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentProjectStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentProjectStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentProjectStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractAmendmentProjectStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetLabels": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetEditProcessing": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetEditRevenueRecognition": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectRevenueRecognitionResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectRevenueRecognitionResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectRevenueRecognitionResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetEditContent": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetEditFinancial": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetOpportunities": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetVats": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/AgreementAttachmentOperation": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetAttachments": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetChatMessages": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetChatMessage": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/AddChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentProjectStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentProjectStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentProjectStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractAmendmentProjectStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/UpdateChatMessage": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetRelations": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/ExecuteTask": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectStandaloneTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectStandaloneTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectStandaloneTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectStandaloneTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetTaskDetail": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetTaskActionAvailability": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/DownloadAttachment": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/DownloadAttachmentVersion": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/DownloadAllAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/RemoveAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/UnlockAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentProjectStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentProjectStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentProjectStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractAmendmentProjectStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetHighlightAttachments": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/AddAttachments": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectStandaloneAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectStandaloneAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectStandaloneAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractAmendmentProjectStandaloneAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/UpdateAttachment": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/RecalculateTask": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentProjectStandaloneTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentProjectStandaloneTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentProjectStandaloneTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractAmendmentProjectStandaloneTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/AssignToMe": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetApprovalListComment": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetApprovalListAvailability": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetApprovalList": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetStatusChain": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetStatusHistory": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetHistoricStagePerformers": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetHighlightFields": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetWritableFieldsMeta": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/UpdateOpportunities": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneOpportunitiesCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneOpportunitiesCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneOpportunitiesCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractAmendmentProjectStandaloneOpportunitiesCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/RemoveOpportunity": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectStandaloneOpportunityCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectStandaloneOpportunityCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectStandaloneOpportunityCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractAmendmentProjectStandaloneOpportunityCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetSpecialClauses": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetTaskAndActions": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentProjectWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentProjectWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractAmendmentProjectWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/ExecuteAction": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectStandaloneActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectStandaloneActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectStandaloneActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractAmendmentProjectStandaloneActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetParentsForCreation": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "searchValue", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/CanCreate": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "clientContractProjectId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetChanges": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AmendmentChangesDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/NeedRestartWorkflow": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/CanAddAdditionalApprover": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/AddAdditionalApprover": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentProjectStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentProjectStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentProjectStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractAmendmentProjectStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetChangedFields": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectFields" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectFields" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectFields" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/CreateCopy": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractAmendmentProjectStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractAmendmentProjectStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractAmendmentProjectStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractAmendmentProjectStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/CanCopy": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetSpecialClausesViaAi": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneSpecialClausesViaAiQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneSpecialClausesViaAiQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneSpecialClausesViaAiQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneSpecialClausesViaAiQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractAmendmentProjectStandaloneSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/CanAssignTo": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/AssignTo": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentProjectStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentProjectStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentProjectStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractAmendmentProjectStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetParentLink": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ParentDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetTerminationInfo": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/SendAttachmentToESigning": { + "post": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentProjectStandaloneAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentProjectStandaloneAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentProjectStandaloneAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractAmendmentProjectStandaloneAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractAmendmentProjectStandalone/GetESigningParameters": { + "get": { + "tags": [ + "ClientContractAmendmentProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/Create": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractFrameworkDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractFrameworkDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractFrameworkDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractFrameworkDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetEditHeader": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetEditMainInfo": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetEditMainInfoCurrentState": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/Save": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractFrameworkDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractFrameworkDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractFrameworkDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractFrameworkDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetLabels": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetEditProcessing": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetEditRevenueRecognition": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkRevenueRecognitionResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkRevenueRecognitionResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkRevenueRecognitionResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetEditContent": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetEditContentCurrentState": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetEditFinancial": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetEditFinancialCurrentState": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetOpportunities": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetVats": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetVatsCurrentState": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/AgreementAttachmentOperation": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetAttachments": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetChatMessages": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetChatMessage": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/AddChatMessage": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractFrameworkDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractFrameworkDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractFrameworkDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractFrameworkDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/UpdateChatMessage": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetRelations": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/ExecuteTask": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkDependentTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkDependentTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkDependentTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkDependentTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetTaskDetail": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetTaskActionAvailability": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/DownloadAttachment": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/DownloadAttachmentVersion": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/DownloadAllAttachment": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/RemoveAttachment": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/UnlockAttachment": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractFrameworkDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractFrameworkDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractFrameworkDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractFrameworkDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetHighlightAttachments": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/AddAttachments": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkDependentAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkDependentAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkDependentAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkDependentAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/UpdateAttachment": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/RecalculateTask": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractFrameworkDependentTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractFrameworkDependentTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractFrameworkDependentTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractFrameworkDependentTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/AssignToMe": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetApprovalListComment": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetApprovalListAvailability": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetApprovalList": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetStatusChain": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetStatusHistory": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetHistoricStagePerformers": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetHighlightFields": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetWritableFieldsMeta": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/UpdateOpportunities": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentOpportunitiesCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentOpportunitiesCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentOpportunitiesCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkDependentOpportunitiesCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/RemoveOpportunity": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkDependentOpportunityCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkDependentOpportunityCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkDependentOpportunityCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkDependentOpportunityCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetParentsForCreation": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "searchValue", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetSpecialClauses": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetSpecialClausesCurrentState": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetChildrenCount": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetTaskAndActions": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractFrameworkWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractFrameworkWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractFrameworkWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/ExecuteAction": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkDependentActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkDependentActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkDependentActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkDependentActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetChildren": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/NeedRestartWorkflow": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/CanAddAdditionalApprover": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/AddAdditionalApprover": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractFrameworkDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractFrameworkDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractFrameworkDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractFrameworkDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetSummaryChangedFields": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentSummaryChangedFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentSummaryChangedFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentSummaryChangedFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetSpecialClausesViaAi": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentSpecialClausesViaAiQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentSpecialClausesViaAiQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentSpecialClausesViaAiQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkDependentSpecialClausesViaAiQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/CanAssignTo": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/AssignTo": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractFrameworkDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractFrameworkDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractFrameworkDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractFrameworkDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetTerminationInfo": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/SendAttachmentToESigning": { + "post": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractFrameworkDependentAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractFrameworkDependentAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractFrameworkDependentAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractFrameworkDependentAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkDependent/GetESigningParameters": { + "get": { + "tags": [ + "ClientContractFrameworkDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/Create": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractFrameworkStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractFrameworkStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractFrameworkStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractFrameworkStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetEditHeader": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetEditMainInfo": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetEditMainInfoCurrentState": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/Save": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractFrameworkStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractFrameworkStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractFrameworkStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractFrameworkStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetLabels": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetEditProcessing": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetEditRevenueRecognition": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkRevenueRecognitionResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkRevenueRecognitionResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkRevenueRecognitionResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetEditContent": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetEditContentCurrentState": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetEditFinancial": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetEditFinancialCurrentState": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetOpportunities": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetVats": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetVatsCurrentState": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractFrameworkVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/AgreementAttachmentOperation": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetAttachments": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetChatMessages": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetChatMessage": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/AddChatMessage": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractFrameworkStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractFrameworkStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractFrameworkStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractFrameworkStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/UpdateChatMessage": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetRelations": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/ExecuteTask": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkStandaloneTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkStandaloneTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkStandaloneTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkStandaloneTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetTaskDetail": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetTaskActionAvailability": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/DownloadAttachment": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/DownloadAttachmentVersion": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/DownloadAllAttachment": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/RemoveAttachment": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/UnlockAttachment": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractFrameworkStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractFrameworkStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractFrameworkStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractFrameworkStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetHighlightAttachments": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/AddAttachments": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkStandaloneAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkStandaloneAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkStandaloneAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractFrameworkStandaloneAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/UpdateAttachment": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/RecalculateTask": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractFrameworkStandaloneTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractFrameworkStandaloneTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractFrameworkStandaloneTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractFrameworkStandaloneTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/AssignToMe": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetApprovalListComment": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetApprovalListAvailability": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetApprovalList": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetStatusChain": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetStatusHistory": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetHistoricStagePerformers": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetHighlightFields": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetWritableFieldsMeta": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/UpdateOpportunities": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneOpportunitiesCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneOpportunitiesCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneOpportunitiesCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractFrameworkStandaloneOpportunitiesCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/RemoveOpportunity": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkStandaloneOpportunityCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkStandaloneOpportunityCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkStandaloneOpportunityCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractFrameworkStandaloneOpportunityCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetParentsForCreation": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "searchValue", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetSpecialClauses": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetSpecialClausesCurrentState": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetChildrenCount": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetTaskAndActions": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractFrameworkWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractFrameworkWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractFrameworkWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/ExecuteAction": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkStandaloneActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkStandaloneActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkStandaloneActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractFrameworkStandaloneActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetChildren": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/NeedRestartWorkflow": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/CanAddAdditionalApprover": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/AddAdditionalApprover": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractFrameworkStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractFrameworkStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractFrameworkStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractFrameworkStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetSummaryChangedFields": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneSummaryChangedFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneSummaryChangedFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneSummaryChangedFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetSpecialClausesViaAi": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneSpecialClausesViaAiQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneSpecialClausesViaAiQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneSpecialClausesViaAiQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkStandaloneSpecialClausesViaAiQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/CanAssignTo": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/AssignTo": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractFrameworkStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractFrameworkStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractFrameworkStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractFrameworkStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetTerminationInfo": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/SendAttachmentToESigning": { + "post": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractFrameworkStandaloneAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractFrameworkStandaloneAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractFrameworkStandaloneAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractFrameworkStandaloneAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractFrameworkStandalone/GetESigningParameters": { + "get": { + "tags": [ + "ClientContractFrameworkStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractHierarchy/GetMegaAgreementsByClientLegalEntity": { + "get": { + "tags": [ + "ClientContractHierarchy" + ], + "parameters": [ + { + "name": "clientId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetMegaAgreementsByClientResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetMegaAgreementsByClientResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetMegaAgreementsByClientResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractHierarchy/GetMegaChildrenByParentAgreement": { + "get": { + "tags": [ + "ClientContractHierarchy" + ], + "parameters": [ + { + "name": "parentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetMegaChildrenForParentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetMegaChildrenForParentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetMegaChildrenForParentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/Create": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractProjectDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractProjectDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractProjectDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractProjectDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetEditHeader": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetEditMainInfo": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetEditMainInfoCurrentState": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/Save": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractProjectDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractProjectDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractProjectDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractProjectDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetLabels": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetEditProcessing": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetEditContent": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetEditContentCurrentState": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetEditFinancial": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetEditFinancialCurrentState": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetOpportunities": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetVats": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetVatsCurrentState": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/AgreementAttachmentOperation": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetAttachments": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetChatMessages": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetChatMessage": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/AddChatMessage": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractProjectDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractProjectDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractProjectDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractProjectDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/UpdateChatMessage": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetRelations": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/ExecuteTask": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectDependentTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectDependentTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectDependentTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectDependentTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetTaskDetail": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetTaskActionAvailability": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/DownloadAttachment": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/DownloadAttachmentVersion": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/DownloadAllAttachment": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/RemoveAttachment": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/UnlockAttachment": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractProjectDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractProjectDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractProjectDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractProjectDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetHighlightAttachments": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/AddAttachments": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectDependentAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectDependentAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectDependentAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectDependentAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/UpdateAttachment": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/RecalculateTask": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractProjectDependentTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractProjectDependentTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractProjectDependentTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractProjectDependentTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/AssignToMe": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetApprovalListComment": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetApprovalListAvailability": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetApprovalList": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetStatusChain": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetStatusHistory": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetHistoricStagePerformers": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetHighlightFields": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetWritableFieldsMeta": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/UpdateOpportunities": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentOpportunitiesCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentOpportunitiesCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentOpportunitiesCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectDependentOpportunitiesCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/RemoveOpportunity": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectDependentOpportunityCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectDependentOpportunityCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectDependentOpportunityCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectDependentOpportunityCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetParentsForCreation": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "searchValue", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetSpecialClauses": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetSpecialClausesCurrentState": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetTaskAndActions": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractProjectWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractProjectWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractProjectWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/ExecuteAction": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectDependentActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectDependentActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectDependentActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectDependentActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetChildren": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetChildrenCount": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/CreateCopy": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractProjectDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractProjectDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractProjectDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractProjectDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/CanCopy": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/NeedRestartWorkflow": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/CanAddAdditionalApprover": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/AddAdditionalApprover": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractProjectDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractProjectDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractProjectDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractProjectDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetSummaryChangedFields": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSummaryChangedFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSummaryChangedFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSummaryChangedFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetSpecialClausesViaAi": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesViaAiQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesViaAiQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesViaAiQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesViaAiQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectDependentSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/CanAssignTo": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/AssignTo": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractProjectDependentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractProjectDependentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractProjectDependentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractProjectDependentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetTerminationInfo": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectDependent/SendAttachmentToESigning": { + "post": { + "tags": [ + "ClientContractProjectDependent" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractProjectDependentAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractProjectDependentAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractProjectDependentAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractProjectDependentAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectDependent/GetESigningParameters": { + "get": { + "tags": [ + "ClientContractProjectDependent" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/Create": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractProjectStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractProjectStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractProjectStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientContractProjectStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetEditHeader": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientContractHeaderWithParentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetEditMainInfo": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetEditMainInfoCurrentState": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/Save": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractProjectStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractProjectStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractProjectStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientContractProjectStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetLabels": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetEditProcessing": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetEditContent": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetEditContentCurrentState": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetEditFinancial": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetEditFinancialCurrentState": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetOpportunities": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OpportunityDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetVats": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetVatsCurrentState": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientContractProjectVatsResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/AgreementAttachmentOperation": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetAttachments": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetChatMessages": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetChatMessage": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/AddChatMessage": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractProjectStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractProjectStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractProjectStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientContractProjectStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/UpdateChatMessage": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetRelations": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/ExecuteTask": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectStandaloneTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectStandaloneTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectStandaloneTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectStandaloneTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetTaskDetail": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetTaskActionAvailability": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/DownloadAttachment": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/DownloadAttachmentVersion": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/DownloadAllAttachment": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/RemoveAttachment": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/UnlockAttachment": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractProjectStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractProjectStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractProjectStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientContractProjectStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetHighlightAttachments": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/AddAttachments": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectStandaloneAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectStandaloneAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectStandaloneAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientContractProjectStandaloneAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/UpdateAttachment": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/RecalculateTask": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractProjectStandaloneTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractProjectStandaloneTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractProjectStandaloneTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientContractProjectStandaloneTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/AssignToMe": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetApprovalListComment": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetApprovalListAvailability": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetApprovalList": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetStatusChain": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetStatusHistory": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetHistoricStagePerformers": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetHighlightFields": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetWritableFieldsMeta": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/UpdateOpportunities": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneOpportunitiesCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneOpportunitiesCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneOpportunitiesCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientContractProjectStandaloneOpportunitiesCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/RemoveOpportunity": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectStandaloneOpportunityCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectStandaloneOpportunityCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectStandaloneOpportunityCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientContractProjectStandaloneOpportunityCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetSpecialClauses": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetSpecialClausesCurrentState": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetChildrenCount": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetTaskAndActions": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractProjectWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractProjectWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientContractProjectWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/ExecuteAction": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectStandaloneActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectStandaloneActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectStandaloneActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientContractProjectStandaloneActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetParentsForCreation": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "searchValue", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetChildren": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/CreateCopy": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractProjectStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractProjectStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractProjectStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CopyClientContractProjectStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/CanCopy": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/NeedRestartWorkflow": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/CanAddAdditionalApprover": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/AddAdditionalApprover": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractProjectStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractProjectStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractProjectStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientContractProjectStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetSummaryChangedFields": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSummaryChangedFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSummaryChangedFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSummaryChangedFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetSpecialClausesViaAi": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesViaAiQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesViaAiQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesViaAiQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesViaAiQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientContractProjectStandaloneSpecialClausesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/CanAssignTo": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/AssignTo": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractProjectStandaloneCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractProjectStandaloneCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractProjectStandaloneCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientContractProjectStandaloneCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetTerminationInfo": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + } + } + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/SendAttachmentToESigning": { + "post": { + "tags": [ + "ClientContractProjectStandalone" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractProjectStandaloneAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractProjectStandaloneAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractProjectStandaloneAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendClientContractProjectStandaloneAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientContractProjectStandalone/GetESigningParameters": { + "get": { + "tags": [ + "ClientContractProjectStandalone" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/ClientLegalEntity/GetClientLegalEntityList": { + "post": { + "tags": [ + "ClientLegalEntity" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientLegalEntityListQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientLegalEntityListQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientLegalEntityListQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientLegalEntityListQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientLegalEntityListResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientLegalEntityListResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientLegalEntityListResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientLegalEntity/GetClientLegalEntitiesForFilter": { + "post": { + "tags": [ + "ClientLegalEntity" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetClientLegalEntitiesQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientLegalEntitiesQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientLegalEntitiesQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetClientLegalEntitiesQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientLegalEntitiesResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientLegalEntitiesResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetClientLegalEntitiesResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/RemoveAttachment": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientNonCommercialDocumentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientNonCommercialDocumentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientNonCommercialDocumentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientNonCommercialDocumentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/UpdateAttachment": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientNonCommercialDocumentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientNonCommercialDocumentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientNonCommercialDocumentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientNonCommercialDocumentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/UnlockAttachment": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientNonCommercialDocumentAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientNonCommercialDocumentAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientNonCommercialDocumentAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockClientNonCommercialDocumentAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/AgreementAttachmentOperation": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetChildrenCount": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetAttachments": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/DownloadAttachment": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/DownloadAttachmentVersion": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/DownloadAllAttachment": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetMainInfo": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetEditHeader": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentHeaderResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentHeaderResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentHeaderResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetEditMainInfo": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetEditMainInfoCurrentState": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetEditProcessing": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetEditContent": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetEditContentCurrentState": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditClientNonCommercialDocumentContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetRelations": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetHistoricStagePerformers": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetStatusChain": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ClientAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetStatusHistory": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetTaskDetail": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/Create": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/ExecuteTask": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientNonCommercialDocumentTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientNonCommercialDocumentTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientNonCommercialDocumentTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientNonCommercialDocumentTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/Save": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientNonCommercialDocumentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientNonCommercialDocumentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientNonCommercialDocumentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientNonCommercialDocumentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetWritableFieldsMeta": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetApprovalList": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetApprovalListComment": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetApprovalListAvailability": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetHighlightFields": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetHighlightAttachments": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetChatMessages": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/AddChatMessage": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientNonCommercialDocumentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientNonCommercialDocumentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientNonCommercialDocumentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientNonCommercialDocumentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientNonCommercialDocumentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientNonCommercialDocumentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientNonCommercialDocumentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveClientNonCommercialDocumentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetChatMessage": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/UpdateChatMessage": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientNonCommercialDocumentChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientNonCommercialDocumentChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientNonCommercialDocumentChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateClientNonCommercialDocumentChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/RecalculateTask": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientNonCommercialDocumentTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientNonCommercialDocumentTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientNonCommercialDocumentTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateClientNonCommercialDocumentTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetTaskActionAvailability": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/AddAttachments": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddClientNonCommercialDocumentAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddClientNonCommercialDocumentAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddClientNonCommercialDocumentAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddClientNonCommercialDocumentAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetLabels": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/AssignToMe": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetTaskAndActions": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientNonCommercialDocumentWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientNonCommercialDocumentWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseClientNonCommercialDocumentWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/ExecuteAction": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientNonCommercialDocumentActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientNonCommercialDocumentActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientNonCommercialDocumentActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteClientNonCommercialDocumentActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetChildren": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetContent": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentContentResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/CreateCopy": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CopyClientNonCommercialDocumentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CopyClientNonCommercialDocumentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CopyClientNonCommercialDocumentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CopyClientNonCommercialDocumentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/CanCopy": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/NeedRestartWorkflow": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/CanAddAdditionalApprover": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/AddAdditionalApprover": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientNonCommercialDocumentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientNonCommercialDocumentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientNonCommercialDocumentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToClientNonCommercialDocumentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetSummaryChangedFields": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentSummaryChangedFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentSummaryChangedFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetClientNonCommercialDocumentSummaryChangedFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/CanAssignTo": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/AssignTo": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientNonCommercialDocumentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientNonCommercialDocumentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientNonCommercialDocumentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToClientNonCommercialDocumentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetTerminationInfo": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementTerminationInfoDto" + } + } + } + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/SendAttachmentToESigning": { + "post": { + "tags": [ + "ClientNonCommercialDocument" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendClientNonCommercialDocumentAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendClientNonCommercialDocumentAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendClientNonCommercialDocumentAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendClientNonCommercialDocumentAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/ClientNonCommercialDocument/GetESigningParameters": { + "get": { + "tags": [ + "ClientNonCommercialDocument" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/ClientTemplate/GetThumbnail": { + "get": { + "tags": [ + "ClientTemplate" + ], + "parameters": [ + { + "name": "templateId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientTemplate/GetTemplateContentPreview": { + "get": { + "tags": [ + "ClientTemplate" + ], + "parameters": [ + { + "name": "templateId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientTemplate/DownloadTemplateFile": { + "get": { + "tags": [ + "ClientTemplate" + ], + "parameters": [ + { + "name": "templateId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/ClientTemplate/GetAll": { + "get": { + "tags": [ + "ClientTemplate" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetAllClientAgreementTemplatesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetAllClientAgreementTemplatesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetAllClientAgreementTemplatesResponse" + } + } + } + } + } + } + }, + "/api/v1/ClientTemplate/Create": { + "post": { + "tags": [ + "ClientTemplate" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientAgreementTemplateCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientAgreementTemplateCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateClientAgreementTemplateCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateClientAgreementTemplateCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/ClientTemplate/Remove": { + "post": { + "tags": [ + "ClientTemplate" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientAgreementTemplateCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientAgreementTemplateCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientAgreementTemplateCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveClientAgreementTemplateCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Commodity/GetAll": { + "get": { + "tags": [ + "Commodity" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetCommoditiesResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetCommoditiesResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetCommoditiesResponse" + } + } + } + } + } + } + } + }, + "/api/v1/ContractTaskForSearch/GetForAgreements": { + "post": { + "tags": [ + "ContractTaskForSearch" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetContractTasksForSearchQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetContractTasksForSearchQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetContractTasksForSearchQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetContractTasksForSearchQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetContractTasksForSearchResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetContractTasksForSearchResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetContractTasksForSearchResponse" + } + } + } + } + } + } + }, + "/api/v1/Currency/GetAll": { + "get": { + "tags": [ + "Currency" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + } + } + } + } + } + } + } + }, + "/api/v1/Currency/GetExchangeRate": { + "get": { + "tags": [ + "Currency" + ], + "parameters": [ + { + "name": "currencyId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetCurrencyExchangeRateResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetCurrencyExchangeRateResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetCurrencyExchangeRateResponse" + } + } + } + } + } + } + }, + "/api/v1/Dashboard/GetAgreementsByLobByTwoWeeks": { + "get": { + "tags": [ + "Dashboard" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetAgreementsByLobByTwoWeeksResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetAgreementsByLobByTwoWeeksResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetAgreementsByLobByTwoWeeksResponse" + } + } + } + } + } + } + }, + "/api/v1/Dashboard/GetAgreementTypesByLob": { + "get": { + "tags": [ + "Dashboard" + ], + "parameters": [ + { + "name": "lobId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetAgreementTypesByLobResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetAgreementTypesByLobResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetAgreementTypesByLobResponse" + } + } + } + } + } + } + }, + "/api/v1/Dashboard/GetContractsByValueByTwoWeeks": { + "get": { + "tags": [ + "Dashboard" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetContractsByValueByTwoWeeksResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetContractsByValueByTwoWeeksResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetContractsByValueByTwoWeeksResponse" + } + } + } + } + } + } + }, + "/api/v1/Dashboard/GetTasksStatisticsBySlaDateByTwoWeeks": { + "get": { + "tags": [ + "Dashboard" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetTasksStatisticsBySlaDateByTwoWeeksResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetTasksStatisticsBySlaDateByTwoWeeksResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetTasksStatisticsBySlaDateByTwoWeeksResponse" + } + } + } + } + } + } + }, + "/api/v1/Dashboard/GetAgreementsByCleCountryByTwoWeeks": { + "get": { + "tags": [ + "Dashboard" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetAgreementsByCleCountryByTwoWeeksResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetAgreementsByCleCountryByTwoWeeksResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetAgreementsByCleCountryByTwoWeeksResponse" + } + } + } + } + } + } + }, + "/api/v1/EdRevenueRecognitionType/GetAll": { + "get": { + "tags": [ + "EdRevenueRecognitionType" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetEdRevenueRecognitionTypesResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetEdRevenueRecognitionTypesResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetEdRevenueRecognitionTypesResponse" + } + } + } + } + } + } + } + }, + "/api/v1/Employee/GetEmployeeList": { + "get": { + "tags": [ + "Employee" + ], + "parameters": [ + { + "name": "query", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/Employee/GetEmployeeWithPosition": { + "get": { + "tags": [ + "Employee" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/EmployeeWithPositionResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/EmployeeWithPositionResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/EmployeeWithPositionResponse" + } + } + } + } + } + } + }, + "/api/v1/Employee/GetCurrentEmployee": { + "get": { + "tags": [ + "Employee" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + }, + "/api/v1/Error": { + "post": { + "tags": [ + "Error" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { } + }, + "application/json": { + "schema": { } + }, + "text/json": { + "schema": { } + }, + "application/*+json": { + "schema": { } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/FinancialBusinessUnit/GetTree": { + "get": { + "tags": [ + "FinancialBusinessUnit" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetFinancialBusinessUnitTreeResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetFinancialBusinessUnitTreeResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetFinancialBusinessUnitTreeResponse" + } + } + } + } + } + } + } + }, + "/api/v1/FinancialBusinessUnit/GetTreeForSearch": { + "get": { + "tags": [ + "FinancialBusinessUnit" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetFinancialBusinessUnitsForSearchResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetFinancialBusinessUnitsForSearchResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetFinancialBusinessUnitsForSearchResponse" + } + } + } + } + } + } + } + }, + "/api/v1/GoverningLaw/GetSecureGoverningLawList": { + "get": { + "tags": [ + "GoverningLaw" + ], + "parameters": [ + { + "name": "query", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GoverningLawListResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GoverningLawListResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GoverningLawListResponse" + } + } + } + } + } + } + }, + "/api/v1/GoverningLaw/GetUnSecureGoverningLawList": { + "get": { + "tags": [ + "GoverningLaw" + ], + "parameters": [ + { + "name": "query", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GoverningLawListResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GoverningLawListResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GoverningLawListResponse" + } + } + } + } + } + } + }, + "/api/v1/History/GetHistory": { + "post": { + "tags": [ + "History" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetHistoryQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHistoryQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHistoryQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetHistoryQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/HistoryDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/HistoryDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/HistoryDto" + } + } + } + } + } + } + } + }, + "/api/v1/Location/GetUnsecureLocationCountryAndRegionList": { + "get": { + "tags": [ + "Location" + ], + "parameters": [ + { + "name": "query", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetUnsecureLocationCountryAndRegionListResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetUnsecureLocationCountryAndRegionListResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetUnsecureLocationCountryAndRegionListResponse" + } + } + } + } + } + } + }, + "/api/v1/LuxoftLegalEntity/GetLuxoftLegalEntityList": { + "post": { + "tags": [ + "LuxoftLegalEntity" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetLuxoftLegalEntityListQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetLuxoftLegalEntityListQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetLuxoftLegalEntityListQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetLuxoftLegalEntityListQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetLuxoftLegalEntityListResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetLuxoftLegalEntityListResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetLuxoftLegalEntityListResponse" + } + } + } + } + } + } + } + }, + "/api/v1/LuxoftLegalEntity/GetLuxoftLegalEntities": { + "get": { + "tags": [ + "LuxoftLegalEntity" + ], + "parameters": [ + { + "name": "query", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetLuxoftLegalEntitiesSearchResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetLuxoftLegalEntitiesSearchResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetLuxoftLegalEntitiesSearchResponse" + } + } + } + } + } + } + } + }, + "/api/v1/Operation/GetSecurityOperations": { + "post": { + "tags": [ + "Operation" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "/api/v1/Operation/GetSecurityOperationCodes": { + "post": { + "tags": [ + "Operation" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SecurityOperationCode" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SecurityOperationCode" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SecurityOperationCode" + } + } + } + } + } + } + } + }, + "/api/v1/Opportunity/GetList": { + "get": { + "tags": [ + "Opportunity" + ], + "parameters": [ + { + "name": "clientId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "financialBusinessUnitId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "searchText", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOpportunitiesResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOpportunitiesResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOpportunitiesResponse" + } + } + } + } + } + } + } + }, + "/api/v1/OracleCommodity/GetAll": { + "get": { + "tags": [ + "OracleCommodity" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleCommodityResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleCommodityResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleCommodityResponse" + } + } + } + } + } + } + } + }, + "/api/v1/PaymentTerm/GetList": { + "get": { + "tags": [ + "PaymentTerm" + ], + "parameters": [ + { + "name": "query", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + } + } + } + } + } + } + } + }, + "/api/v1/Photo": { + "get": { + "tags": [ + "Photo" + ], + "parameters": [ + { + "name": "employeeId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/Photo/current": { + "get": { + "tags": [ + "Photo" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Redirect/ToSalesForce": { + "get": { + "tags": [ + "Redirect" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Redirect/ToFaq": { + "get": { + "tags": [ + "Redirect" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Redirect/ToFeedback": { + "get": { + "tags": [ + "Redirect" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SpecialClause/GetLatest": { + "get": { + "tags": [ + "SpecialClause" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SpecialClausesGetF1ScoreResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SpecialClausesGetF1ScoreResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SpecialClausesGetF1ScoreResponse" + } + } + } + } + } + } + }, + "/api/v1/SpecialClause/AddNew": { + "post": { + "tags": [ + "SpecialClause" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SpecialClausesUpdateF1ScoreCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SpecialClausesUpdateF1ScoreCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SpecialClausesUpdateF1ScoreCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SpecialClausesUpdateF1ScoreCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Statistics/TrackEvent": { + "post": { + "tags": [ + "Statistics" + ], + "requestBody": { + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/StatisticsDataDto" + } + }, + "text/xml": { + "schema": { + "$ref": "#/components/schemas/StatisticsDataDto" + } + }, + "application/*+xml": { + "schema": { + "$ref": "#/components/schemas/StatisticsDataDto" + } + }, + "text/plain": { + "schema": { + "$ref": "#/components/schemas/StatisticsDataDto" + } + }, + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/StatisticsDataDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/StatisticsDataDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/StatisticsDataDto" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/StatisticsDataDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Supplier/GetOracleSupplierList": { + "post": { + "tags": [ + "Supplier" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetOracleSuppliersQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetOracleSuppliersQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetOracleSuppliersQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetOracleSuppliersQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleSuppliersResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleSuppliersResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleSuppliersResponse" + } + } + } + } + } + } + } + }, + "/api/v1/Supplier/GetWithoutPotentialOracleSupplierList": { + "post": { + "tags": [ + "Supplier" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetWithoutPotentialOracleSuppliersQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetWithoutPotentialOracleSuppliersQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetWithoutPotentialOracleSuppliersQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetWithoutPotentialOracleSuppliersQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleSuppliersResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleSuppliersResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleSuppliersResponse" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierAgreementSearch/Search": { + "post": { + "tags": [ + "SupplierAgreementSearch" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementSearchQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementSearchQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementSearchQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementSearchQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementSearchResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementSearchResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementSearchResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierAgreementSearch/GetOracleSuppliers": { + "get": { + "tags": [ + "SupplierAgreementSearch" + ], + "parameters": [ + { + "name": "query", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleSuppliersForSearchResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleSuppliersForSearchResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleSuppliersForSearchResponse" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierAgreementSearch/GetOracleCommodity": { + "get": { + "tags": [ + "SupplierAgreementSearch" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleCommodityForSearchResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleCommodityForSearchResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetOracleCommodityForSearchResponse" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierAgreementSearch/GetFilteredTasksCounters": { + "post": { + "tags": [ + "SupplierAgreementSearch" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierFilteredTasksCountersQuery" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierFilteredTasksCountersQuery" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierFilteredTasksCountersQuery" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierFilteredTasksCountersQuery" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/FilteredTasksCounterResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/FilteredTasksCounterResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/FilteredTasksCounterResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/Create": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentMasterServiceAgreementCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetEditHeader": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMasterServiceAgreementHeaderResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMasterServiceAgreementHeaderResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMasterServiceAgreementHeaderResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetEditMainInfo": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMasterServiceAgreementMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMasterServiceAgreementMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMasterServiceAgreementMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/Save": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentMasterServiceAgreementCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetLabels": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetEditProcessing": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMasterServiceAgreementProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMasterServiceAgreementProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMasterServiceAgreementProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetEditContent": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementContentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetEditFinancial": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/AgreementAttachmentOperation": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetAttachments": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetChatMessages": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetChatMessage": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/AddChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/UpdateChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMasterServiceAgreementChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetRelations": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/ExecuteTask": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMasterServiceAgreementTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMasterServiceAgreementTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMasterServiceAgreementTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMasterServiceAgreementTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetTaskDetail": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetTaskActionAvailability": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/DownloadAttachment": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/DownloadAttachmentVersion": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/DownloadAllAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/RemoveAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/UnlockAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetHighlightAttachments": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/AddAttachments": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMasterServiceAgreementAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMasterServiceAgreementAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMasterServiceAgreementAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMasterServiceAgreementAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/UpdateAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMasterServiceAgreementAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/RecalculateTask": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentMasterServiceAgreementTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentMasterServiceAgreementTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentMasterServiceAgreementTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentMasterServiceAgreementTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/AssignToMe": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetApprovalListComment": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetApprovalListAvailability": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetApprovalList": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetStatusChain": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetStatusHistory": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetHistoricStagePerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetHighlightFields": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetWritableFieldsMeta": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMasterServiceAgreementWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetTaskAndActions": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentMasterServiceAgreementWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentMasterServiceAgreementWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentMasterServiceAgreementWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/ExecuteAction": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMasterServiceAgreementActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMasterServiceAgreementActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMasterServiceAgreementActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMasterServiceAgreementActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/NeedRestartWorkflow": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/CanAddAdditionalApprover": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/AddAdditionalApprover": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentMasterServiceAgreementCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/CanCreate": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/CanAssignTo": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/AssignTo": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentMasterServiceAgreementCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentMasterServiceAgreementCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/SendAttachmentToESigning": { + "post": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentMasterServiceAgreementAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentMasterServiceAgreementAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentMasterServiceAgreementAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentMasterServiceAgreementAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMasterServiceAgreement/GetESigningParameters": { + "get": { + "tags": [ + "SupplierContractAmendmentMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/Create": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentMsaWithSowDetailCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetEditHeader": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMsaWithSowDetailHeaderResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMsaWithSowDetailHeaderResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMsaWithSowDetailHeaderResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetEditMainInfo": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMsaWithSowDetailMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMsaWithSowDetailMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMsaWithSowDetailMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/Save": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentMsaWithSowDetailCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetLabels": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetEditProcessing": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMsaWithSowDetailProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMsaWithSowDetailProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentMsaWithSowDetailProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetEditContent": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailContentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetEditFinancial": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/AgreementAttachmentOperation": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetAttachments": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetChatMessages": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetChatMessage": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/AddChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/UpdateChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMsaWithSowDetailChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetRelations": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/ExecuteTask": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMsaWithSowDetailTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMsaWithSowDetailTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMsaWithSowDetailTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMsaWithSowDetailTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetTaskDetail": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetTaskActionAvailability": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/DownloadAttachment": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/DownloadAttachmentVersion": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/DownloadAllAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/RemoveAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/UnlockAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetHighlightAttachments": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/AddAttachments": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMsaWithSowDetailAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMsaWithSowDetailAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMsaWithSowDetailAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentMsaWithSowDetailAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/UpdateAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentMsaWithSowDetailAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/RecalculateTask": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentMsaWithSowDetailTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentMsaWithSowDetailTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentMsaWithSowDetailTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentMsaWithSowDetailTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/AssignToMe": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetApprovalListComment": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetApprovalListAvailability": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetApprovalList": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetStatusChain": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetStatusHistory": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetHistoricStagePerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetHighlightFields": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetWritableFieldsMeta": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentMsaWithSowDetailWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetTaskAndActions": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentMsaWithSowDetailWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentMsaWithSowDetailWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentMsaWithSowDetailWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/ExecuteAction": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMsaWithSowDetailActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMsaWithSowDetailActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMsaWithSowDetailActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentMsaWithSowDetailActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/NeedRestartWorkflow": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/CanAddAdditionalApprover": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/AddAdditionalApprover": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentMsaWithSowDetailCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/CanCreate": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/CanAssignTo": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/AssignTo": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentMsaWithSowDetailCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentMsaWithSowDetailCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/SendAttachmentToESigning": { + "post": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentMsaWithSowDetailAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentMsaWithSowDetailAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentMsaWithSowDetailAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentMsaWithSowDetailAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentMsaWithSowDetail/GetESigningParameters": { + "get": { + "tags": [ + "SupplierContractAmendmentMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/Create": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetEditHeader": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentNonCommercialHeaderResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentNonCommercialHeaderResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentNonCommercialHeaderResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetEditMainInfo": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentNonCommercialMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentNonCommercialMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentNonCommercialMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/Save": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetLabels": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetEditProcessing": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentNonCommercialProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentNonCommercialProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentNonCommercialProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/AgreementAttachmentOperation": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetAttachments": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetChatMessages": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetChatMessage": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/AddChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentNonCommercialChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentNonCommercialChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentNonCommercialChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentNonCommercialChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/UpdateChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentNonCommercialChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentNonCommercialChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentNonCommercialChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetRelations": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/ExecuteTask": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentNonCommercialTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentNonCommercialTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentNonCommercialTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentNonCommercialTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetTaskDetail": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetTaskActionAvailability": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/DownloadAttachment": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/DownloadAttachmentVersion": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/DownloadAllAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/RemoveAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentNonCommercialAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentNonCommercialAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/UnlockAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentNonCommercialAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentNonCommercialAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetHighlightAttachments": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/AddAttachments": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentNonCommercialAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentNonCommercialAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentNonCommercialAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentNonCommercialAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/UpdateAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentNonCommercialAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentNonCommercialAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentNonCommercialAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/RecalculateTask": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentNonCommercialTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentNonCommercialTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentNonCommercialTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentNonCommercialTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/AssignToMe": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetApprovalListComment": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetApprovalListAvailability": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetApprovalList": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetStatusChain": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetStatusHistory": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetHistoricStagePerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetHighlightFields": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetWritableFieldsMeta": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetTaskAndActions": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentNonCommercialWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentNonCommercialWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentNonCommercialWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/ExecuteAction": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentNonCommercialActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentNonCommercialActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentNonCommercialActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentNonCommercialActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/NeedRestartWorkflow": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/CanAddAdditionalApprover": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/AddAdditionalApprover": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/CanCreate": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/CanAssignTo": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/AssignTo": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetEditContent": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentNonCommercialContentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/SendAttachmentToESigning": { + "post": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentNonCommercialAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentNonCommercialAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentNonCommercialAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentNonCommercialAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentNonCommercial/GetESigningParameters": { + "get": { + "tags": [ + "SupplierContractAmendmentNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/Create": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractAmendmentStatementOfWorkCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetEditHeader": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentStatementOfWorkHeaderResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentStatementOfWorkHeaderResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentStatementOfWorkHeaderResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetEditMainInfo": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentStatementOfWorkMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentStatementOfWorkMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentStatementOfWorkMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/Save": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractAmendmentStatementOfWorkCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetLabels": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetEditProcessing": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentStatementOfWorkProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentStatementOfWorkProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractAmendmentStatementOfWorkProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetEditContent": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkContentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetEditFinancial": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/AgreementAttachmentOperation": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetAttachments": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetChatMessages": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetChatMessage": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/AddChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/UpdateChatMessage": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentStatementOfWorkChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetRelations": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/ExecuteTask": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentStatementOfWorkTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentStatementOfWorkTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentStatementOfWorkTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentStatementOfWorkTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetTaskDetail": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetTaskActionAvailability": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/DownloadAttachment": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/DownloadAttachmentVersion": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/DownloadAllAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/RemoveAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/UnlockAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetHighlightAttachments": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/AddAttachments": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentStatementOfWorkAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentStatementOfWorkAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentStatementOfWorkAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractAmendmentStatementOfWorkAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/UpdateAttachment": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractAmendmentStatementOfWorkAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/RecalculateTask": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentStatementOfWorkTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentStatementOfWorkTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentStatementOfWorkTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractAmendmentStatementOfWorkTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/AssignToMe": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetApprovalListComment": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetApprovalListAvailability": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetApprovalList": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetStatusChain": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetStatusHistory": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetHistoricStagePerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetHighlightFields": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetWritableFieldsMeta": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractAmendmentStatementOfWorkWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetTaskAndActions": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentStatementOfWorkWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentStatementOfWorkWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractAmendmentStatementOfWorkWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/ExecuteAction": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentStatementOfWorkActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentStatementOfWorkActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentStatementOfWorkActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractAmendmentStatementOfWorkActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/NeedRestartWorkflow": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/CanAddAdditionalApprover": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/AddAdditionalApprover": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractAmendmentStatementOfWorkCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/CanCreate": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/CanAssignTo": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/AssignTo": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentStatementOfWorkCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractAmendmentStatementOfWorkCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/SendAttachmentToESigning": { + "post": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentStatementOfWorkAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentStatementOfWorkAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentStatementOfWorkAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractAmendmentStatementOfWorkAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractAmendmentStatementOfWork/GetESigningParameters": { + "get": { + "tags": [ + "SupplierContractAmendmentStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/Create": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMasterServiceAgreementCommand" + } + }, + "text/xml": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMasterServiceAgreementCommand" + } + }, + "application/*+xml": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMasterServiceAgreementCommand" + } + }, + "text/plain": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMasterServiceAgreementCommand" + } + }, + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMasterServiceAgreementCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMasterServiceAgreementCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMasterServiceAgreementCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMasterServiceAgreementCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetEditHeader": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMasterServiceAgreementHeaderResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMasterServiceAgreementHeaderResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMasterServiceAgreementHeaderResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetEditMainInfo": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMasterServiceAgreementMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMasterServiceAgreementMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMasterServiceAgreementMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/Save": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractMasterServiceAgreementCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractMasterServiceAgreementCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractMasterServiceAgreementCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractMasterServiceAgreementCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetLabels": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetEditProcessing": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMasterServiceAgreementProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMasterServiceAgreementProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMasterServiceAgreementProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetEditContent": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementContentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetEditFinancial": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/AgreementAttachmentOperation": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetAttachments": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetChatMessages": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetChatMessage": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/AddChatMessage": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMasterServiceAgreementChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMasterServiceAgreementChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMasterServiceAgreementChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMasterServiceAgreementChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractMasterServiceAgreementChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractMasterServiceAgreementChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractMasterServiceAgreementChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractMasterServiceAgreementChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/UpdateChatMessage": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMasterServiceAgreementChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMasterServiceAgreementChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMasterServiceAgreementChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMasterServiceAgreementChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetRelations": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/ExecuteTask": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMasterServiceAgreementTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMasterServiceAgreementTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMasterServiceAgreementTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMasterServiceAgreementTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetTaskDetail": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetTaskActionAvailability": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/DownloadAttachment": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/DownloadAttachmentVersion": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/DownloadAllAttachment": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/RemoveAttachment": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractMasterServiceAgreementAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractMasterServiceAgreementAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractMasterServiceAgreementAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractMasterServiceAgreementAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/UnlockAttachment": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractMasterServiceAgreementAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractMasterServiceAgreementAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractMasterServiceAgreementAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractMasterServiceAgreementAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetHighlightAttachments": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/AddAttachments": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMasterServiceAgreementAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMasterServiceAgreementAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMasterServiceAgreementAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMasterServiceAgreementAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/UpdateAttachment": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMasterServiceAgreementAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMasterServiceAgreementAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMasterServiceAgreementAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMasterServiceAgreementAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/RecalculateTask": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractMasterServiceAgreementTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractMasterServiceAgreementTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractMasterServiceAgreementTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractMasterServiceAgreementTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/AssignToMe": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetApprovalListComment": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetApprovalListAvailability": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetApprovalList": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetStatusChain": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetStatusHistory": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetHistoricStagePerformers": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetHighlightFields": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetWritableFieldsMeta": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMasterServiceAgreementWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetChildrenCount": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetTaskAndActions": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractMasterServiceAgreementWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractMasterServiceAgreementWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractMasterServiceAgreementWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/ExecuteAction": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMasterServiceAgreementActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMasterServiceAgreementActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMasterServiceAgreementActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMasterServiceAgreementActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetChildren": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/CreateCopy": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractMasterServiceAgreementCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractMasterServiceAgreementCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractMasterServiceAgreementCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractMasterServiceAgreementCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/CanCopy": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/NeedRestartWorkflow": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/CanAddAdditionalApprover": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/AddAdditionalApprover": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractMasterServiceAgreementCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractMasterServiceAgreementCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractMasterServiceAgreementCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractMasterServiceAgreementCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/CanAssignTo": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/AssignTo": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractMasterServiceAgreementCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractMasterServiceAgreementCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractMasterServiceAgreementCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractMasterServiceAgreementCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/SendAttachmentToESigning": { + "post": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractMasterServiceAgreementAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractMasterServiceAgreementAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractMasterServiceAgreementAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractMasterServiceAgreementAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMasterServiceAgreement/GetESigningParameters": { + "get": { + "tags": [ + "SupplierContractMasterServiceAgreement" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/Create": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMsaWithSowDetailCommand" + } + }, + "text/xml": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMsaWithSowDetailCommand" + } + }, + "application/*+xml": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMsaWithSowDetailCommand" + } + }, + "text/plain": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMsaWithSowDetailCommand" + } + }, + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMsaWithSowDetailCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMsaWithSowDetailCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMsaWithSowDetailCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractMsaWithSowDetailCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetEditHeader": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMsaWithSowDetailHeaderResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMsaWithSowDetailHeaderResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMsaWithSowDetailHeaderResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetEditMainInfo": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMsaWithSowDetailMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMsaWithSowDetailMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMsaWithSowDetailMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/Save": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractMsaWithSowDetailCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractMsaWithSowDetailCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractMsaWithSowDetailCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractMsaWithSowDetailCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetLabels": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetEditProcessing": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMsaWithSowDetailProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMsaWithSowDetailProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractMsaWithSowDetailProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetEditContent": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailContentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetEditFinancial": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/AgreementAttachmentOperation": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetAttachments": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetChatMessages": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetChatMessage": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/AddChatMessage": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMsaWithSowDetailChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMsaWithSowDetailChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMsaWithSowDetailChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMsaWithSowDetailChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractMsaWithSowDetailChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractMsaWithSowDetailChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractMsaWithSowDetailChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractMsaWithSowDetailChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/UpdateChatMessage": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMsaWithSowDetailChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMsaWithSowDetailChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMsaWithSowDetailChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMsaWithSowDetailChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetRelations": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/ExecuteTask": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMsaWithSowDetailTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMsaWithSowDetailTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMsaWithSowDetailTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMsaWithSowDetailTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetTaskDetail": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetTaskActionAvailability": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/DownloadAttachment": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/DownloadAttachmentVersion": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/DownloadAllAttachment": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/RemoveAttachment": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractMsaWithSowDetailAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractMsaWithSowDetailAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractMsaWithSowDetailAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractMsaWithSowDetailAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/UnlockAttachment": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractMsaWithSowDetailAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractMsaWithSowDetailAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractMsaWithSowDetailAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractMsaWithSowDetailAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetHighlightAttachments": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/AddAttachments": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMsaWithSowDetailAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMsaWithSowDetailAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMsaWithSowDetailAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractMsaWithSowDetailAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/UpdateAttachment": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMsaWithSowDetailAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMsaWithSowDetailAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMsaWithSowDetailAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractMsaWithSowDetailAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/RecalculateTask": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractMsaWithSowDetailTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractMsaWithSowDetailTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractMsaWithSowDetailTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractMsaWithSowDetailTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/AssignToMe": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetApprovalListComment": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetApprovalListAvailability": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetApprovalList": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetStatusChain": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetStatusHistory": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetHistoricStagePerformers": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetHighlightFields": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetWritableFieldsMeta": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractMsaWithSowDetailWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetChildrenCount": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetTaskAndActions": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractMsaWithSowDetailWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractMsaWithSowDetailWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractMsaWithSowDetailWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/ExecuteAction": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMsaWithSowDetailActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMsaWithSowDetailActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMsaWithSowDetailActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractMsaWithSowDetailActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetChildren": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/CreateCopy": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractMsaWithSowDetailCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractMsaWithSowDetailCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractMsaWithSowDetailCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractMsaWithSowDetailCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/CanCopy": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/NeedRestartWorkflow": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/CanAddAdditionalApprover": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/AddAdditionalApprover": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractMsaWithSowDetailCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractMsaWithSowDetailCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractMsaWithSowDetailCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractMsaWithSowDetailCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/CanAssignTo": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/AssignTo": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractMsaWithSowDetailCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractMsaWithSowDetailCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractMsaWithSowDetailCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractMsaWithSowDetailCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/SendAttachmentToESigning": { + "post": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractMsaWithSowDetailAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractMsaWithSowDetailAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractMsaWithSowDetailAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractMsaWithSowDetailAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractMsaWithSowDetail/GetESigningParameters": { + "get": { + "tags": [ + "SupplierContractMsaWithSowDetail" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/RemoveAttachment": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractNonCommercialAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractNonCommercialAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractNonCommercialAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractNonCommercialAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/UpdateAttachment": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractNonCommercialAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractNonCommercialAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractNonCommercialAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractNonCommercialAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/UnlockAttachment": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractNonCommercialAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractNonCommercialAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractNonCommercialAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractNonCommercialAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/AgreementAttachmentOperation": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetChildrenCount": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetAttachments": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/DownloadAttachment": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/DownloadAttachmentVersion": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/DownloadAllAttachment": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetEditHeader": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractNonCommercialHeaderResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractNonCommercialHeaderResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractNonCommercialHeaderResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetEditMainInfo": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractNonCommercialMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractNonCommercialMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractNonCommercialMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetEditProcessing": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractNonCommercialProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractNonCommercialProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractNonCommercialProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetRelations": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetHistoricStagePerformers": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetStatusChain": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetStatusHistory": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetTaskDetail": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/Create": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/ExecuteTask": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractNonCommercialTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractNonCommercialTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractNonCommercialTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractNonCommercialTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/Save": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetWritableFieldsMeta": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetApprovalList": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetApprovalListComment": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetApprovalListAvailability": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetHighlightFields": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetHighlightAttachments": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetChatMessages": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/AddChatMessage": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractNonCommercialChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractNonCommercialChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractNonCommercialChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractNonCommercialChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractNonCommercialChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractNonCommercialChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractNonCommercialChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractNonCommercialChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetChatMessage": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/UpdateChatMessage": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractNonCommercialChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractNonCommercialChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractNonCommercialChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractNonCommercialChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/RecalculateTask": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractNonCommercialTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractNonCommercialTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractNonCommercialTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractNonCommercialTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetTaskActionAvailability": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/AddAttachments": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractNonCommercialAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractNonCommercialAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractNonCommercialAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractNonCommercialAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/AssignToMe": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetTaskAndActions": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractNonCommercialWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractNonCommercialWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractNonCommercialWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/ExecuteAction": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractNonCommercialActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractNonCommercialActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractNonCommercialActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractNonCommercialActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetChildren": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/CreateCopy": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/CanCopy": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/NeedRestartWorkflow": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/CanAddAdditionalApprover": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/AddAdditionalApprover": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetLabels": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/CanAssignTo": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/AssignTo": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractNonCommercialCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractNonCommercialCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractNonCommercialCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractNonCommercialCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetEditContent": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractNonCommercialContentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/SendAttachmentToESigning": { + "post": { + "tags": [ + "SupplierContractNonCommercial" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractNonCommercialAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractNonCommercialAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractNonCommercialAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractNonCommercialAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractNonCommercial/GetESigningParameters": { + "get": { + "tags": [ + "SupplierContractNonCommercial" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/Create": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractStatementOfWorkCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractStatementOfWorkCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractStatementOfWorkCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierContractStatementOfWorkCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetEditHeader": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractStatementOfWorkHeaderResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractStatementOfWorkHeaderResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractStatementOfWorkHeaderResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetEditMainInfo": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractStatementOfWorkMainInfoResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractStatementOfWorkMainInfoResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractStatementOfWorkMainInfoResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/Save": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractStatementOfWorkCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractStatementOfWorkCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractStatementOfWorkCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveSupplierContractStatementOfWorkCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetLabels": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementLabelType" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetEditProcessing": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractStatementOfWorkProcessingResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractStatementOfWorkProcessingResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetEditSupplierContractStatementOfWorkProcessingResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetEditContent": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkContentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkContentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkContentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetEditFinancial": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkFinancialResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkFinancialResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkFinancialResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/AgreementAttachmentOperation": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/AgreementAttachmentOperationForCreate": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AttachmentOperationResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetAttachments": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementAttachmentDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetChatMessages": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessagesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetChatMessage": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "chatMessageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChatMessageDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/AddChatMessage": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractStatementOfWorkChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractStatementOfWorkChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractStatementOfWorkChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractStatementOfWorkChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/MarkAsRemoveChatMessage": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractStatementOfWorkChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractStatementOfWorkChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractStatementOfWorkChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MarkAsRemoveSupplierContractStatementOfWorkChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/UpdateChatMessage": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractStatementOfWorkChatMessageCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractStatementOfWorkChatMessageCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractStatementOfWorkChatMessageCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractStatementOfWorkChatMessageCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetRelations": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementRelationDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/ExecuteTask": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractStatementOfWorkTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractStatementOfWorkTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractStatementOfWorkTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractStatementOfWorkTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetTaskDetail": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkTaskDetailResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkTaskDetailResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkTaskDetailResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetTaskActionAvailability": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkTaskActionAvailabilityResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkTaskActionAvailabilityResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkTaskActionAvailabilityResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/DownloadAttachment": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/DownloadAttachmentVersion": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/DownloadAllAttachment": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetAttachmentPreviewContent": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetAttachmentPreviewContentVersion": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementAttachmentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attachmentContentId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/RemoveAttachment": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractStatementOfWorkAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractStatementOfWorkAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractStatementOfWorkAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierContractStatementOfWorkAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/UnlockAttachment": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractStatementOfWorkAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractStatementOfWorkAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractStatementOfWorkAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UnlockSupplierContractStatementOfWorkAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetHighlightAttachments": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetHighlightAttachmentsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/AddAttachments": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractStatementOfWorkAttachmentsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractStatementOfWorkAttachmentsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractStatementOfWorkAttachmentsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddSupplierContractStatementOfWorkAttachmentsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/UpdateAttachment": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractStatementOfWorkAttachmentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractStatementOfWorkAttachmentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractStatementOfWorkAttachmentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateSupplierContractStatementOfWorkAttachmentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/RecalculateTask": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractStatementOfWorkTaskCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractStatementOfWorkTaskCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractStatementOfWorkTaskCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateSupplierContractStatementOfWorkTaskCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetIsAssignToMeAvailable": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToMeAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/AssignToMe": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetApprovalListComment": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListCommentResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetApprovalListAvailability": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalListAvailabilityDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetApprovalList": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "comment", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllApprovals", + "in": "query", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetAdditionalTaskPerformers": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetStatusChain": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SupplierAgreementStatusChainResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetStatusHistory": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementStatusHistoryResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetHistoricStagePerformers": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "stageId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementHistoricStagePerformersResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetHighlightFields": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkHighlightFieldsResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkHighlightFieldsResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkHighlightFieldsResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetWritableFieldsMeta": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkWritableFieldsMetaResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkWritableFieldsMetaResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetSupplierContractStatementOfWorkWritableFieldsMetaResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetChildrenCount": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "id", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChildrenAgreementCountDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetTaskAndActions": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractStatementOfWorkWorkflowActionKey" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractStatementOfWorkWorkflowActionKey" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/TaskAndActionsResponseSupplierContractStatementOfWorkWorkflowActionKey" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/ExecuteAction": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractStatementOfWorkActionCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractStatementOfWorkActionCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractStatementOfWorkActionCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExecuteSupplierContractStatementOfWorkActionCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetParentsForCreation": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "searchValue", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossibleParentsForAgreementResponse" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetChildren": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/CreateCopy": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractStatementOfWorkCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractStatementOfWorkCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractStatementOfWorkCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CopySupplierContractStatementOfWorkCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/CanCopy": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/NeedRestartWorkflow": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetPotentialAdditionalApprovalTaskRoles": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AgreementPotentialAdditionalApprovalTaskRolesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/CanAddAdditionalApprover": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/AddAdditionalApprover": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractStatementOfWorkCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractStatementOfWorkCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractStatementOfWorkCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AddAdditionalApproverToSupplierContractStatementOfWorkCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/CanAssignTo": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "boolean" + } + }, + "application/json": { + "schema": { + "type": "boolean" + } + }, + "text/json": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/AssignTo": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractStatementOfWorkCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractStatementOfWorkCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractStatementOfWorkCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/AssignToSupplierContractStatementOfWorkCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetTaskPossiblePerformers": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "taskId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeDto" + } + } + } + } + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/SendAttachmentToESigning": { + "post": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractStatementOfWorkAttachmentToESigningCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractStatementOfWorkAttachmentToESigningCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractStatementOfWorkAttachmentToESigningCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SendSupplierContractStatementOfWorkAttachmentToESigningCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupplierContractStatementOfWork/GetESigningParameters": { + "get": { + "tags": [ + "SupplierContractStatementOfWork" + ], + "parameters": [ + { + "name": "agreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ESigningEmailsDto" + } + } + } + } + } + } + }, + "/api/v1/SupplierTemplate/GetTemplateContentPreview": { + "get": { + "tags": [ + "SupplierTemplate" + ], + "parameters": [ + { + "name": "templateId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierTemplate/DownloadTemplateFile": { + "get": { + "tags": [ + "SupplierTemplate" + ], + "parameters": [ + { + "name": "templateId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/api/v1/SupplierTemplate/GetAll": { + "get": { + "tags": [ + "SupplierTemplate" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetAllSupplierAgreementTemplatesResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetAllSupplierAgreementTemplatesResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetAllSupplierAgreementTemplatesResponse" + } + } + } + } + } + } + }, + "/api/v1/SupplierTemplate/Create": { + "post": { + "tags": [ + "SupplierTemplate" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierAgreementTemplateCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierAgreementTemplateCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierAgreementTemplateCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/CreateSupplierAgreementTemplateCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupplierTemplate/Remove": { + "post": { + "tags": [ + "SupplierTemplate" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierAgreementTemplateCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierAgreementTemplateCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierAgreementTemplateCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveSupplierAgreementTemplateCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupportOnly/RemovePermissions": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemovePermissionsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemovePermissionsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemovePermissionsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemovePermissionsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/TestNotification": { + "post": { + "tags": [ + "SupportOnly" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupportOnly/ReassignContractCoordinator": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ReassignContractCoordinatorCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ReassignContractCoordinatorCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ReassignContractCoordinatorCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ReassignContractCoordinatorCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/MigrateMsaAndSowToCc": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAndSowToCcCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAndSowToCcCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAndSowToCcCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAndSowToCcCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/UpdateContractFields": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractFieldsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractFieldsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractFieldsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractFieldsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/RecalculateContractVat": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractVatCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractVatCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractVatCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractVatCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/UpdateContractParent": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractParentCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractParentCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractParentCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractParentCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/MigrateMsaAmAndSowAmToCcAm": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAmAndSowAmToCcAmCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAmAndSowAmToCcAmCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAmAndSowAmToCcAmCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAmAndSowAmToCcAmCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/UpdateExceptionalWorkflow": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateExceptionalWorkflowCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateExceptionalWorkflowCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateExceptionalWorkflowCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateExceptionalWorkflowCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/MigrateNcdAmToCcan": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MigrateNcdAmToCcanCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MigrateNcdAmToCcanCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MigrateNcdAmToCcanCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MigrateNcdAmToCcanCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/FixMigratedContracts": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/FixMigratedContractsCommand" + } + }, + "text/xml": { + "schema": { + "$ref": "#/components/schemas/FixMigratedContractsCommand" + } + }, + "application/*+xml": { + "schema": { + "$ref": "#/components/schemas/FixMigratedContractsCommand" + } + }, + "text/plain": { + "schema": { + "$ref": "#/components/schemas/FixMigratedContractsCommand" + } + }, + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/FixMigratedContractsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/FixMigratedContractsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/FixMigratedContractsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/FixMigratedContractsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupportOnly/MigrateNdaToScn": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MigrateNdaToScnCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MigrateNdaToScnCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MigrateNdaToScnCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MigrateNdaToScnCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/ChangeStatuesToArchived4277": { + "post": { + "tags": [ + "SupportOnly" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/ChangeKyc": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ChangeKycCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChangeKycCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChangeKycCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ChangeKycCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupportOnly/ChangeCleFlags": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ChangeCleFlagsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChangeCleFlagsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChangeCleFlagsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ChangeCleFlagsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupportOnly/FixExpirationDate4269": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/FixExpirationDate4269Command" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/FixExpirationDate4269Command" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/FixExpirationDate4269Command" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/FixExpirationDate4269Command" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/ChangeContractType4354": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ChangeContractType4354Command" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChangeContractType4354Command" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChangeContractType4354Command" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ChangeContractType4354Command" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/ChangeStatuesToArchived4536": { + "post": { + "tags": [ + "SupportOnly" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/RemoveAgreementsWithAnnulledParent4385": { + "post": { + "tags": [ + "SupportOnly" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupportOnly/FixToArchived4575": { + "post": { + "tags": [ + "SupportOnly" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupportOnly/RecalculateContractClient": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractClientCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractClientCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractClientCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractClientCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupportOnly/MigrateMsaWithDetailsToScms": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaWithDetailsToScmsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaWithDetailsToScmsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaWithDetailsToScmsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaWithDetailsToScmsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/MigrateSowAmToScas": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MigrateSowAmToScasCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MigrateSowAmToScasCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MigrateSowAmToScasCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MigrateSowAmToScasCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/MigrateSowToScs": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MigrateSowToScsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MigrateSowToScsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MigrateSowToScsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MigrateSowToScsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/MigrateMsaToScm": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaToScmCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaToScmCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaToScmCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaToScmCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/MigrateMsaAmToScamOrScams": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAmToScamOrScamsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAmToScamOrScamsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAmToScamOrScamsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MigrateMsaAmToScamOrScamsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/MigrateNdaAmToScan": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MigrateNdaAmToScanCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MigrateNdaAmToScanCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MigrateNdaAmToScanCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MigrateNdaAmToScanCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/MoveToArchived": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MoveToArchivedCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MoveToArchivedCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MoveToArchivedCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MoveToArchivedCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupportOnly/UploadPermissions": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "properties": { + "file": { + "type": "string", + "format": "binary" + } + } + }, + "encoding": { + "file": { + "style": "form" + } + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/RecalculateContractSummary": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractSummaryCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractSummaryCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractSummaryCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RecalculateContractSummaryCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/UpdateExchangeRateWorkflow": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractExchangeRateCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractExchangeRateCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractExchangeRateCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateContractExchangeRateCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/UpdateMinimalProbabilityForClause": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateMinimalProbabilityForClauseCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateMinimalProbabilityForClauseCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateMinimalProbabilityForClauseCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateMinimalProbabilityForClauseCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/SupportOnly/FillDocumentGroupContextForProjectBillingStartPermissions": { + "post": { + "tags": [ + "SupportOnly" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/UpdateCommodityToContingencyWorkforce5322": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateCommodityToContingencyWorkforce5322Command" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateCommodityToContingencyWorkforce5322Command" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateCommodityToContingencyWorkforce5322Command" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateCommodityToContingencyWorkforce5322Command" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/RemoveRelationsToNotMigratedContractsTypes": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/RemoveRelationsToNotMigratedContractsCommand" + } + }, + "text/xml": { + "schema": { + "$ref": "#/components/schemas/RemoveRelationsToNotMigratedContractsCommand" + } + }, + "application/*+xml": { + "schema": { + "$ref": "#/components/schemas/RemoveRelationsToNotMigratedContractsCommand" + } + }, + "text/plain": { + "schema": { + "$ref": "#/components/schemas/RemoveRelationsToNotMigratedContractsCommand" + } + }, + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/RemoveRelationsToNotMigratedContractsCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoveRelationsToNotMigratedContractsCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/RemoveRelationsToNotMigratedContractsCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/RemoveRelationsToNotMigratedContractsCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/DeactivateTermination": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/DeactivateTerminationCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeactivateTerminationCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/DeactivateTerminationCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/DeactivateTerminationCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/UpdateVatValues": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/UpdateVatValuesCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateVatValuesCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/UpdateVatValuesCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/UpdateVatValuesCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/MoveToCancel": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/MoveToCancelCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/MoveToCancelCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/MoveToCancelCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/MoveToCancelCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/ChangeContractActiveState": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ChangeContractActiveStateCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChangeContractActiveStateCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ChangeContractActiveStateCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ChangeContractActiveStateCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/SupportOnly/GetRefreshToken": { + "post": { + "tags": [ + "SupportOnly" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GetAdobeRefreshTokenCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetAdobeRefreshTokenCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetAdobeRefreshTokenCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GetAdobeRefreshTokenCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/Tasks/GetTasks": { + "get": { + "tags": [ + "Tasks" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetTasksResponse" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetTasksResponse" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetTasksResponse" + } + } + } + } + } + } + } + }, + "/api/v1/Tasks/GetTaskCount": { + "get": { + "tags": [ + "Tasks" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "application/json": { + "schema": { + "type": "integer", + "format": "int32" + } + }, + "text/json": { + "schema": { + "type": "integer", + "format": "int32" + } + } + } + } + } + } + }, + "/api/v1/TemporaryAttachment/AddTemporaryAttachment": { + "post": { + "tags": [ + "TemporaryAttachment" + ], + "requestBody": { + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "properties": { + "file": { + "type": "string", + "format": "binary" + } + } + }, + "encoding": { + "file": { + "style": "form" + } + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/api/v1/Test/ExplainClientIndex": { + "post": { + "tags": [ + "Test" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExplainAgreementsSearchDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExplainAgreementsSearchDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExplainAgreementsSearchDto" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExplainAgreementsSearchDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/ExplainSupplierIndex": { + "post": { + "tags": [ + "Test" + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/ExplainAgreementsSearchDto" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExplainAgreementsSearchDto" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ExplainAgreementsSearchDto" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/ExplainAgreementsSearchDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/WhoAmI": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/Test/IntegrationEventTestMethod": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "text/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/api/v1/Test/RunChatMigrationJob": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/RunChatRemovingServiceJob": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/RunRelationRemovingServiceJob": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/NotificationExpiringSupplierAgreements": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/GetCustomEnumValues": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "text/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "/api/v1/Test/RefreshTheListOfPossiblePerformers": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/ApproversReviewAllTasksWereProcessedEmailEvent": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/ApproversReviewTasksAssignedEmailEvent": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/InitiatorChangedEmailEvent": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/ToCorrectionByModeratorEmailEvent": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/ClientReindex": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/SupplierReindex": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/SpecialClausesByAi": { + "post": { + "tags": [ + "Test" + ], + "parameters": [ + { + "name": "ccpdGuid", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/ValueTupleTextExtractionDtoArrayClassifyResultDtoArray" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValueTupleTextExtractionDtoArrayClassifyResultDtoArray" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/ValueTupleTextExtractionDtoArrayClassifyResultDtoArray" + } + } + } + } + } + } + }, + "/api/v1/Test/SaveClientFromIntegration": { + "post": { + "tags": [ + "Test" + ], + "requestBody": { + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/SaveClientFromIntegrationCommand" + } + }, + "text/xml": { + "schema": { + "$ref": "#/components/schemas/SaveClientFromIntegrationCommand" + } + }, + "application/*+xml": { + "schema": { + "$ref": "#/components/schemas/SaveClientFromIntegrationCommand" + } + }, + "text/plain": { + "schema": { + "$ref": "#/components/schemas/SaveClientFromIntegrationCommand" + } + }, + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientFromIntegrationCommand" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientFromIntegrationCommand" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/SaveClientFromIntegrationCommand" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/SaveClientFromIntegrationCommand" + } + } + } + }, + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/ThrowException": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/ThrowExceptionInEvaluate": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/PublishEdRabbitMqMessage": { + "post": { + "tags": [ + "Test" + ], + "parameters": [ + { + "name": "fromSystem", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "command", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "routingKey", + "in": "query", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Test/GetProductAndServiceToCommodityMapping": { + "get": { + "tags": [ + "Test" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "/api/v1/Test/RecalculateAgreementTask": { + "get": { + "tags": [ + "Test" + ], + "parameters": [ + { + "name": "ccpdAgreementId", + "in": "query", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success" + } + } + } + }, + "/api/v1/Version": { + "get": { + "tags": [ + "Version" + ], + "responses": { + "200": { + "description": "Success", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GetVersionResponse" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetVersionResponse" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GetVersionResponse" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "AddAdditionalApproverToClientContractAmendmentFrameworkDependentCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToClientContractAmendmentFrameworkStandaloneCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToClientContractAmendmentNonCommercialCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToClientContractAmendmentProjectDependentCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToClientContractAmendmentProjectStandaloneCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToClientContractFrameworkDependentCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToClientContractFrameworkStandaloneCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToClientContractProjectDependentCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToClientContractProjectStandaloneCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToClientNonCommercialDocumentCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToSupplierContractAmendmentMasterServiceAgreementCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToSupplierContractAmendmentMsaWithSowDetailCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToSupplierContractAmendmentNonCommercialCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToSupplierContractAmendmentStatementOfWorkCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToSupplierContractMasterServiceAgreementCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToSupplierContractMsaWithSowDetailCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToSupplierContractNonCommercialCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAdditionalApproverToSupplierContractStatementOfWorkCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "roleId": { + "type": "string", + "format": "uuid" + }, + "assigneeId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "governingLawId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddAgreementChatLastSeenDateCommand": { + "type": "object", + "properties": { + "anyAgreementId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "AddAgreementRelationCommand": { + "type": "object", + "properties": { + "parentAgreementId": { + "type": "string", + "format": "uuid" + }, + "parentAgreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "childAgreementId": { + "type": "string", + "format": "uuid" + }, + "childAgreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "agreementRelationType": { + "$ref": "#/components/schemas/AgreementRelationType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentFrameworkDependentAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentFrameworkDependentChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentFrameworkStandaloneAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentFrameworkStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentNonCommercialAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentNonCommercialAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AddClientContractAmendmentNonCommercialAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentNonCommercialChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentProjectDependentAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentProjectDependentChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentProjectStandaloneAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractAmendmentProjectStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractFrameworkDependentAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractFrameworkTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractFrameworkDependentChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractFrameworkStandaloneAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractFrameworkTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractFrameworkStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractProjectDependentAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractProjectTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractProjectDependentChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractProjectStandaloneAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractProjectTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientContractProjectStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientNonCommercialDocumentAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientNonCommercialDocumentTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddClientNonCommercialDocumentChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractAmendmentMasterServiceAgreementAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentMasterServiceAgreementTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractAmendmentMasterServiceAgreementChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractAmendmentMsaWithSowDetailAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentMsaWithSowDetailTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractAmendmentMsaWithSowDetailChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractAmendmentNonCommercialAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentNonCommercialTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractAmendmentNonCommercialChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractAmendmentStatementOfWorkAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentStatementOfWorkTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractAmendmentStatementOfWorkChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractMasterServiceAgreementAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractMasterServiceAgreementTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractMasterServiceAgreementChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractMsaWithSowDetailAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractMsaWithSowDetailTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractMsaWithSowDetailChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractNonCommercialAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractNonCommercialTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractNonCommercialChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractStatementOfWorkAttachmentsCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractStatementOfWorkTemporaryAttachmentDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AddSupplierContractStatementOfWorkChatMessageCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AgreementAttachmentDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "mainDocument": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + }, + "name": { + "type": "string", + "nullable": true + }, + "extensionsType": { + "$ref": "#/components/schemas/FileExtensionsType" + }, + "createDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "comment": { + "type": "string", + "nullable": true + }, + "length": { + "type": "integer", + "format": "int64" + }, + "securePart": { + "type": "string", + "nullable": true + }, + "locked": { + "type": "boolean" + }, + "lockedBy": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "lockedDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "operation": { + "$ref": "#/components/schemas/AgreementAttachmentOperationDto" + }, + "eSigningStatus": { + "$ref": "#/components/schemas/AttachmentESigningStatus" + } + }, + "additionalProperties": false + }, + "AgreementAttachmentOperationDto": { + "type": "object", + "properties": { + "canSendToESigning": { + "type": "boolean", + "readOnly": true + }, + "editAttachmentType": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AttachmentType" + }, + "nullable": true, + "readOnly": true + }, + "canEditDocument": { + "type": "boolean", + "readOnly": true + }, + "canEditComment": { + "type": "boolean", + "readOnly": true + }, + "canDelete": { + "type": "boolean", + "readOnly": true + }, + "canUnlock": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "AgreementCountByCountryDto": { + "type": "object", + "properties": { + "countryName": { + "type": "string", + "nullable": true + }, + "contractCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "AgreementCountByLobDto": { + "type": "object", + "properties": { + "lobId": { + "type": "string", + "format": "uuid" + }, + "lobName": { + "type": "string", + "nullable": true + }, + "agreementCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "AgreementHistoricStagePerformersResponse": { + "type": "object", + "properties": { + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementTaskBaseDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AgreementLabelType": { + "enum": [ + 2, + 3, + 4, + 5, + 6 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "RateCard", + "IsExceptionalWorkflow", + "FastTrack", + "IsSanctioned", + "IsGovernmentOwned" + ] + }, + "AgreementPotentialAdditionalApprovalTaskRolesResponse": { + "type": "object", + "properties": { + "taskRoles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PotentialAdditionalApprover" + }, + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "AgreementRelationDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "agreementId": { + "type": "string", + "format": "uuid" + }, + "agreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "agreementUrl": { + "type": "string", + "nullable": true + }, + "clientAgreementStatus": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "supplierAgreementStatus": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongationType": { + "$ref": "#/components/schemas/ProlongationType" + }, + "counterpartyName": { + "type": "string", + "nullable": true + }, + "relationType": { + "$ref": "#/components/schemas/AgreementRelationType" + }, + "description": { + "type": "string", + "nullable": true + }, + "isEditable": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "AgreementRelationType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "IsContinuedBy", + "IsContinuationFor", + "IsExtendedBy", + "IsExtensionFor", + "IsReducedBy", + "Reduces", + "IsRequiredBy", + "Requires", + "IsRelatedBy", + "RelatesTo", + "IsSubstitutedBy", + "Substitutes", + "IsTerminatedBy", + "Terminates", + "EngagesSupplierFor", + "EngagesSupplierFrom", + "IsGovernedBy", + "Governs", + "IsDuplicatedBy", + "Duplicates" + ] + }, + "AgreementSearchDatesDto": { + "type": "object", + "properties": { + "startDateFrom": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "startDateTo": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDateFrom": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDateTo": { + "type": "string", + "format": "date-time", + "nullable": true + } + }, + "additionalProperties": false + }, + "AgreementStatusHistoryResponse": { + "type": "object", + "properties": { + "stages": { + "type": "array", + "items": { + "$ref": "#/components/schemas/StageHistoryDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AgreementTaskBaseDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "taskName": { + "type": "string", + "nullable": true + }, + "dueDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "endDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "status": { + "$ref": "#/components/schemas/TaskVisualStatus" + }, + "actualPerformer": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "comment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "possiblePerformers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossiblePerformerDto" + }, + "nullable": true, + "readOnly": true + }, + "otherPerformers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PossiblePerformerDto" + }, + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "AgreementTaskStatus": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Approved", + "Canceled", + "Delegated", + "Distributed", + "Dormant", + "Refused", + "Skipped" + ] + }, + "AgreementTerminationInfoDto": { + "type": "object", + "properties": { + "terminationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "terminatedBy": { + "$ref": "#/components/schemas/TerminatedByDto" + } + }, + "additionalProperties": false + }, + "AgreementType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "ClientMasterServiceAgreement", + "ClientMasterServiceAgreementAmendment", + "ClientStatementOfWork", + "ClientStatementOfWorkAmendment", + "ClientNonCommercialDocument", + "ClientNonCommercialDocumentAmendment", + "SupplierMasterServiceAgreement", + "SupplierMasterServiceAgreementAmendment", + "SupplierStatementOfWork", + "SupplierStatementOfWorkAmendment", + "SupplierNonDisclosureAgreement", + "SupplierNonDisclosureAgreementAmendment", + "ClientContractProjectDependent", + "ClientContractProjectStandalone", + "ClientContractFrameworkDependent", + "ClientContractFrameworkStandalone", + "ClientContractAmendmentFrameworkStandalone", + "ClientContractAmendmentFrameworkDependent", + "ClientContractAmendmentProjectStandalone", + "ClientContractAmendmentProjectDependent", + "ClientContractAmendmentNonCommercial", + "SupplierContractNonCommercial", + "SupplierContractStatementOfWork", + "SupplierContractMsaWithSowDetail", + "SupplierContractAmendmentMsaWithSowDetail", + "SupplierContractAmendmentStatementOfWork", + "SupplierContractMasterServiceAgreement", + "SupplierContractAmendmentMasterServiceAgreement", + "SupplierContractAmendmentNonCommercial" + ] + }, + "AgreementTypeByLobDto": { + "type": "object", + "properties": { + "agreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "count": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "AmendmentChangesDto": { + "type": "object", + "properties": { + "changedTextFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TextChangeDto" + }, + "nullable": true, + "readOnly": true + }, + "changedDiffTextFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TextChangeDto" + }, + "nullable": true, + "readOnly": true + }, + "changedArrayFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ArrayChangeDto" + }, + "nullable": true, + "readOnly": true + }, + "changedSpecialClauses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SpecialClauseChangeDto" + }, + "nullable": true, + "readOnly": true + }, + "changedVats": { + "$ref": "#/components/schemas/VatChangeDto" + } + }, + "additionalProperties": false + }, + "ApprovalListAvailabilityDto": { + "type": "object", + "properties": { + "isAvailable": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "ApprovalListCommentResponse": { + "type": "object", + "properties": { + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ArrayChangeDto": { + "type": "object", + "properties": { + "removed": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "added": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "unchanged": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "fieldName": { + "type": "string", + "nullable": true + }, + "order": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "AssignToClientContractAmendmentFrameworkDependentCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToClientContractAmendmentFrameworkStandaloneCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToClientContractAmendmentNonCommercialCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToClientContractAmendmentProjectDependentCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToClientContractAmendmentProjectStandaloneCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToClientContractFrameworkDependentCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToClientContractFrameworkStandaloneCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToClientContractProjectDependentCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToClientContractProjectStandaloneCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToClientNonCommercialDocumentCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToMeAvailabilityDto": { + "type": "object", + "properties": { + "isAvailable": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "AssignToSupplierContractAmendmentMasterServiceAgreementCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToSupplierContractAmendmentMsaWithSowDetailCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToSupplierContractAmendmentNonCommercialCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToSupplierContractAmendmentStatementOfWorkCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToSupplierContractMasterServiceAgreementCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToSupplierContractMsaWithSowDetailCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToSupplierContractNonCommercialCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AssignToSupplierContractStatementOfWorkCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "performerId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AttachmentChangeData": { + "type": "object", + "properties": { + "isMain": { + "type": "boolean" + }, + "hasRatesCard": { + "type": "boolean", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "comment": { + "type": "string", + "nullable": true + }, + "fileName": { + "type": "string", + "nullable": true + }, + "contentId": { + "type": "string", + "format": "uuid" + }, + "active": { + "type": "boolean" + }, + "replaced": { + "type": "boolean" + }, + "createDate": { + "type": "string", + "format": "date-time", + "nullable": true + } + }, + "additionalProperties": false + }, + "AttachmentChangeTrackType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "CreateNew", + "Remove", + "AttachmentType", + "FileName", + "Comment", + "IsMain", + "Content" + ] + }, + "AttachmentESigningStatus": { + "enum": [ + 1, + 2, + 3, + 4, + 5 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Processing", + "SignatureReceived", + "Rejected", + "Signed", + "NotDefined" + ] + }, + "AttachmentFieldChangeDto": { + "type": "object", + "allOf": [ + { + "$ref": "#/components/schemas/FieldChangeDto" + } + ], + "properties": { + "previousValue": { + "$ref": "#/components/schemas/AttachmentChangeData" + }, + "currentValue": { + "$ref": "#/components/schemas/AttachmentChangeData" + } + }, + "additionalProperties": false + }, + "AttachmentHighlightDto": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "changes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AttachmentChangeTrackType" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "AttachmentOperationResponse": { + "type": "object", + "properties": { + "addAttachment": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AttachmentType" + }, + "nullable": true, + "readOnly": true + }, + "setIsMain": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AttachmentType" + }, + "nullable": true, + "readOnly": true + }, + "allowedSetRateTableTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AttachmentType" + }, + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "AttachmentType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "ForApproval", + "ForInformation", + "ToBeCountersigned", + "SignedByAllParties", + "ClientEvidence", + "Archived", + "Comment", + "NewVersionOfContractWithAntiCorruptionClause", + "ThisIsTheDocumentWhichNeedsToBeApproved", + "Accompanying" + ] + }, + "BoolFieldChangeDto": { + "type": "object", + "allOf": [ + { + "$ref": "#/components/schemas/FieldChangeDto" + } + ], + "properties": { + "previousValue": { + "type": "boolean", + "nullable": true + }, + "currentValue": { + "type": "boolean", + "nullable": true + } + }, + "additionalProperties": false + }, + "ChangeCleFlagsCommand": { + "type": "object", + "properties": { + "cleId": { + "type": "string", + "format": "uuid" + }, + "isSanctioned": { + "type": "boolean", + "nullable": true + }, + "isGovernmentOwned": { + "type": "boolean", + "nullable": true + } + }, + "additionalProperties": false + }, + "ChangeContractActiveStateCommand": { + "type": "object", + "properties": { + "contractIds": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "changeActiveStateTo": { + "type": "boolean" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ChangeContractType4354Command": { + "type": "object", + "properties": { + "ccpsId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "ChangeKycCommand": { + "type": "object", + "properties": { + "cleId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ChatMessageDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "message": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "author": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "authorId": { + "type": "string", + "format": "uuid", + "nullable": true, + "readOnly": true + }, + "date": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "isEdited": { + "type": "boolean", + "readOnly": true + }, + "canEdit": { + "type": "boolean", + "readOnly": true + }, + "isNew": { + "type": "boolean", + "readOnly": true + }, + "isDeleted": { + "type": "boolean", + "readOnly": true + }, + "chatMessageType": { + "$ref": "#/components/schemas/ChatMessageType" + }, + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "ChatMessageType": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "User", + "WorkflowTask" + ] + }, + "ChatMessagesResponse": { + "type": "object", + "properties": { + "messages": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChatMessageDto" + }, + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "ChildrenAgreementCountDto": { + "type": "object", + "properties": { + "projectCount": { + "type": "integer", + "format": "int32" + }, + "frameworkCount": { + "type": "integer", + "format": "int32" + }, + "amendmentCount": { + "type": "integer", + "format": "int32" + }, + "sowCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "ClassifyResultDto": { + "type": "object", + "properties": { + "clauseText": { + "type": "string", + "nullable": true + }, + "clauseType": { + "type": "string", + "nullable": true + }, + "clauseProbability": { + "type": "number", + "format": "double" + } + }, + "additionalProperties": false + }, + "ClauseParagraphDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "text": { + "type": "string", + "nullable": true + }, + "attachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "markups": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MarkupDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ClauseParagraphResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "text": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "attachmentGuid": { + "type": "string", + "format": "uuid", + "nullable": true, + "readOnly": true + }, + "fileName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "markups": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MarkupDto" + }, + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "ClauseState": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Stated", + "NotStated" + ] + }, + "ClientAgreementSearchFiltersDto": { + "type": "object", + "properties": { + "taskFilters": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskFilterType" + }, + "nullable": true + }, + "agreementStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "nullable": true + }, + "clientIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "clientLegalEntityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "edRevenueRecognitionTypes": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "sendToApprovalPeriod": { + "$ref": "#/components/schemas/Period" + }, + "usdAmountTo": { + "type": "number", + "format": "double", + "nullable": true + }, + "usdAmountFrom": { + "type": "number", + "format": "double", + "nullable": true + }, + "agreementTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementType" + }, + "nullable": true + }, + "financialBusinessUnitId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "luxoftLegalEntityId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "dates": { + "$ref": "#/components/schemas/AgreementSearchDatesDto" + }, + "showExpiredAgreements": { + "type": "boolean", + "nullable": true + }, + "contractCoordinatorId": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientAgreementSearchReportQuery": { + "type": "object", + "properties": { + "queryValue": { + "type": "string", + "nullable": true + }, + "filters": { + "$ref": "#/components/schemas/ClientAgreementSearchFiltersDto" + } + }, + "additionalProperties": false + }, + "ClientAgreementSearchWithoutTasksFiltersDto": { + "type": "object", + "properties": { + "agreementStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "nullable": true + }, + "clientIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "clientLegalEntityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "edRevenueRecognitionTypes": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "sendToApprovalPeriod": { + "$ref": "#/components/schemas/Period" + }, + "usdAmountTo": { + "type": "number", + "format": "double", + "nullable": true + }, + "usdAmountFrom": { + "type": "number", + "format": "double", + "nullable": true + }, + "agreementTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementType" + }, + "nullable": true + }, + "financialBusinessUnitId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "luxoftLegalEntityId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "dates": { + "$ref": "#/components/schemas/AgreementSearchDatesDto" + }, + "showExpiredAgreements": { + "type": "boolean", + "nullable": true + }, + "contractCoordinatorId": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientAgreementStatus": { + "enum": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Draft", + "ApproversReview", + "Correction", + "CounterpartyReview", + "CounterpartySigning", + "InternalSigning", + "Archiving", + "Archived", + "Cancelled", + "Annulled", + "LoVerification", + "Visa" + ] + }, + "ClientAgreementStatusChainResponse": { + "type": "object", + "properties": { + "statusChain": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientAgreementTemplateDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "fileName": { + "type": "string", + "nullable": true + }, + "fileType": { + "$ref": "#/components/schemas/FileExtensionsType" + }, + "title": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientAgreementTemplateGroupDto": { + "type": "object", + "properties": { + "templateGroup": { + "$ref": "#/components/schemas/TemplateGroup" + }, + "templates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientAgreementTemplateDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientChildrenAgreementDto": { + "type": "object", + "properties": { + "children": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientChildrenAgreementDto" + }, + "nullable": true, + "readOnly": true + }, + "status": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "archiveDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "contractName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "agreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongationType": { + "$ref": "#/components/schemas/ProlongationType" + }, + "amountUsd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "highlightAmountType": { + "$ref": "#/components/schemas/HighlightAmountType" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractLink": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "agreementId": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "isAmendment": { + "type": "boolean", + "readOnly": true + }, + "expirationStatus": { + "$ref": "#/components/schemas/ExpirationStatus" + } + }, + "additionalProperties": false + }, + "ClientContractAmendmentDateType": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Parent", + "Amendment" + ] + }, + "ClientContractAmendmentFrameworkFields": { + "enum": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Client", + "ClientLegalEntity", + "FinancialBusinessUnit", + "LuxoftLegalEntity", + "ContractStartDate", + "ContractDate", + "ContractExpirationDate", + "Prolongation", + "Description", + "ContractNumber", + "Owner", + "EstimatedContractValueWithoutVatAmendmentAmount", + "EstimatedContractValueWithoutVatAmendmentCurrency", + "EstimatedContractValueWithoutVatAmendmentExchangeRate", + "EstimatedContractValueWithoutVatAmendmentUsd", + "EstimatedContractValueWithoutVatAmendmentTypeOfContractAmount", + "Discounts", + "PaymentTerm", + "PaymentTermValue", + "TerminationForConvenienceClause", + "NotifyPeriodForLuxoft", + "NotifyPeriodForCounterparty", + "PaymentArrangements", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "IsDigitalSigning", + "ClientEmail", + "GoverningLaw", + "SubcontractorEngagement", + "IpOwnership", + "Constraints", + "ThirdPartiesAccounting", + "SpecialClausesAny", + "SpecialClausesNonDisclosure", + "SpecialClausesNonSolicitationClause", + "SpecialClausesDataProcessing", + "SpecialClausesQualityRequirements", + "SpecialClausesItSecurity", + "SpecialClausesBusinessContinuityAndDisasterRecovery", + "SpecialClausesBackgroundCheck", + "SpecialClausesSocialEnvironmentalEthicalAndDiversityProvisions", + "SpecialClausesInsurance", + "SpecialClausesInsuranceValue", + "SpecialClausesPenaltiesLiquidatedDamages", + "SpecialClausesPenaltiesLiquidatedDamagesValue", + "SpecialClausesCertificationRequirements", + "SpecialClausesCertificationRequirementsValue", + "SpecialClausesOfficeSpaceRequirements", + "SpecialClausesOfficeSpaceRequirementsValue", + "SpecialClausesDefinitionOfAffiliate", + "SpecialClausesDefinitionOfAffiliateValue", + "SpecialClausesLimitationOfLiability", + "SpecialClausesLimitationOfLiabilityNotCompliant", + "SpecialClausesLimitationOfLiabilityValue", + "SpecialClausesForceMajeure", + "SpecialClausesForceMajeureValue", + "ActualExecutorsOfWorks", + "Opportunities", + "Vats", + "Warranty", + "AntiCorruptionClause", + "SpecialClausesNonSolicitationClauseValue", + "SpecialClausesNonDisclosureValue", + "SpecialClausesDataProcessingValue", + "SpecialClausesQualityRequirementsValue", + "SpecialClausesItSecurityValue", + "SpecialClausesBusinessContinuityAndDisasterRecoveryValue", + "SpecialClausesBackgroundCheckValue", + "SpecialClausesSocialEnvironmentalEthicalAndDiversityProvisionsValue", + "IsExceptionalWorkflow", + "ParentStartDate", + "ParentExpirationDate", + "DiscountsChangedByThisAmendment", + "SpecialClausesAutomotiveCybersecurity", + "SpecialClausesAutomotiveCybersecurityValue", + "TerminationOption", + "IsTerminationAmendmentType", + "SpecialClausesPhysicalSecurity", + "SpecialClausesPhysicalSecurityValue" + ] + }, + "ClientContractAmendmentFrameworkSpecialClauseType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NonDisclosure", + "NonSolicitationClause", + "DataProcessing", + "QualityRequirements", + "ItSecurity", + "BusinessContinuityAndDisasterRecovery", + "BackgroundCheck", + "SocialEnvironmentalEthicalAndDiversityProvisions", + "Insurance", + "PenaltiesLiquidatedDamages", + "CertificationRequirements", + "OfficeSpaceRequirements", + "DefinitionOfAffiliate", + "LimitationOfLiability", + "ForceMajeure", + "AutomotiveCybersecurity", + "PhysicalSecurity" + ] + }, + "ClientContractAmendmentFrameworkTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "ClientContractAmendmentFrameworkVatDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "vat": { + "type": "number", + "format": "double", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientContractAmendmentFrameworkWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToExceptionalWorkflow", + "CancelFromArchivedContract" + ] + }, + "ClientContractAmendmentNonCommercialFields": { + "enum": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "SpecialProvisions", + "Client", + "ClientLegalEntity", + "FinancialBusinessUnit", + "LuxoftLegalEntity", + "ContractStartDate", + "Prolongation", + "ContractExpirationDate", + "Description", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "ContractDate", + "GoverningLaw", + "ContractNumber", + "Owner", + "IsDigitalSigning", + "ClientEmail", + "NonSolicitationClauseWording", + "IsExceptionalWorkflow", + "ParentStartDate", + "ParentExpirationDate", + "TerminationOption", + "IsTerminationAmendmentType" + ] + }, + "ClientContractAmendmentNonCommercialWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "DiscardDraft", + "ToExceptionalWorkflow", + "CancelFromArchivedContract" + ] + }, + "ClientContractAmendmentProjectDependentSpecialClauseType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NonDisclosure", + "NonSolicitationClause", + "DataProcessing", + "QualityRequirements", + "ItSecurity", + "BusinessContinuityAndDisasterRecovery", + "BackgroundCheck", + "SocialEnvironmentalEthicalAndDiversityProvisions", + "Insurance", + "PenaltiesLiquidatedDamages", + "CertificationRequirements", + "OfficeSpaceRequirements", + "DefinitionOfAffiliate", + "AutomotiveCybersecurity", + "PhysicalSecurity" + ] + }, + "ClientContractAmendmentProjectFields": { + "enum": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 62, + 63, + 64, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Client", + "ClientLegalEntity", + "FinancialBusinessUnit", + "LuxoftLegalEntity", + "ContractStartDate", + "ContractDate", + "ContractExpirationDate", + "Prolongation", + "Description", + "ContractNumber", + "Owner", + "TotalContractValueAmendmentAmount", + "TotalContractValueAmendmentCurrency", + "TotalContractValueAmendmentExchangeRate", + "TotalContractValueAmendmentUsd", + "OnSiteWork", + "Discounts", + "PrincipalPricingModel", + "PaymentTerm", + "PaymentTermValue", + "PaymentArrangements", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "IsDigitalSigning", + "ClientEmail", + "GoverningLaw", + "OfficeTypes", + "EngagementModel", + "OssRisk", + "TerminationForConvenienceClause", + "SubcontractorEngagement", + "ThirdPartiesAccounting", + "UsingLuxoftPreExistingIp", + "IpOwnership", + "Constraints", + "SpecialClausesAny", + "SpecialClausesNonDisclosure", + "SpecialClausesNonSolicitationClause", + "SpecialClausesDataProcessing", + "SpecialClausesQualityRequirements", + "SpecialClausesItSecurity", + "SpecialClausesBusinessContinuityAndDisasterRecovery", + "SpecialClausesBackgroundCheck", + "SpecialClausesSocialEnvironmentalEthicalAndDiversityProvisions", + "SpecialClausesInsurance", + "SpecialClausesInsuranceValue", + "SpecialClausesPenaltiesLiquidatedDamages", + "SpecialClausesPenaltiesLiquidatedDamagesValue", + "SpecialClausesCertificationRequirements", + "SpecialClausesCertificationRequirementsValue", + "SpecialClausesOfficeSpaceRequirements", + "SpecialClausesOfficeSpaceRequirementsValue", + "SpecialClausesDefinitionOfAffiliate", + "SpecialClausesDefinitionOfAffiliateValue", + "ActualExecutorsOfWorks", + "Opportunities", + "Vats", + "Warranty", + "AntiCorruptionClause", + "EdRevenueRecognitionTypes", + "NotifyPeriodForLuxoft", + "NotifyPeriodForCounterparty", + "SpecialClausesLimitationOfLiability", + "SpecialClausesLimitationOfLiabilityNotCompliant", + "SpecialClausesLimitationOfLiabilityValue", + "SpecialClausesForceMajeure", + "SpecialClausesForceMajeureValue", + "TotalContractValueAmendmentTypeOfContractAmount", + "SpecialClausesNonDisclosureValue", + "SpecialClausesNonSolicitationClauseValue", + "SpecialClausesDataProcessingValue", + "SpecialClausesQualityRequirementsValue", + "SpecialClausesItSecurityValue", + "SpecialClausesBusinessContinuityAndDisasterRecoveryValue", + "SpecialClausesBackgroundCheckValue", + "SpecialClausesSocialEnvironmentalEthicalAndDiversityProvisionsValue", + "CanBeProjectLevel", + "IsExceptionalWorkflow", + "ParentStartDate", + "ParentExpirationDate", + "DiscountsChangedByThisAmendment", + "SpecialClausesAutomotiveCybersecurity", + "SpecialClausesAutomotiveCybersecurityValue", + "ProcessingType", + "TerminationOption", + "IsTerminationAmendmentType", + "SpecialClausesPhysicalSecurity", + "SpecialClausesPhysicalSecurityValue", + "EqualPayAmountPerYear" + ] + }, + "ClientContractAmendmentProjectStandaloneSpecialClauseType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NonDisclosure", + "NonSolicitationClause", + "DataProcessing", + "QualityRequirements", + "ItSecurity", + "BusinessContinuityAndDisasterRecovery", + "BackgroundCheck", + "SocialEnvironmentalEthicalAndDiversityProvisions", + "Insurance", + "PenaltiesLiquidatedDamages", + "CertificationRequirements", + "OfficeSpaceRequirements", + "DefinitionOfAffiliate", + "LimitationOfLiability", + "ForceMajeure", + "AutomotiveCybersecurity", + "PhysicalSecurity" + ] + }, + "ClientContractAmendmentProjectTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "ClientContractAmendmentProjectVatDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "vat": { + "type": "number", + "format": "double", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientContractAmendmentProjectWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToExceptionalWorkflow", + "CancelFromArchivedContract" + ] + }, + "ClientContractFrameworkDependentType": { + "enum": [ + 1, + 2, + 3, + 4, + 5 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "LocalCountryAgreement", + "ParticipationAgreement", + "MasterSow", + "FrameworkPo", + "NominationAgreement" + ] + }, + "ClientContractFrameworkFields": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "ContractType", + "Client", + "ClientLegalEntity", + "FinancialBusinessUnit", + "LuxoftLegalEntity", + "ContractStartDate", + "ContractDate", + "ContractExpirationDate", + "Prolongation", + "Description", + "ContractNumber", + "Owner", + "EstimatedContractValueWithoutVatAmount", + "EstimatedContractValueWithoutVatCurrency", + "EstimatedContractValueWithoutVatExchangeRate", + "EstimatedContractValueWithoutVatUsd", + "Discounts", + "PaymentTerm", + "PaymentTermValue", + "TerminationForConvenienceClause", + "NotifyPeriodForLuxoft", + "NotifyPeriodForCounterparty", + "PaymentArrangements", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "IsDigitalSigning", + "ClientEmail", + "GoverningLaw", + "SubcontractorEngagement", + "IpOwnership", + "Constraints", + "ThirdPartiesAccounting", + "SpecialClausesAny", + "SpecialClausesNonDisclosure", + "SpecialClausesNonSolicitationClause", + "SpecialClausesDataProcessing", + "SpecialClausesQualityRequirements", + "SpecialClausesItSecurity", + "SpecialClausesBusinessContinuityAndDisasterRecovery", + "SpecialClausesBackgroundCheck", + "SpecialClausesSocialEnvironmentalEthicalAndDiversityProvisions", + "SpecialClausesInsurance", + "SpecialClausesInsuranceValue", + "SpecialClausesPenaltiesLiquidatedDamages", + "SpecialClausesPenaltiesLiquidatedDamagesValue", + "SpecialClausesCertificationRequirements", + "SpecialClausesCertificationRequirementsValue", + "SpecialClausesOfficeSpaceRequirements", + "SpecialClausesOfficeSpaceRequirementsValue", + "SpecialClausesDefinitionOfAffiliate", + "SpecialClausesDefinitionOfAffiliateValue", + "SpecialClausesLimitationOfLiability", + "SpecialClausesLimitationOfLiabilityNotCompliant", + "SpecialClausesLimitationOfLiabilityValue", + "SpecialClausesForceMajeure", + "SpecialClausesForceMajeureValue", + "ActualExecutorsOfWorks", + "Opportunities", + "Vats", + "Warranty", + "AntiCorruptionClause", + "RevenueStream", + "IsExceptionalWorkflow", + "SpecialClausesNonDisclosureValue", + "SpecialClausesNonSolicitationClauseValue", + "SpecialClausesDataProcessingValue", + "SpecialClausesQualityRequirementsValue", + "SpecialClausesItSecurityValue", + "SpecialClausesBusinessContinuityAndDisasterRecoveryValue", + "SpecialClausesBackgroundCheckValue", + "SpecialClausesSocialEnvironmentalEthicalAndDiversityProvisionsValue", + "SpecialClausesAutomotiveCybersecurity", + "SpecialClausesAutomotiveCybersecurityValue", + "SpecialClausesPhysicalSecurity", + "SpecialClausesPhysicalSecurityValue" + ] + }, + "ClientContractFrameworkSpecialClauseType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NonDisclosure", + "NonSolicitationClause", + "DataProcessing", + "QualityRequirements", + "ItSecurity", + "BusinessContinuityAndDisasterRecovery", + "BackgroundCheck", + "SocialEnvironmentalEthicalAndDiversityProvisions", + "Insurance", + "PenaltiesLiquidatedDamages", + "CertificationRequirements", + "OfficeSpaceRequirements", + "DefinitionOfAffiliate", + "LimitationOfLiability", + "ForceMajeure", + "AutomotiveCybersecurity", + "PhysicalSecurity" + ] + }, + "ClientContractFrameworkStandaloneType": { + "enum": [ + 1, + 2, + 3, + 4 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "FrameworkContract", + "TermsAndConditions", + "Framework", + "PartnershipAgreement" + ] + }, + "ClientContractFrameworkTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "ClientContractFrameworkVatDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "vat": { + "type": "number", + "format": "double", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientContractFrameworkWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToExceptionalWorkflow", + "CancelFromArchivedContract" + ] + }, + "ClientContractHeaderWithParentResponse": { + "type": "object", + "properties": { + "contractName": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "parents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentWithLinkDto" + }, + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "ClientContractProjectDependentSpecialClauseType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NonDisclosure", + "NonSolicitationClause", + "DataProcessing", + "QualityRequirements", + "ItSecurity", + "BusinessContinuityAndDisasterRecovery", + "BackgroundCheck", + "SocialEnvironmentalEthicalAndDiversityProvisions", + "Insurance", + "PenaltiesLiquidatedDamages", + "CertificationRequirements", + "OfficeSpaceRequirements", + "DefinitionOfAffiliate", + "AutomotiveCybersecurity", + "PhysicalSecurity" + ] + }, + "ClientContractProjectDependentType": { + "enum": [ + 1, + 2, + 3, + 4, + 5 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "StatementOfWork", + "PurchaseOrder", + "BodyLeaseAgreement", + "VmsSystemRecord", + "ChangeRequest" + ] + }, + "ClientContractProjectFields": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "ContractType", + "Client", + "ClientLegalEntity", + "FinancialBusinessUnit", + "LuxoftLegalEntity", + "ContractStartDate", + "ContractDate", + "ContractExpirationDate", + "Prolongation", + "Description", + "ContractNumber", + "Owner", + "TotalContractValueAmount", + "TotalContractValueCurrency", + "TotalContractValueExchangeRate", + "TotalContractValueUsd", + "OnSiteWork", + "Discounts", + "PrincipalPricingModel", + "PaymentTerm", + "PaymentTermValue", + "PaymentArrangements", + "RevenueRecognitionTypes", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "IsDigitalSigning", + "ClientEmail", + "GoverningLaw", + "OfficeTypes", + "EngagementModel", + "OssRisk", + "TerminationForConvenienceClause", + "SubcontractorEngagement", + "ThirdPartiesAccounting", + "UsingLuxoftPreExistingIp", + "IpOwnership", + "Constraints", + "SpecialClausesAny", + "SpecialClausesNonDisclosure", + "SpecialClausesNonSolicitationClause", + "SpecialClausesDataProcessing", + "SpecialClausesQualityRequirements", + "SpecialClausesItSecurity", + "SpecialClausesBusinessContinuityAndDisasterRecovery", + "SpecialClausesBackgroundCheck", + "SpecialClausesSocialEnvironmentalEthicalAndDiversityProvisions", + "SpecialClausesInsurance", + "SpecialClausesInsuranceValue", + "SpecialClausesPenaltiesLiquidatedDamages", + "SpecialClausesPenaltiesLiquidatedDamagesValue", + "SpecialClausesCertificationRequirements", + "SpecialClausesCertificationRequirementsValue", + "SpecialClausesOfficeSpaceRequirements", + "SpecialClausesOfficeSpaceRequirementsValue", + "SpecialClausesDefinitionOfAffiliate", + "SpecialClausesDefinitionOfAffiliateValue", + "ActualExecutorsOfWorks", + "Opportunities", + "Vats", + "Warranty", + "AntiCorruptionClause", + "RevenueStream", + "EdRevenueRecognitionTypes", + "NotifyPeriodForLuxoft", + "NotifyPeriodForCounterparty", + "SpecialClausesLimitationOfLiability", + "SpecialClausesLimitationOfLiabilityNotCompliant", + "SpecialClausesLimitationOfLiabilityValue", + "SpecialClausesForceMajeure", + "SpecialClausesForceMajeureValue", + "IsExceptionalWorkflow", + "SpecialClausesNonDisclosureValue", + "SpecialClausesNonSolicitationClauseValue", + "SpecialClausesDataProcessingValue", + "SpecialClausesQualityRequirementsValue", + "SpecialClausesItSecurityValue", + "SpecialClausesBusinessContinuityAndDisasterRecoveryValue", + "SpecialClausesBackgroundCheckValue", + "SpecialClausesSocialEnvironmentalEthicalAndDiversityProvisionsValue", + "SpecialClausesAutomotiveCybersecurity", + "SpecialClausesAutomotiveCybersecurityValue", + "ProcessingType", + "SpecialClausesPhysicalSecurity", + "SpecialClausesPhysicalSecurityValue", + "EqualPayAmountPerYear" + ] + }, + "ClientContractProjectStandaloneSpecialClauseType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NonDisclosure", + "NonSolicitationClause", + "DataProcessing", + "QualityRequirements", + "ItSecurity", + "BusinessContinuityAndDisasterRecovery", + "BackgroundCheck", + "SocialEnvironmentalEthicalAndDiversityProvisions", + "Insurance", + "PenaltiesLiquidatedDamages", + "CertificationRequirements", + "OfficeSpaceRequirements", + "DefinitionOfAffiliate", + "LimitationOfLiability", + "ForceMajeure", + "AutomotiveCybersecurity", + "PhysicalSecurity" + ] + }, + "ClientContractProjectStandaloneType": { + "enum": [ + 1, + 2, + 3, + 4 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "ProjectAgreement", + "LicenseAgreement", + "NegotiationProtocol", + "IndividualLeaseAgreement" + ] + }, + "ClientContractProjectTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "ClientContractProjectVatDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "vat": { + "type": "number", + "format": "double", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientContractProjectWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 5, + 6, + 7, + 8 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "DiscardDraft", + "ToExceptionalWorkflow", + "FastTrack", + "CancelFromArchivedContract" + ] + }, + "ClientContractSearchDto": { + "type": "object", + "properties": { + "revenueRecognitionTypes": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "contractType": { + "$ref": "#/components/schemas/AgreementType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "clientName": { + "type": "string", + "nullable": true + }, + "fbuName": { + "type": "string", + "nullable": true + }, + "expirationStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationEndDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongationType": { + "$ref": "#/components/schemas/ProlongationType" + }, + "totalAmount": { + "type": "number", + "format": "double", + "nullable": true + }, + "currencyCode": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "clientAgreementStatus": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "contractLink": { + "type": "string", + "nullable": true + }, + "luxContractLink": { + "type": "string", + "nullable": true + }, + "parents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentDto" + }, + "nullable": true + }, + "isAmendment": { + "type": "boolean" + }, + "expirationStatus": { + "$ref": "#/components/schemas/ExpirationStatus" + } + }, + "additionalProperties": false + }, + "ClientContractSearchQuery": { + "type": "object", + "properties": { + "queryValue": { + "type": "string", + "nullable": true + }, + "filters": { + "$ref": "#/components/schemas/ClientAgreementSearchFiltersDto" + }, + "offset": { + "type": "integer", + "format": "int32" + }, + "pageSize": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "ClientContractSearchResponse": { + "type": "object", + "properties": { + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractSearchDto" + }, + "nullable": true + }, + "total": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "ClientContractTaskInfoDto": { + "type": "object", + "properties": { + "contractGuid": { + "type": "string", + "format": "uuid" + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientLegalEntityDto": { + "type": "object", + "properties": { + "kycApprovalStatus": { + "$ref": "#/components/schemas/KycApprovalStatus" + }, + "isGovernmentOwned": { + "type": "boolean" + }, + "isSanctioned": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientMegaAgreementWithChildrenDto": { + "type": "object", + "properties": { + "expirationStatus": { + "$ref": "#/components/schemas/ExpirationStatus" + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "children": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientMegaAgreementWithChildrenDto" + }, + "nullable": true, + "readOnly": true + }, + "isAmendment": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "contractLink": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "description": { + "type": "string", + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "endDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongationType": { + "$ref": "#/components/schemas/ProlongationType" + }, + "agreementType": { + "$ref": "#/components/schemas/AgreementType" + } + }, + "additionalProperties": false + }, + "ClientNonCommercialDocumentFields": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "ContractType", + "SpecialProvisions", + "Client", + "ClientLegalEntity", + "FinancialBusinessUnit", + "LuxoftLegalEntity", + "ContractTemplate", + "ContractStartDate", + "Prolongation", + "ContractExpirationDate", + "Description", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "ContractDate", + "GoverningLawNew", + "ContractNumber", + "Owner", + "IsDigitalSigning", + "ClientEmail", + "NonSolicitationClauseWording", + "GoverningLaw", + "IsExceptionalWorkflow" + ] + }, + "ClientNonCommercialDocumentSubtype": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NonDisclosureAgreement", + "DataProcessingAgreement", + "ItSecurityAgreement", + "CodeOfConduct", + "ContractRelatedLetters", + "LetterOfIntent", + "OtherNonCommercial", + "RFPRelatedDocumentation" + ] + }, + "ClientNonCommercialDocumentTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "ClientNonCommercialDocumentWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToExceptionalWorkflow", + "CancelFromArchivedContract" + ] + }, + "CommodityResponseDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + }, + "isContingencyWorkforce": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "ContractCountByValueDto": { + "type": "object", + "properties": { + "group": { + "$ref": "#/components/schemas/ValueGroup" + }, + "agreementCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "ContractTemplateType": { + "enum": [ + 1, + 2, + 3, + 4 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Luxoft", + "NonStandard", + "ApprovedByContract", + "Preapproved" + ] + }, + "CopyClientContractAmendmentProjectDependentCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "isFastTack": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "CopyClientContractAmendmentProjectStandaloneCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "isFastTack": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "CopyClientContractProjectDependentCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "isFastTack": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "CopyClientContractProjectStandaloneCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "isFastTack": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "CopyClientNonCommercialDocumentCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CopySupplierContractMasterServiceAgreementCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CopySupplierContractMsaWithSowDetailCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CopySupplierContractNonCommercialCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CopySupplierContractStatementOfWorkCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CountryDto": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "code": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "CreateClientAgreementTemplateCommand": { + "type": "object", + "properties": { + "title": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "templateGroup": { + "$ref": "#/components/schemas/TemplateGroup" + }, + "tempFileId": { + "type": "string", + "format": "uuid" + }, + "tempPngThumbnailId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateClientContractAmendmentFrameworkDependentCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateClientContractAmendmentFrameworkStandaloneCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateClientContractAmendmentNonCommercialCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateClientContractAmendmentProjectDependentCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateClientContractAmendmentProjectStandaloneCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateClientContractFrameworkDependentCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + }, + "contractType": { + "$ref": "#/components/schemas/ClientContractFrameworkDependentType" + } + }, + "additionalProperties": false + }, + "CreateClientContractFrameworkStandaloneCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "contractType": { + "$ref": "#/components/schemas/ClientContractFrameworkStandaloneType" + } + }, + "additionalProperties": false + }, + "CreateClientContractProjectDependentCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + }, + "contractType": { + "$ref": "#/components/schemas/ClientContractProjectDependentType" + } + }, + "additionalProperties": false + }, + "CreateClientContractProjectStandaloneCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "contractType": { + "$ref": "#/components/schemas/ClientContractProjectStandaloneType" + } + }, + "additionalProperties": false + }, + "CreateSupplierAgreementTemplateCommand": { + "type": "object", + "properties": { + "title": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "countryId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "tempFileId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateSupplierContractAmendmentMasterServiceAgreementCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateSupplierContractAmendmentMsaWithSowDetailCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateSupplierContractAmendmentNonCommercialCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateSupplierContractAmendmentStatementOfWorkCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CreateSupplierContractMasterServiceAgreementCommand": { + "type": "object", + "additionalProperties": false + }, + "CreateSupplierContractMsaWithSowDetailCommand": { + "type": "object", + "additionalProperties": false + }, + "CreateSupplierContractStatementOfWorkCommand": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "DateTimeFieldChangeDto": { + "type": "object", + "allOf": [ + { + "$ref": "#/components/schemas/FieldChangeDto" + } + ], + "properties": { + "previousValue": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "currentValue": { + "type": "string", + "format": "date-time", + "nullable": true + } + }, + "additionalProperties": false + }, + "DeactivateTerminationCommand": { + "type": "object", + "properties": { + "contractIds": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "DiscountType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "None", + "EarlyPayment", + "OneTime", + "RatesDiscount", + "VolumeBased", + "Other", + "Rebate" + ] + }, + "ESigningEmailsDto": { + "type": "object", + "properties": { + "luxoftSigner": { + "$ref": "#/components/schemas/EmailOrderDto" + }, + "counterpartySigner": { + "$ref": "#/components/schemas/EmailOrderDto" + } + }, + "additionalProperties": false + }, + "ESigningField": { + "enum": [ + 1, + 2, + 3, + 4, + 5 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Signature", + "Name", + "SignatureDate", + "AdditionalData", + "Title" + ] + }, + "ESigningFieldDto": { + "type": "object", + "properties": { + "email": { + "type": "string", + "nullable": true + }, + "recipientType": { + "$ref": "#/components/schemas/ESigningRecipientType" + }, + "fieldId": { + "$ref": "#/components/schemas/ESigningField" + }, + "markup": { + "$ref": "#/components/schemas/MarkupDto" + } + }, + "additionalProperties": false + }, + "ESigningRecipientType": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Counterparty", + "Luxoft" + ] + }, + "EmailOrderDto": { + "type": "object", + "properties": { + "email": { + "type": "string", + "nullable": true + }, + "order": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "EmployeeDto": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "EmployeeWithEmailDto": { + "type": "object", + "properties": { + "email": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "EmployeeWithPositionResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + }, + "position": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "EngagementModelType": { + "enum": [ + 1, + 2, + 3 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "StaffAugmentation", + "ManagedDelivery", + "Empty" + ] + }, + "ExecuteClientContractAmendmentFrameworkDependentActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractAmendmentFrameworkDependentTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractAmendmentFrameworkStandaloneActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractAmendmentFrameworkStandaloneTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractAmendmentNonCommercialActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/ClientContractAmendmentNonCommercialWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractAmendmentNonCommercialTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractAmendmentProjectDependentActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractAmendmentProjectDependentTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractAmendmentProjectStandaloneActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractAmendmentProjectStandaloneTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractFrameworkDependentActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/ClientContractFrameworkWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractFrameworkDependentTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractFrameworkStandaloneActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/ClientContractFrameworkWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractFrameworkStandaloneTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractProjectDependentActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/ClientContractProjectWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractProjectDependentTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractProjectStandaloneActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/ClientContractProjectWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientContractProjectStandaloneTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientNonCommercialDocumentActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/ClientNonCommercialDocumentWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteClientNonCommercialDocumentTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractAmendmentMasterServiceAgreementActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/SupplierContractAmendmentMasterServiceAgreementWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractAmendmentMasterServiceAgreementTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractAmendmentMsaWithSowDetailActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/SupplierContractAmendmentMsaWithSowDetailWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractAmendmentMsaWithSowDetailTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractAmendmentNonCommercialActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/SupplierContractAmendmentNonCommercialWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractAmendmentNonCommercialTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractAmendmentStatementOfWorkActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/SupplierContractAmendmentStatementOfWorkWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractAmendmentStatementOfWorkTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractMasterServiceAgreementActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/SupplierContractMasterServiceAgreementWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractMasterServiceAgreementTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractMsaWithSowDetailActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/SupplierContractMsaWithSowDetailWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractMsaWithSowDetailTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractNonCommercialActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/SupplierContractNonCommercialWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractNonCommercialTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractStatementOfWorkActionCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "actionKey": { + "$ref": "#/components/schemas/SupplierContractStatementOfWorkWorkflowActionKey" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExecuteSupplierContractStatementOfWorkTaskCommand": { + "type": "object", + "properties": { + "taskId": { + "type": "string", + "format": "uuid" + }, + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExpirationStatus": { + "enum": [ + 0, + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Normal", + "WillExpireSoon", + "Expired" + ] + }, + "ExplainAgreementsSearchDto": { + "type": "object", + "properties": { + "searchQuery": { + "type": "string", + "nullable": true + }, + "offset": { + "type": "integer", + "format": "int32" + }, + "pageSize": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "FeePaymentTypes": { + "enum": [ + 1, + 2, + 3, + 4, + 5 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "PercentYearlyBaseSalary", + "PercentYearlyTotalSalary", + "SuccessFeeInFixedFee", + "SuccessFeePlusRetainer", + "Mix" + ] + }, + "FieldChangeDto": { + "required": [ + "type" + ], + "type": "object", + "properties": { + "type": { + "type": "string" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false, + "discriminator": { + "propertyName": "type", + "mapping": { + "1": "#/components/schemas/IntFieldChangeDto", + "2": "#/components/schemas/BoolFieldChangeDto", + "3": "#/components/schemas/TextFieldChangeDto", + "4": "#/components/schemas/DateTimeFieldChangeDto", + "5": "#/components/schemas/AttachmentFieldChangeDto" + } + } + }, + "FileExtensionsType": { + "enum": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Other", + "Xls", + "Doc", + "Msg", + "Ppt", + "Pdf" + ] + }, + "FilteredTasksCounterResponse": { + "type": "object", + "properties": { + "unassignedTasks": { + "$ref": "#/components/schemas/TasksCounterDto" + }, + "personalTasks": { + "$ref": "#/components/schemas/TasksCounterDto" + } + }, + "additionalProperties": false + }, + "FixExpirationDate4269Command": { + "type": "object", + "properties": { + "contractIds": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "FixMigratedContractsCommand": { + "type": "object", + "additionalProperties": false + }, + "GetAdditionContractInfoRequestDto": { + "type": "object", + "properties": { + "agreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "agreementId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "GetAdobeRefreshTokenCommand": { + "type": "object", + "properties": { + "authCode": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetAgreementTasksResponse": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowTaskCommandDto" + }, + "nullable": true, + "readOnly": true + }, + "currentEmployeeId": { + "type": "string", + "format": "uuid", + "nullable": true, + "readOnly": true + }, + "assignedTo": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "comment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "instructions": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "taskRoleId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "taskRoleName": { + "type": "string", + "nullable": true + }, + "title": { + "type": "string", + "nullable": true + }, + "dueDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expired": { + "type": "boolean" + }, + "assignedBy": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + } + }, + "additionalProperties": false + }, + "GetAgreementTypesByLobResponse": { + "type": "object", + "properties": { + "lobId": { + "type": "string", + "format": "uuid" + }, + "lob": { + "type": "string", + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time" + }, + "endDate": { + "type": "string", + "format": "date-time" + }, + "agreementTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementTypeByLobDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetAgreementsByCleCountryByTwoWeeksResponse": { + "type": "object", + "properties": { + "contractByCountry": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementCountByCountryDto" + }, + "nullable": true + }, + "anotherCountryCount": { + "type": "integer", + "format": "int32" + }, + "anotherContractCount": { + "type": "integer", + "format": "int32" + }, + "startDate": { + "type": "string", + "format": "date-time" + }, + "endDate": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false + }, + "GetAgreementsByLobByTwoWeeksResponse": { + "type": "object", + "properties": { + "lobs": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementCountByLobDto" + }, + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time" + }, + "endDate": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false + }, + "GetAgreementsForRelationResponse": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "agreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "clientAgreementStatus": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "supplierAgreementStatus": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "counterpartyName": { + "type": "string", + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongationType": { + "$ref": "#/components/schemas/ProlongationType" + } + }, + "additionalProperties": false + }, + "GetAllClientAgreementTemplatesResponse": { + "type": "object", + "properties": { + "templates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientAgreementTemplateGroupDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetAllSupplierAgreementTemplatesResponse": { + "type": "object", + "properties": { + "templates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierAgreementTemplateDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkDependentContentResponse": { + "type": "object", + "properties": { + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/TerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "notifyPeriodForLuxoft": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorksComment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "ipOwnership": { + "$ref": "#/components/schemas/IpOwnershipType" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/SubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "specialClauses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkSpecialClauseType" + }, + "nullable": true, + "readOnly": true + }, + "antiCorruptionClause": { + "$ref": "#/components/schemas/ClauseState" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkDependentFinancialResponse": { + "type": "object", + "properties": { + "parentDiscounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "grandTotalInUsd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "grandTotalInCurrency": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "grandTotalCurrency": { + "$ref": "#/components/schemas/NameEntity" + }, + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "paymentArrangements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PaymentArrangementTypes" + }, + "nullable": true, + "readOnly": true + }, + "discounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "discountsChangedByThisAmendment": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "paymentTerm": { + "$ref": "#/components/schemas/PaymentTermType" + }, + "paymentTermValue": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "currency": { + "$ref": "#/components/schemas/NameEntity" + }, + "exchangeRate": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "usd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "typeOfContractAmount": { + "$ref": "#/components/schemas/TypeOfContractAmount" + }, + "revenueStream": { + "$ref": "#/components/schemas/RevenueStreamType" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkDependentParentInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/ClientContractFrameworkDependentType" + }, + "description": { + "type": "string", + "nullable": true + }, + "contractNumber": { + "type": "string", + "nullable": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientLegalEntityDto" + }, + "nullable": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "actualProlongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "terminationOption": { + "$ref": "#/components/schemas/TerminationOption" + }, + "isTerminationAmendmentType": { + "$ref": "#/components/schemas/IsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkDependentSpecialClausesViaAiQuery": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "attachmentIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkDependentTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkDependentTaskDetailResponse": { + "type": "object", + "properties": { + "clientLegalEntities": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "client": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkMainInfoResponse": { + "type": "object", + "properties": { + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "description": { + "type": "string", + "nullable": true + }, + "contractNumber": { + "type": "string", + "nullable": true + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkProcessingResponse": { + "type": "object", + "properties": { + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "luxoftSigningRequired": { + "type": "boolean", + "readOnly": true + }, + "clientSigningRequired": { + "type": "boolean", + "readOnly": true + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "clientEmail": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkRevenueRecognitionResponse": { + "type": "object", + "properties": { + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkSpecialClausesResponse": { + "type": "object", + "properties": { + "nonDisclosure": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/ClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/ClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/ClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/ClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "insurance": { + "$ref": "#/components/schemas/ClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/ClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/ClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/ClauseState" + }, + "limitationOfLiabilityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "limitationOfLiabilityNotCompliant": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "forceMajeure": { + "$ref": "#/components/schemas/ClauseState" + }, + "forceMajeureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkStandaloneContentResponse": { + "type": "object", + "properties": { + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/TerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "notifyPeriodForLuxoft": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorksComment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "ipOwnership": { + "$ref": "#/components/schemas/IpOwnershipType" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/SubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "specialClauses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkSpecialClauseType" + }, + "nullable": true, + "readOnly": true + }, + "antiCorruptionClause": { + "$ref": "#/components/schemas/ClauseState" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkStandaloneFinancialResponse": { + "type": "object", + "properties": { + "parentDiscounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "grandTotalInUsd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "grandTotalInCurrency": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "grandTotalCurrency": { + "$ref": "#/components/schemas/NameEntity" + }, + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "paymentArrangements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PaymentArrangementTypes" + }, + "nullable": true, + "readOnly": true + }, + "discounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "discountsChangedByThisAmendment": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "paymentTerm": { + "$ref": "#/components/schemas/PaymentTermType" + }, + "paymentTermValue": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "currency": { + "$ref": "#/components/schemas/NameEntity" + }, + "exchangeRate": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "usd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "typeOfContractAmount": { + "$ref": "#/components/schemas/TypeOfContractAmount" + }, + "revenueStream": { + "$ref": "#/components/schemas/RevenueStreamType" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkStandaloneParentInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/ClientContractFrameworkStandaloneType" + }, + "description": { + "type": "string", + "nullable": true + }, + "contractNumber": { + "type": "string", + "nullable": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientLegalEntityDto" + }, + "nullable": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "actualProlongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "terminationOption": { + "$ref": "#/components/schemas/TerminationOption" + }, + "isTerminationAmendmentType": { + "$ref": "#/components/schemas/IsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkStandaloneSpecialClausesViaAiQuery": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "attachmentIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkStandaloneTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkStandaloneTaskDetailResponse": { + "type": "object", + "properties": { + "clientLegalEntities": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "client": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkVatsResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "luxoftLegalEntityId": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "luxoftLegalEntityName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "counterpartyName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "vat": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "comment": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentFrameworkWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentNonCommercialContentResponse": { + "type": "object", + "properties": { + "nonSolicitationClauseWording": { + "type": "string", + "nullable": true + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "specialProvisions": { + "$ref": "#/components/schemas/SpecialProvisionTypes" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentNonCommercialHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentNonCommercialFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentNonCommercialMainInfoResponse": { + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + }, + "contractNumber": { + "type": "string", + "nullable": true + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentNonCommercialParentInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/ClientNonCommercialDocumentSubtype" + }, + "description": { + "type": "string", + "nullable": true + }, + "contractNumber": { + "type": "string", + "nullable": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "actualProlongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "terminationOption": { + "$ref": "#/components/schemas/TerminationOption" + }, + "isTerminationAmendmentType": { + "$ref": "#/components/schemas/IsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentNonCommercialProcessingResponse": { + "type": "object", + "properties": { + "contractTemplate": { + "$ref": "#/components/schemas/ContractTemplateType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true + }, + "luxoftSigningRequired": { + "type": "boolean" + }, + "clientSigningRequired": { + "type": "boolean" + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true + }, + "clientEmail": { + "type": "string", + "nullable": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentNonCommercialTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentNonCommercialTaskDetailResponse": { + "type": "object", + "properties": { + "clientLegalEntities": { + "type": "string", + "nullable": true + }, + "client": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentNonCommercialWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentNonCommercialFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentNonCommercialFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentNonCommercialFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectDependentContentResponse": { + "type": "object", + "properties": { + "specialClauses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectDependentSpecialClauseType" + }, + "nullable": true, + "readOnly": true + }, + "equalPayAmountPerYearEur": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/TerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "notifyPeriodForLuxoft": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorksComment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "onSiteWork": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "ossRisk": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "ipOwnership": { + "$ref": "#/components/schemas/IpOwnershipType" + }, + "usingLuxoftPreExistingIp": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "officeTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OfficeTypes" + }, + "nullable": true, + "readOnly": true + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/SubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "engagementModel": { + "$ref": "#/components/schemas/EngagementModelType" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectDependentFinancialResponse": { + "type": "object", + "properties": { + "canBeProjectLevel": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "parentDiscounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "grandTotalInUsd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "grandTotalInCurrency": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "grandTotalCurrency": { + "$ref": "#/components/schemas/NameEntity" + }, + "paymentArrangements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PaymentArrangementTypes" + }, + "nullable": true, + "readOnly": true + }, + "principalPricingModel": { + "$ref": "#/components/schemas/PrincipalPricingModelType" + }, + "discounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "discountsChangedByThisAmendment": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "paymentTerm": { + "$ref": "#/components/schemas/PaymentTermType" + }, + "paymentTermValue": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "currency": { + "$ref": "#/components/schemas/NameEntity" + }, + "exchangeRate": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "usd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "typeOfContractAmount": { + "$ref": "#/components/schemas/TypeOfContractAmount" + }, + "revenueStream": { + "$ref": "#/components/schemas/RevenueStreamType" + }, + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "edRevenueRecognitionTypes": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectDependentParentInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/ClientContractProjectDependentType" + }, + "description": { + "type": "string", + "nullable": true + }, + "contractNumber": { + "type": "string", + "nullable": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientLegalEntityDto" + }, + "nullable": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "actualProlongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "terminationOption": { + "$ref": "#/components/schemas/TerminationOption" + }, + "isTerminationAmendmentType": { + "$ref": "#/components/schemas/IsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectDependentSpecialClausesResponse": { + "type": "object", + "properties": { + "nonDisclosure": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/ClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/ClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/ClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/ClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "insurance": { + "$ref": "#/components/schemas/ClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/ClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/ClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectDependentSpecialClausesViaAiQuery": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "attachmentIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectDependentTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectDependentTaskDetailResponse": { + "type": "object", + "properties": { + "clientLegalEntities": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "client": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectMainInfoResponse": { + "type": "object", + "properties": { + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "description": { + "type": "string", + "nullable": true + }, + "contractNumber": { + "type": "string", + "nullable": true + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectProcessingResponse": { + "type": "object", + "properties": { + "processingType": { + "$ref": "#/components/schemas/ProcessingType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "luxoftSigningRequired": { + "type": "boolean", + "readOnly": true + }, + "clientSigningRequired": { + "type": "boolean", + "readOnly": true + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "clientEmail": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectRevenueRecognitionResponse": { + "type": "object", + "properties": { + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "edRevenueRecognitionTypes": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true, + "readOnly": true + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectStandaloneContentResponse": { + "type": "object", + "properties": { + "antiCorruptionClause": { + "$ref": "#/components/schemas/ClauseState" + }, + "specialClauses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectStandaloneSpecialClauseType" + }, + "nullable": true, + "readOnly": true + }, + "equalPayAmountPerYearEur": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/TerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "notifyPeriodForLuxoft": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorksComment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "onSiteWork": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "ossRisk": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "ipOwnership": { + "$ref": "#/components/schemas/IpOwnershipType" + }, + "usingLuxoftPreExistingIp": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "officeTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OfficeTypes" + }, + "nullable": true, + "readOnly": true + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/SubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "engagementModel": { + "$ref": "#/components/schemas/EngagementModelType" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectStandaloneFinancialResponse": { + "type": "object", + "properties": { + "canBeProjectLevel": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "parentDiscounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "grandTotalInUsd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "grandTotalInCurrency": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "grandTotalCurrency": { + "$ref": "#/components/schemas/NameEntity" + }, + "paymentArrangements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PaymentArrangementTypes" + }, + "nullable": true, + "readOnly": true + }, + "principalPricingModel": { + "$ref": "#/components/schemas/PrincipalPricingModelType" + }, + "discounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "discountsChangedByThisAmendment": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "paymentTerm": { + "$ref": "#/components/schemas/PaymentTermType" + }, + "paymentTermValue": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "currency": { + "$ref": "#/components/schemas/NameEntity" + }, + "exchangeRate": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "usd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "typeOfContractAmount": { + "$ref": "#/components/schemas/TypeOfContractAmount" + }, + "revenueStream": { + "$ref": "#/components/schemas/RevenueStreamType" + }, + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "edRevenueRecognitionTypes": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectStandaloneParentInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/ClientContractProjectStandaloneType" + }, + "description": { + "type": "string", + "nullable": true + }, + "contractNumber": { + "type": "string", + "nullable": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientLegalEntityDto" + }, + "nullable": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "actualProlongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "terminationOption": { + "$ref": "#/components/schemas/TerminationOption" + }, + "isTerminationAmendmentType": { + "$ref": "#/components/schemas/IsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectStandaloneSpecialClausesResponse": { + "type": "object", + "properties": { + "nonDisclosure": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/ClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/ClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/ClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/ClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "insurance": { + "$ref": "#/components/schemas/ClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/ClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/ClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/ClauseState" + }, + "limitationOfLiabilityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "limitationOfLiabilityNotCompliant": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "forceMajeure": { + "$ref": "#/components/schemas/ClauseState" + }, + "forceMajeureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectStandaloneSpecialClausesViaAiQuery": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "attachmentIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectStandaloneTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectStandaloneTaskDetailResponse": { + "type": "object", + "properties": { + "clientLegalEntities": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "client": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectVatsResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "luxoftLegalEntityId": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "luxoftLegalEntityName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "counterpartyName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "vat": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "comment": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractAmendmentProjectWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkContentResponse": { + "type": "object", + "properties": { + "aaaaNewSummary": { + "$ref": "#/components/schemas/GetClientContractFrameworkContentResponse" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/TerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "notifyPeriodForLuxoft": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorksComment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "ipOwnership": { + "$ref": "#/components/schemas/IpOwnershipType" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/SubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "specialClauses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractFrameworkSpecialClauseType" + }, + "nullable": true, + "readOnly": true + }, + "antiCorruptionClause": { + "$ref": "#/components/schemas/ClauseState" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkDependentContentResponse": { + "type": "object", + "properties": { + "aaaaNewSummary": { + "$ref": "#/components/schemas/GetClientContractFrameworkContentResponse" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/TerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "notifyPeriodForLuxoft": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorksComment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "ipOwnership": { + "$ref": "#/components/schemas/IpOwnershipType" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/SubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "specialClauses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractFrameworkSpecialClauseType" + }, + "nullable": true, + "readOnly": true + }, + "antiCorruptionClause": { + "$ref": "#/components/schemas/ClauseState" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkDependentFinancialResponse": { + "type": "object", + "properties": { + "aaaaNewSummary": { + "$ref": "#/components/schemas/GetClientContractFrameworkFinancialResponse" + }, + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "paymentArrangements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PaymentArrangementTypes" + }, + "nullable": true, + "readOnly": true + }, + "discounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "paymentTerm": { + "$ref": "#/components/schemas/PaymentTermType" + }, + "paymentTermValue": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "currency": { + "$ref": "#/components/schemas/NameEntity" + }, + "exchangeRate": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "usd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "revenueStream": { + "$ref": "#/components/schemas/RevenueStreamType" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkDependentMainInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/ClientContractFrameworkDependentType" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientLegalEntityDto" + }, + "nullable": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "version": { + "type": "integer", + "format": "int64", + "readOnly": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkDependentSpecialClausesViaAiQuery": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "attachmentIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkDependentSummaryChangedFieldsResponse": { + "type": "object", + "properties": { + "changes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SummaryChangedFieldsClientContractFrameworkFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkDependentTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkDependentTaskDetailResponse": { + "type": "object", + "properties": { + "clientLegalEntities": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "client": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkFinancialResponse": { + "type": "object", + "properties": { + "aaaaNewSummary": { + "$ref": "#/components/schemas/GetClientContractFrameworkFinancialResponse" + }, + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "paymentArrangements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PaymentArrangementTypes" + }, + "nullable": true, + "readOnly": true + }, + "discounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "paymentTerm": { + "$ref": "#/components/schemas/PaymentTermType" + }, + "paymentTermValue": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "currency": { + "$ref": "#/components/schemas/NameEntity" + }, + "exchangeRate": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "usd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "revenueStream": { + "$ref": "#/components/schemas/RevenueStreamType" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractFrameworkFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkProcessingResponse": { + "type": "object", + "properties": { + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "luxoftSigningRequired": { + "type": "boolean", + "readOnly": true + }, + "clientSigningRequired": { + "type": "boolean", + "readOnly": true + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "clientEmail": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkRevenueRecognitionResponse": { + "type": "object", + "properties": { + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkSpecialClausesResponse": { + "type": "object", + "properties": { + "aaaaNewSummary": { + "$ref": "#/components/schemas/GetClientContractFrameworkSpecialClausesResponse" + }, + "nonDisclosure": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/ClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/ClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/ClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/ClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "insurance": { + "$ref": "#/components/schemas/ClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/ClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/ClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/ClauseState" + }, + "limitationOfLiabilityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "limitationOfLiabilityNotCompliant": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "forceMajeure": { + "$ref": "#/components/schemas/ClauseState" + }, + "forceMajeureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkStandaloneContentResponse": { + "type": "object", + "properties": { + "aaaaNewSummary": { + "$ref": "#/components/schemas/GetClientContractFrameworkContentResponse" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/TerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "notifyPeriodForLuxoft": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorksComment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "ipOwnership": { + "$ref": "#/components/schemas/IpOwnershipType" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/SubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "specialClauses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractFrameworkSpecialClauseType" + }, + "nullable": true, + "readOnly": true + }, + "antiCorruptionClause": { + "$ref": "#/components/schemas/ClauseState" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkStandaloneFinancialResponse": { + "type": "object", + "properties": { + "aaaaNewSummary": { + "$ref": "#/components/schemas/GetClientContractFrameworkFinancialResponse" + }, + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "paymentArrangements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PaymentArrangementTypes" + }, + "nullable": true, + "readOnly": true + }, + "discounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "paymentTerm": { + "$ref": "#/components/schemas/PaymentTermType" + }, + "paymentTermValue": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "currency": { + "$ref": "#/components/schemas/NameEntity" + }, + "exchangeRate": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "usd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "revenueStream": { + "$ref": "#/components/schemas/RevenueStreamType" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkStandaloneMainInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/ClientContractFrameworkStandaloneType" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientLegalEntityDto" + }, + "nullable": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "version": { + "type": "integer", + "format": "int64", + "readOnly": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkStandaloneSpecialClausesViaAiQuery": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "attachmentIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkStandaloneSummaryChangedFieldsResponse": { + "type": "object", + "properties": { + "changes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SummaryChangedFieldsClientContractFrameworkFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkStandaloneTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkStandaloneTaskDetailResponse": { + "type": "object", + "properties": { + "clientLegalEntities": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "client": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkVatsResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "luxoftLegalEntityId": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "luxoftLegalEntityName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "counterpartyName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "vat": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "comment": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractFrameworkWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractFrameworkFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractFrameworkFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractFrameworkFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectDependentContentResponse": { + "type": "object", + "properties": { + "specialClauses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractProjectDependentSpecialClauseType" + }, + "nullable": true, + "readOnly": true + }, + "equalPayAmountPerYearEur": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/TerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "notifyPeriodForLuxoft": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorksComment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "onSiteWork": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "ossRisk": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "ipOwnership": { + "$ref": "#/components/schemas/IpOwnershipType" + }, + "usingLuxoftPreExistingIp": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "officeTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OfficeTypes" + }, + "nullable": true, + "readOnly": true + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/SubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "engagementModel": { + "$ref": "#/components/schemas/EngagementModelType" + } + }, + "additionalProperties": false + }, + "GetClientContractProjectDependentFinancialResponse": { + "type": "object", + "properties": { + "paymentArrangements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PaymentArrangementTypes" + }, + "nullable": true, + "readOnly": true + }, + "principalPricingModel": { + "$ref": "#/components/schemas/PrincipalPricingModelType" + }, + "discounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "paymentTerm": { + "$ref": "#/components/schemas/PaymentTermType" + }, + "paymentTermValue": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "currency": { + "$ref": "#/components/schemas/NameEntity" + }, + "exchangeRate": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "usd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "revenueStream": { + "$ref": "#/components/schemas/RevenueStreamType" + }, + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "edRevenueRecognitionTypes": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectDependentMainInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/ClientContractProjectDependentType" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientLegalEntityDto" + }, + "nullable": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "version": { + "type": "integer", + "format": "int64", + "readOnly": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractProjectDependentSpecialClausesResponse": { + "type": "object", + "properties": { + "nonDisclosure": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/ClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/ClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/ClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/ClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "insurance": { + "$ref": "#/components/schemas/ClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/ClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/ClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + } + }, + "additionalProperties": false + }, + "GetClientContractProjectDependentSpecialClausesViaAiQuery": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "attachmentIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectDependentSummaryChangedFieldsResponse": { + "type": "object", + "properties": { + "changes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SummaryChangedFieldsClientContractProjectFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectDependentTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectDependentTaskDetailResponse": { + "type": "object", + "properties": { + "clientLegalEntities": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "client": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractProjectFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectProcessingResponse": { + "type": "object", + "properties": { + "processingType": { + "$ref": "#/components/schemas/ProcessingType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "luxoftSigningRequired": { + "type": "boolean", + "readOnly": true + }, + "clientSigningRequired": { + "type": "boolean", + "readOnly": true + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "clientEmail": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractProjectStandaloneContentResponse": { + "type": "object", + "properties": { + "antiCorruptionClause": { + "$ref": "#/components/schemas/ClauseState" + }, + "specialClauses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractProjectStandaloneSpecialClauseType" + }, + "nullable": true, + "readOnly": true + }, + "equalPayAmountPerYearEur": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/TerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "notifyPeriodForLuxoft": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true, + "readOnly": true + }, + "actualExecutorsOfWorksComment": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "onSiteWork": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "ossRisk": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "ipOwnership": { + "$ref": "#/components/schemas/IpOwnershipType" + }, + "usingLuxoftPreExistingIp": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "officeTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OfficeTypes" + }, + "nullable": true, + "readOnly": true + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/SubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "engagementModel": { + "$ref": "#/components/schemas/EngagementModelType" + } + }, + "additionalProperties": false + }, + "GetClientContractProjectStandaloneFinancialResponse": { + "type": "object", + "properties": { + "paymentArrangements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PaymentArrangementTypes" + }, + "nullable": true, + "readOnly": true + }, + "principalPricingModel": { + "$ref": "#/components/schemas/PrincipalPricingModelType" + }, + "discounts": { + "$ref": "#/components/schemas/DiscountType" + }, + "paymentTerm": { + "$ref": "#/components/schemas/PaymentTermType" + }, + "paymentTermValue": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "currency": { + "$ref": "#/components/schemas/NameEntity" + }, + "exchangeRate": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "usd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "revenueStream": { + "$ref": "#/components/schemas/RevenueStreamType" + }, + "warranty": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "edRevenueRecognitionTypes": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true, + "readOnly": true + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + }, + "constraints": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectStandaloneMainInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/ClientContractProjectStandaloneType" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientLegalEntityDto" + }, + "nullable": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "version": { + "type": "integer", + "format": "int64", + "readOnly": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetClientContractProjectStandaloneSpecialClausesResponse": { + "type": "object", + "properties": { + "nonDisclosure": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/ClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/ClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/ClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/ClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "insurance": { + "$ref": "#/components/schemas/ClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/ClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/ClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/ClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/ClauseState" + }, + "limitationOfLiabilityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "limitationOfLiabilityNotCompliant": { + "type": "boolean", + "nullable": true, + "readOnly": true + }, + "forceMajeure": { + "$ref": "#/components/schemas/ClauseState" + }, + "forceMajeureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/ClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + } + }, + "additionalProperties": false + }, + "GetClientContractProjectStandaloneSpecialClausesViaAiQuery": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "attachmentIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectStandaloneSummaryChangedFieldsResponse": { + "type": "object", + "properties": { + "changes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SummaryChangedFieldsClientContractProjectFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectStandaloneTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectStandaloneTaskDetailResponse": { + "type": "object", + "properties": { + "clientLegalEntities": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "client": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectVatsResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "luxoftLegalEntityId": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "luxoftLegalEntityName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "counterpartyName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "vat": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "comment": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientContractProjectWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractProjectFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractProjectFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractProjectFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientFilteredTasksCountersQuery": { + "type": "object", + "properties": { + "queryValue": { + "type": "string", + "nullable": true + }, + "filters": { + "$ref": "#/components/schemas/ClientAgreementSearchWithoutTasksFiltersDto" + } + }, + "additionalProperties": false + }, + "GetClientLegalEntitiesQuery": { + "type": "object", + "properties": { + "query": { + "type": "string", + "nullable": true + }, + "selectedClients": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientLegalEntitiesResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + }, + "clientId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "clientName": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientLegalEntityListQuery": { + "type": "object", + "properties": { + "query": { + "type": "string", + "nullable": true + }, + "additionalCleIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientLegalEntityListResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "name": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "address": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "kycApprovalStatus": { + "$ref": "#/components/schemas/KycApprovalStatus" + }, + "isSanctioned": { + "type": "boolean", + "readOnly": true + }, + "isGovernmentOwned": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientNonCommercialDocumentContentResponse": { + "type": "object", + "properties": { + "governingLaw": { + "$ref": "#/components/schemas/GoverningLawType" + }, + "nonSolicitationClauseNcd": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientNonCommercialDocumentHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientNonCommercialDocumentFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientNonCommercialDocumentMainInfoResponse": { + "type": "object", + "properties": { + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "description": { + "type": "string", + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "contractNumber": { + "type": "string", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "client": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientNonCommercialDocumentSummaryChangedFieldsResponse": { + "type": "object", + "properties": { + "changes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SummaryChangedFieldsClientNonCommercialDocumentFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientNonCommercialDocumentTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetClientNonCommercialDocumentTaskDetailResponse": { + "type": "object", + "properties": { + "clientLegalEntities": { + "type": "string", + "nullable": true + }, + "client": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientNonCommercialDocumentWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientNonCommercialDocumentFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientNonCommercialDocumentFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientsQuery": { + "type": "object", + "properties": { + "query": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetClientsResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + }, + "active": { + "type": "boolean" + }, + "cleCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "GetCommoditiesResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetContractTasksForSearchQuery": { + "type": "object", + "properties": { + "contractsInfoDtos": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAdditionContractInfoRequestDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetContractTasksForSearchResponse": { + "type": "object", + "properties": { + "contractsInfoDtos": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractTaskInfoDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetContractsByValueByTwoWeeksResponse": { + "type": "object", + "properties": { + "contractValueGroups": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ContractCountByValueDto" + }, + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time" + }, + "endDate": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false + }, + "GetCurrencyExchangeRateResponse": { + "type": "object", + "properties": { + "rate": { + "type": "number", + "format": "double" + } + }, + "additionalProperties": false + }, + "GetEdRevenueRecognitionTypesResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetEditClientNonCommercialDocumentContentResponse": { + "type": "object", + "properties": { + "nonSolicitationClauseWording": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "specialProvisions": { + "$ref": "#/components/schemas/SpecialProvisionTypes" + } + }, + "additionalProperties": false + }, + "GetEditClientNonCommercialDocumentHeaderResponse": { + "type": "object", + "properties": { + "contractName": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "version": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "GetEditClientNonCommercialDocumentMainInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/ClientNonCommercialDocumentSubtype" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "clientLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientLegalEntityDto" + }, + "nullable": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true + }, + "client": { + "$ref": "#/components/schemas/NameEntity" + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "version": { + "type": "integer", + "format": "int64", + "readOnly": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditClientNonCommercialDocumentProcessingResponse": { + "type": "object", + "properties": { + "contractTemplate": { + "$ref": "#/components/schemas/ContractTemplateType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true + }, + "luxoftSigningRequired": { + "type": "boolean" + }, + "clientSigningRequired": { + "type": "boolean" + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true + }, + "clientEmail": { + "type": "string", + "nullable": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentMasterServiceAgreementHeaderResponse": { + "type": "object", + "properties": { + "contractName": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "parents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentWithLinkDto" + }, + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentMasterServiceAgreementMainInfoResponse": { + "type": "object", + "properties": { + "commodity": { + "$ref": "#/components/schemas/CommodityResponseDto" + }, + "subjectOfAmendments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierSubjectOfAmendments" + }, + "nullable": true, + "readOnly": true + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleSuppliers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OracleSupplierDto" + }, + "nullable": true, + "readOnly": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true, + "readOnly": true + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentMasterServiceAgreementProcessingResponse": { + "type": "object", + "properties": { + "contractTemplate": { + "$ref": "#/components/schemas/ContractTemplateType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true + }, + "luxoftSigningRequired": { + "type": "boolean" + }, + "clientSigningRequired": { + "type": "boolean" + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true + }, + "clientEmail": { + "type": "string", + "nullable": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentMsaWithSowDetailHeaderResponse": { + "type": "object", + "properties": { + "contractName": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "parents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentWithLinkDto" + }, + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentMsaWithSowDetailMainInfoResponse": { + "type": "object", + "properties": { + "commodity": { + "$ref": "#/components/schemas/CommodityResponseDto" + }, + "subjectOfAmendments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierSubjectOfAmendments" + }, + "nullable": true, + "readOnly": true + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleSuppliers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OracleSupplierDto" + }, + "nullable": true, + "readOnly": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true, + "readOnly": true + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentMsaWithSowDetailProcessingResponse": { + "type": "object", + "properties": { + "contractTemplate": { + "$ref": "#/components/schemas/ContractTemplateType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true + }, + "luxoftSigningRequired": { + "type": "boolean" + }, + "clientSigningRequired": { + "type": "boolean" + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true + }, + "clientEmail": { + "type": "string", + "nullable": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentNonCommercialHeaderResponse": { + "type": "object", + "properties": { + "contractName": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "parents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentWithLinkDto" + }, + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentNonCommercialMainInfoResponse": { + "type": "object", + "properties": { + "subjectOfAmendments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierSubjectOfAmendments" + }, + "nullable": true + }, + "contractType": { + "$ref": "#/components/schemas/SupplierContractAmendmentNonCommercialType" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleSuppliers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OracleSupplierDto" + }, + "nullable": true, + "readOnly": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true, + "readOnly": true + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentNonCommercialProcessingResponse": { + "type": "object", + "properties": { + "contractTemplate": { + "$ref": "#/components/schemas/ContractTemplateType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true + }, + "luxoftSigningRequired": { + "type": "boolean" + }, + "clientSigningRequired": { + "type": "boolean" + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true + }, + "clientEmail": { + "type": "string", + "nullable": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentStatementOfWorkHeaderResponse": { + "type": "object", + "properties": { + "contractName": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "parents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentWithLinkDto" + }, + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentStatementOfWorkMainInfoResponse": { + "type": "object", + "properties": { + "commodity": { + "$ref": "#/components/schemas/CommodityResponseDto" + }, + "subjectOfAmendments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierSubjectOfAmendments" + }, + "nullable": true, + "readOnly": true + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleSuppliers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OracleSupplierDto" + }, + "nullable": true, + "readOnly": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true, + "readOnly": true + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractAmendmentStatementOfWorkProcessingResponse": { + "type": "object", + "properties": { + "contractTemplate": { + "$ref": "#/components/schemas/ContractTemplateType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true + }, + "luxoftSigningRequired": { + "type": "boolean" + }, + "clientSigningRequired": { + "type": "boolean" + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true + }, + "clientEmail": { + "type": "string", + "nullable": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractMasterServiceAgreementHeaderResponse": { + "type": "object", + "properties": { + "contractName": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "parents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentWithLinkDto" + }, + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractMasterServiceAgreementMainInfoResponse": { + "type": "object", + "properties": { + "commodity": { + "$ref": "#/components/schemas/CommodityResponseDto" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleSuppliers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OracleSupplierDto" + }, + "nullable": true, + "readOnly": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true, + "readOnly": true + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractMasterServiceAgreementProcessingResponse": { + "type": "object", + "properties": { + "contractTemplate": { + "$ref": "#/components/schemas/ContractTemplateType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true + }, + "luxoftSigningRequired": { + "type": "boolean" + }, + "clientSigningRequired": { + "type": "boolean" + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true + }, + "clientEmail": { + "type": "string", + "nullable": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractMsaWithSowDetailHeaderResponse": { + "type": "object", + "properties": { + "contractName": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "parents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentWithLinkDto" + }, + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractMsaWithSowDetailMainInfoResponse": { + "type": "object", + "properties": { + "commodity": { + "$ref": "#/components/schemas/CommodityResponseDto" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleSuppliers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OracleSupplierDto" + }, + "nullable": true, + "readOnly": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true, + "readOnly": true + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractMsaWithSowDetailProcessingResponse": { + "type": "object", + "properties": { + "contractTemplate": { + "$ref": "#/components/schemas/ContractTemplateType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true + }, + "luxoftSigningRequired": { + "type": "boolean" + }, + "clientSigningRequired": { + "type": "boolean" + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true + }, + "clientEmail": { + "type": "string", + "nullable": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractNonCommercialHeaderResponse": { + "type": "object", + "properties": { + "contractName": { + "type": "string", + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + }, + "status": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractNonCommercialMainInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/SupplierContractNonCommercialType" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleSuppliers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OracleSupplierDto" + }, + "nullable": true, + "readOnly": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true, + "readOnly": true + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractNonCommercialProcessingResponse": { + "type": "object", + "properties": { + "contractTemplate": { + "$ref": "#/components/schemas/ContractTemplateType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true + }, + "luxoftSigningRequired": { + "type": "boolean" + }, + "clientSigningRequired": { + "type": "boolean" + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true + }, + "clientEmail": { + "type": "string", + "nullable": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractStatementOfWorkHeaderResponse": { + "type": "object", + "properties": { + "contractName": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "parents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentWithLinkDto" + }, + "nullable": true + }, + "version": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractStatementOfWorkMainInfoResponse": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/SupplierContractStatementOfWorkType" + }, + "commodity": { + "$ref": "#/components/schemas/CommodityResponseDto" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractNumber": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleSuppliers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OracleSupplierDto" + }, + "nullable": true, + "readOnly": true + }, + "luxoftLegalEntities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LuxoftLegalEntityResponseDto" + }, + "nullable": true, + "readOnly": true + }, + "financialBusinessUnit": { + "$ref": "#/components/schemas/NameEntity" + }, + "owner": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongation": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetEditSupplierContractStatementOfWorkProcessingResponse": { + "type": "object", + "properties": { + "contractTemplate": { + "$ref": "#/components/schemas/ContractTemplateType" + }, + "luxoftSigningFirst": { + "type": "boolean", + "nullable": true + }, + "luxoftSigningRequired": { + "type": "boolean" + }, + "clientSigningRequired": { + "type": "boolean" + }, + "isDigitalSigning": { + "type": "boolean", + "nullable": true + }, + "clientEmail": { + "type": "string", + "nullable": true + }, + "contractSigningDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "luxoftAuthorizedSignatory": { + "$ref": "#/components/schemas/EmployeeDto" + } + }, + "additionalProperties": false + }, + "GetFinancialBusinessUnitTreeResponse": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "onlyView": { + "type": "boolean", + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + }, + "children": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetFinancialBusinessUnitTreeResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetFinancialBusinessUnitsForSearchResponse": { + "type": "object", + "properties": { + "parentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + }, + "children": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetFinancialBusinessUnitsForSearchResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetHighlightAttachmentsResponse": { + "type": "object", + "properties": { + "attachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AttachmentHighlightDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetHistoryQuery": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "offset": { + "type": "integer", + "format": "int32" + }, + "pageSize": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "GetLuxoftLegalEntitiesSearchResponse": { + "type": "object", + "properties": { + "englishName": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetLuxoftLegalEntityListQuery": { + "type": "object", + "properties": { + "query": { + "type": "string", + "nullable": true + }, + "additionalLleIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetLuxoftLegalEntityListResponse": { + "type": "object", + "properties": { + "isGerman": { + "type": "boolean", + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "name": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "englishName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "address": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetMegaAgreementsByClientResponse": { + "type": "object", + "properties": { + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MegaAgreementByClientDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetMegaChildrenForParentResponse": { + "type": "object", + "properties": { + "rootContract": { + "$ref": "#/components/schemas/ClientMegaAgreementWithChildrenDto" + } + }, + "additionalProperties": false + }, + "GetOpportunitiesResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "salesForceId": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "stageDescription": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetOracleCommodityForSearchResponse": { + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetOracleCommodityResponse": { + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + }, + "isContingencyWorkforce": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetOracleSuppliersForSearchResponse": { + "type": "object", + "properties": { + "englishName": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetOracleSuppliersQuery": { + "type": "object", + "properties": { + "query": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetOracleSuppliersResponse": { + "type": "object", + "properties": { + "englishName": { + "type": "string", + "nullable": true + }, + "isSanctioned": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMasterServiceAgreementContentResponse": { + "type": "object", + "properties": { + "actualCountriesOfServices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/ClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "isAnu": { + "type": "boolean", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMasterServiceAgreementFinancialResponse": { + "type": "object", + "properties": { + "paymentTerm": { + "$ref": "#/components/schemas/NameEntity" + }, + "feePaymentValue": { + "type": "number", + "format": "double", + "nullable": true + }, + "feePaymentType": { + "$ref": "#/components/schemas/FeePaymentTypes" + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMasterServiceAgreementHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentMasterServiceAgreementFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMasterServiceAgreementTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMasterServiceAgreementTaskDetailResponse": { + "type": "object", + "properties": { + "supplier": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleCommodity": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMasterServiceAgreementWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentMasterServiceAgreementFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentMasterServiceAgreementFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentMasterServiceAgreementFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMsaWithSowDetailContentResponse": { + "type": "object", + "properties": { + "actualCountriesOfServices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/ClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "isAnu": { + "type": "boolean", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMsaWithSowDetailFinancialResponse": { + "type": "object", + "properties": { + "paymentTerm": { + "$ref": "#/components/schemas/NameEntity" + }, + "yearlySpendOnTheSupplierValueWithoutVatUsd": { + "type": "number", + "format": "double", + "nullable": true + }, + "yearlySpendOnTheSupplierValueWithoutVatAmount": { + "type": "number", + "format": "double", + "nullable": true + }, + "yearlySpendOnTheSupplierValueWithoutVatCurrency": { + "$ref": "#/components/schemas/NameEntity" + }, + "feePaymentValue": { + "type": "number", + "format": "double", + "nullable": true + }, + "feePaymentType": { + "$ref": "#/components/schemas/FeePaymentTypes" + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMsaWithSowDetailHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentMsaWithSowDetailFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMsaWithSowDetailTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMsaWithSowDetailTaskDetailResponse": { + "type": "object", + "properties": { + "supplier": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleCommodity": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentMsaWithSowDetailWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentMsaWithSowDetailFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentMsaWithSowDetailFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentMsaWithSowDetailFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentNonCommercialContentResponse": { + "type": "object", + "properties": { + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentNonCommercialHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentNonCommercialFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentNonCommercialTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentNonCommercialTaskDetailResponse": { + "type": "object", + "properties": { + "supplier": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentNonCommercialWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentNonCommercialFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentNonCommercialFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentNonCommercialFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentStatementOfWorkContentResponse": { + "type": "object", + "properties": { + "actualCountriesOfServices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/ClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "isAnu": { + "type": "boolean", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentStatementOfWorkFinancialResponse": { + "type": "object", + "properties": { + "paymentTerm": { + "$ref": "#/components/schemas/NameEntity" + }, + "yearlySpendOnTheSupplierValueWithoutVatUsd": { + "type": "number", + "format": "double", + "nullable": true + }, + "yearlySpendOnTheSupplierValueWithoutVatAmount": { + "type": "number", + "format": "double", + "nullable": true + }, + "yearlySpendOnTheSupplierValueWithoutVatCurrency": { + "$ref": "#/components/schemas/NameEntity" + }, + "feePaymentValue": { + "type": "number", + "format": "double", + "nullable": true + }, + "feePaymentType": { + "$ref": "#/components/schemas/FeePaymentTypes" + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentStatementOfWorkHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentStatementOfWorkFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentStatementOfWorkTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentStatementOfWorkTaskDetailResponse": { + "type": "object", + "properties": { + "supplier": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleCommodity": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractAmendmentStatementOfWorkWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentStatementOfWorkFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentStatementOfWorkFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractAmendmentStatementOfWorkFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractMasterServiceAgreementContentResponse": { + "type": "object", + "properties": { + "actualCountriesOfServices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/ClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "isAnu": { + "type": "boolean", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractMasterServiceAgreementFinancialResponse": { + "type": "object", + "properties": { + "paymentTerm": { + "$ref": "#/components/schemas/NameEntity" + }, + "feePaymentValue": { + "type": "number", + "format": "double", + "nullable": true + }, + "feePaymentType": { + "$ref": "#/components/schemas/FeePaymentTypes" + } + }, + "additionalProperties": false + }, + "GetSupplierContractMasterServiceAgreementHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractMasterServiceAgreementFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractMasterServiceAgreementTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractMasterServiceAgreementTaskDetailResponse": { + "type": "object", + "properties": { + "supplier": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleCommodity": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractMasterServiceAgreementWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractMasterServiceAgreementFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractMasterServiceAgreementFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractMasterServiceAgreementFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractMsaWithSowDetailContentResponse": { + "type": "object", + "properties": { + "actualCountriesOfServices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/ClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "isAnu": { + "type": "boolean", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractMsaWithSowDetailFinancialResponse": { + "type": "object", + "properties": { + "paymentTerm": { + "$ref": "#/components/schemas/NameEntity" + }, + "yearlySpendOnTheSupplierValueWithoutVatUsd": { + "type": "number", + "format": "double", + "nullable": true + }, + "yearlySpendOnTheSupplierValueWithoutVatAmount": { + "type": "number", + "format": "double", + "nullable": true + }, + "yearlySpendOnTheSupplierValueWithoutVatCurrency": { + "$ref": "#/components/schemas/NameEntity" + }, + "feePaymentValue": { + "type": "number", + "format": "double", + "nullable": true + }, + "feePaymentType": { + "$ref": "#/components/schemas/FeePaymentTypes" + } + }, + "additionalProperties": false + }, + "GetSupplierContractMsaWithSowDetailHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractMsaWithSowDetailFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractMsaWithSowDetailTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractMsaWithSowDetailTaskDetailResponse": { + "type": "object", + "properties": { + "supplier": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleCommodity": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractMsaWithSowDetailWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractMsaWithSowDetailFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractMsaWithSowDetailFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractMsaWithSowDetailFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractNonCommercialContentResponse": { + "type": "object", + "properties": { + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + } + }, + "additionalProperties": false + }, + "GetSupplierContractNonCommercialHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractNonCommercialFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractNonCommercialTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractNonCommercialTaskDetailResponse": { + "type": "object", + "properties": { + "supplier": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractNonCommercialWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractNonCommercialFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractNonCommercialFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractNonCommercialFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractStatementOfWorkContentResponse": { + "type": "object", + "properties": { + "actualCountriesOfServices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameEntity" + }, + "nullable": true + }, + "governingLaw": { + "$ref": "#/components/schemas/NameEntity" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/ClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/ClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphResponseArray" + }, + "isAnu": { + "type": "boolean", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractStatementOfWorkFinancialResponse": { + "type": "object", + "properties": { + "paymentTerm": { + "$ref": "#/components/schemas/NameEntity" + }, + "yearlySpendOnTheSupplierValueWithoutVatUsd": { + "type": "number", + "format": "double", + "nullable": true + }, + "yearlySpendOnTheSupplierValueWithoutVatAmount": { + "type": "number", + "format": "double", + "nullable": true + }, + "yearlySpendOnTheSupplierValueWithoutVatCurrency": { + "$ref": "#/components/schemas/NameEntity" + }, + "feePaymentValue": { + "type": "number", + "format": "double", + "nullable": true + }, + "feePaymentType": { + "$ref": "#/components/schemas/FeePaymentTypes" + } + }, + "additionalProperties": false + }, + "GetSupplierContractStatementOfWorkHighlightFieldsResponse": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractStatementOfWorkFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractStatementOfWorkTaskActionAvailabilityResponse": { + "type": "object", + "properties": { + "task": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "canRecalculate": { + "type": "boolean", + "readOnly": true + }, + "canApprove": { + "type": "boolean", + "readOnly": true + }, + "canReject": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractStatementOfWorkTaskDetailResponse": { + "type": "object", + "properties": { + "supplier": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "oracleCommodity": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "contractStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "contractExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "financialBusinessUnit": { + "type": "string", + "nullable": true + }, + "luxoftLegalEntities": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "documentOwner": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "otherApprovers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierContractStatementOfWorkWritableFieldsMetaResponse": { + "type": "object", + "properties": { + "fieldsWithWriteAccess": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractStatementOfWorkFields" + }, + "nullable": true + }, + "requiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractStatementOfWorkFields" + }, + "nullable": true + }, + "conditionalRequiredFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierContractStatementOfWorkFields" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "GetSupplierFilteredTasksCountersQuery": { + "type": "object", + "properties": { + "queryValue": { + "type": "string", + "nullable": true + }, + "filters": { + "$ref": "#/components/schemas/SupplierAgreementSearchWithoutTasksFiltersDto" + } + }, + "additionalProperties": false + }, + "GetTasksResponse": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "description": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true + }, + "estimatedTotalAmountInUsd": { + "type": "number", + "format": "double", + "nullable": true + }, + "yearlySpendOnSupplierAmount": { + "type": "number", + "format": "double", + "nullable": true + }, + "currencyCode": { + "type": "string", + "nullable": true + }, + "isWithSow": { + "type": "boolean", + "nullable": true + }, + "agreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "taskType": { + "$ref": "#/components/schemas/TaskType" + }, + "taskUrl": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid" + }, + "taskRoleId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "taskRoleName": { + "type": "string", + "nullable": true + }, + "title": { + "type": "string", + "nullable": true + }, + "dueDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expired": { + "type": "boolean" + }, + "assignedBy": { + "$ref": "#/components/schemas/EmployeeWithEmailDto" + } + }, + "additionalProperties": false + }, + "GetTasksStatisticsBySlaDateByTwoWeeksResponse": { + "type": "object", + "properties": { + "averageRate": { + "type": "number", + "format": "double" + }, + "averageType": { + "$ref": "#/components/schemas/SlaRateType" + }, + "totalGroups": { + "type": "integer", + "format": "int32" + }, + "lowestTopRoles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskRoleSlaDto" + }, + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time" + }, + "endDate": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false + }, + "GetUnsecureLocationCountryAndRegionListResponse": { + "type": "object", + "properties": { + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocationResponseDto" + }, + "nullable": true + }, + "headerText": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetVersionResponse": { + "type": "object", + "properties": { + "currentService": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetWithoutPotentialOracleSuppliersQuery": { + "type": "object", + "properties": { + "query": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GoverningLawListResponse": { + "type": "object", + "properties": { + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocationResponseDto" + }, + "nullable": true + }, + "headerText": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GoverningLawType": { + "enum": [ + 1, + 2, + 3 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Russian", + "Ukrainian", + "International" + ] + }, + "HighlightAmountType": { + "enum": [ + 0, + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "None", + "Positive", + "Negative" + ] + }, + "HistoryChangeOperation": { + "enum": [ + 1, + 2, + 3 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Add", + "Edit", + "Remove" + ] + }, + "HistoryDto": { + "type": "object", + "properties": { + "stageId": { + "type": "string", + "format": "uuid" + }, + "entityType": { + "$ref": "#/components/schemas/HistoryEntityType" + }, + "entityId": { + "type": "string", + "format": "uuid" + }, + "agreementId": { + "type": "string", + "format": "uuid" + }, + "modifyBy": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "modifyDate": { + "type": "string", + "format": "date-time" + }, + "fields": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/FieldChangeDto" + }, + { + "$ref": "#/components/schemas/IntFieldChangeDto" + }, + { + "$ref": "#/components/schemas/BoolFieldChangeDto" + }, + { + "$ref": "#/components/schemas/TextFieldChangeDto" + }, + { + "$ref": "#/components/schemas/DateTimeFieldChangeDto" + }, + { + "$ref": "#/components/schemas/AttachmentFieldChangeDto" + } + ] + }, + "nullable": true + }, + "operation": { + "$ref": "#/components/schemas/HistoryChangeOperation" + } + }, + "additionalProperties": false + }, + "HistoryEntityType": { + "enum": [ + 1 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Attachment" + ] + }, + "IMarkup": { + "type": "object", + "properties": { + "top": { + "type": "number", + "format": "double", + "readOnly": true + }, + "left": { + "type": "number", + "format": "double", + "readOnly": true + }, + "bottom": { + "type": "number", + "format": "double", + "readOnly": true + }, + "right": { + "type": "number", + "format": "double", + "readOnly": true + }, + "page": { + "type": "integer", + "format": "int32", + "readOnly": true + } + }, + "additionalProperties": false + }, + "IntFieldChangeDto": { + "type": "object", + "allOf": [ + { + "$ref": "#/components/schemas/FieldChangeDto" + } + ], + "properties": { + "previousValue": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "currentValue": { + "type": "integer", + "format": "int32", + "nullable": true + } + }, + "additionalProperties": false + }, + "IpOwnershipType": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Luxoft", + "Client" + ] + }, + "IsTerminationAmendmentType": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Yes", + "No" + ] + }, + "KycApprovalStatus": { + "enum": [ + 0, + 1 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NotApproved", + "Approved" + ] + }, + "LocationResponseDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "name": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "parentName": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "LuxoftLegalEntityResponseDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + }, + "isGerman": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveClientContractAmendmentFrameworkDependentChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveClientContractAmendmentFrameworkStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveClientContractAmendmentNonCommercialChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveClientContractAmendmentProjectDependentChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveClientContractAmendmentProjectStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveClientContractFrameworkDependentChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveClientContractFrameworkStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveClientContractProjectDependentChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveClientContractProjectStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveClientNonCommercialDocumentChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveSupplierContractAmendmentMasterServiceAgreementChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveSupplierContractAmendmentMsaWithSowDetailChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveSupplierContractAmendmentNonCommercialChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveSupplierContractAmendmentStatementOfWorkChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveSupplierContractMasterServiceAgreementChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveSupplierContractMsaWithSowDetailChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveSupplierContractNonCommercialChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkAsRemoveSupplierContractStatementOfWorkChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "MarkupDto": { + "type": "object", + "properties": { + "top": { + "type": "number", + "format": "double" + }, + "left": { + "type": "number", + "format": "double" + }, + "bottom": { + "type": "number", + "format": "double" + }, + "right": { + "type": "number", + "format": "double" + }, + "page": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MegaAgreementByClientDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "contractLink": { + "type": "string", + "nullable": true + }, + "status": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "description": { + "type": "string", + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "endDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongationType": { + "$ref": "#/components/schemas/ProlongationType" + }, + "agreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "cleCountries": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "lleCountries": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "expirationStatus": { + "$ref": "#/components/schemas/ExpirationStatus" + } + }, + "additionalProperties": false + }, + "MigrateMsaAmAndSowAmToCcAmCommand": { + "type": "object", + "properties": { + "migrateProjectDependentAm": { + "type": "boolean" + }, + "migrateProjectStandaloneAm": { + "type": "boolean" + }, + "migrateFrameworkStandaloneAm": { + "type": "boolean" + }, + "takeCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MigrateMsaAmToScamOrScamsCommand": { + "type": "object", + "properties": { + "takeCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MigrateMsaAndSowToCcCommand": { + "type": "object", + "properties": { + "migrateProjectDependent": { + "type": "boolean" + }, + "migrateProjectStandalone": { + "type": "boolean" + }, + "migrateFrameworkStandalone": { + "type": "boolean" + }, + "skipBrokenAttachment": { + "type": "boolean" + }, + "takeCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MigrateMsaToScmCommand": { + "type": "object", + "properties": { + "takeCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MigrateMsaWithDetailsToScmsCommand": { + "type": "object", + "properties": { + "takeCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MigrateNcdAmToCcanCommand": { + "type": "object", + "properties": { + "takeCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MigrateNdaAmToScanCommand": { + "type": "object", + "properties": { + "takeCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MigrateNdaToScnCommand": { + "type": "object", + "properties": { + "takeCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MigrateSowAmToScasCommand": { + "type": "object", + "properties": { + "takeCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MigrateSowToScsCommand": { + "type": "object", + "properties": { + "takeCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "MoveToArchivedCommand": { + "type": "object", + "properties": { + "contractId": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "MoveToCancelCommand": { + "type": "object", + "properties": { + "contractIds": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "useStandardCancelledIntegrationEvent": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "NameEntity": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredClauseParagraphDtoArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClauseParagraphDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredClauseParagraphResponseArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClauseParagraphResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredClientContractAmendmentFrameworkVatDtoArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkVatDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredClientContractAmendmentProjectVatDtoArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectVatDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredClientContractFrameworkVatDtoArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractFrameworkVatDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredClientContractProjectVatDtoArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClientContractProjectVatDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredContractTemplateType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ContractTemplateType" + } + }, + "additionalProperties": false + }, + "NotRequiredGuidArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredNullableBoolean": { + "type": "object", + "properties": { + "value": { + "type": "boolean", + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredNullableClauseState": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ClauseState" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableClientContractAmendmentDateType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ClientContractAmendmentDateType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableClientContractFrameworkDependentType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ClientContractFrameworkDependentType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableClientContractFrameworkStandaloneType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ClientContractFrameworkStandaloneType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableClientContractProjectDependentType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ClientContractProjectDependentType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableClientContractProjectStandaloneType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ClientContractProjectStandaloneType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableClientNonCommercialDocumentSubtype": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ClientNonCommercialDocumentSubtype" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableDateTime": { + "type": "object", + "properties": { + "value": { + "type": "string", + "format": "date-time", + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredNullableDecimal": { + "type": "object", + "properties": { + "value": { + "type": "number", + "format": "double", + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredNullableDiscountType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/DiscountType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableDouble": { + "type": "object", + "properties": { + "value": { + "type": "number", + "format": "double", + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredNullableEngagementModelType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/EngagementModelType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableFeePaymentTypes": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/FeePaymentTypes" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableGuid": { + "type": "object", + "properties": { + "value": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredNullableInt32": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "format": "int32", + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredNullableIpOwnershipType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/IpOwnershipType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableIsTerminationAmendmentType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/IsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullablePaymentTermType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/PaymentTermType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullablePrincipalPricingModelType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/PrincipalPricingModelType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableProcessingType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ProcessingType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableProlongationType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ProlongationType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableRevenueStreamType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/RevenueStreamType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableSubcontractorEngagementType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/SubcontractorEngagementType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableSupplierContractAmendmentNonCommercialType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/SupplierContractAmendmentNonCommercialType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableSupplierContractNonCommercialType": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/SupplierContractNonCommercialType" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableTerminationForConvenienceClause": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/TerminationForConvenienceClause" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableTerminationOption": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/TerminationOption" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableThirdPartiesAccounting": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/ThirdPartiesAccounting" + } + }, + "additionalProperties": false + }, + "NotRequiredNullableTypeOfContractAmount": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/TypeOfContractAmount" + } + }, + "additionalProperties": false + }, + "NotRequiredOfficeTypesArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OfficeTypes" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredPaymentArrangementTypesArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PaymentArrangementTypes" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredProjectVatDtoArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ProjectVatDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredSpecialProvisionTypes": { + "type": "object", + "properties": { + "value": { + "$ref": "#/components/schemas/SpecialProvisionTypes" + } + }, + "additionalProperties": false + }, + "NotRequiredString": { + "type": "object", + "properties": { + "value": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "NotRequiredSupplierSubjectOfAmendmentsArray": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierSubjectOfAmendments" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "OfficeTypes": { + "enum": [ + 1, + 2, + 4, + 8 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "ClientOffice", + "LuxoftOffice", + "DxcOffice", + "RemoteOffice" + ] + }, + "OpportunityDto": { + "type": "object", + "properties": { + "linkId": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "name": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "salesForceId": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "stageDescription": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "OracleSupplierDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + }, + "isSanctioned": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "ParentDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "contractType": { + "$ref": "#/components/schemas/AgreementType" + }, + "contractLink": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ParentWithLinkDto": { + "type": "object", + "properties": { + "contractId": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractLink": { + "type": "string", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false + }, + "PaymentArrangementTypes": { + "enum": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64, + 128, + 256, + 512, + 1024, + 2048 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "CommissionBased", + "Contingency", + "FreeOfChargeGoodsOrServices", + "FullAcceptance", + "MilestoneAcceptance", + "Periodic", + "PreDefinedInvoicingDepSchedule", + "Prepayment", + "WithHoldingTax", + "PercentageOfCompletion", + "TimesheetAcceptance", + "OneOffPayment" + ] + }, + "PaymentTermType": { + "enum": [ + 1, + 2, + 3 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "BusinessDays", + "CalendarDays", + "Other" + ] + }, + "Period": { + "type": "object", + "properties": { + "startDate": { + "type": "string", + "format": "date-time" + }, + "endDate": { + "type": "string", + "format": "date-time", + "nullable": true + } + }, + "additionalProperties": false + }, + "PossibleParentsForAgreementResponse": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "counterpartyName": { + "type": "string", + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongationType": { + "$ref": "#/components/schemas/ProlongationType" + }, + "clientAgreementStatus": { + "$ref": "#/components/schemas/ClientAgreementStatus" + }, + "supplierAgreementStatus": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + } + }, + "additionalProperties": false + }, + "PossiblePerformerDto": { + "type": "object", + "properties": { + "isMain": { + "type": "boolean", + "readOnly": true + }, + "email": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "PotentialAdditionalApprover": { + "type": "object", + "properties": { + "allowAssignee": { + "type": "boolean" + }, + "allowGoverningLaw": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "PrincipalPricingModelType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "FixedCapacity", + "FixedPrice", + "Royalty", + "TimeAndMaterials", + "License", + "Maintenance", + "Other" + ] + }, + "ProcessingType": { + "enum": [ + 0, + 1 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Default", + "FastTrack" + ] + }, + "ProjectVatDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "vat": { + "type": "number", + "format": "double", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ProlongationType": { + "enum": [ + 1, + 2, + 3 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Autoprolongation", + "NoAutoprolongation", + "Perpetual" + ] + }, + "ReassignContractCoordinatorCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "employeeId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateClientContractAmendmentFrameworkDependentTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateClientContractAmendmentFrameworkStandaloneTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateClientContractAmendmentNonCommercialTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateClientContractAmendmentProjectDependentTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateClientContractAmendmentProjectStandaloneTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateClientContractFrameworkDependentTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateClientContractFrameworkStandaloneTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateClientContractProjectDependentTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateClientContractProjectStandaloneTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateClientNonCommercialDocumentTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateContractClientCommand": { + "type": "object", + "properties": { + "contractId": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "RecalculateContractSummaryCommand": { + "type": "object", + "properties": { + "recalculationReason": { + "$ref": "#/components/schemas/RecalculationReasonType" + }, + "contractIds": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "RecalculateContractVatCommand": { + "type": "object", + "properties": { + "contractId": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "RecalculateSupplierContractAmendmentMasterServiceAgreementTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateSupplierContractAmendmentMsaWithSowDetailTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateSupplierContractAmendmentNonCommercialTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateSupplierContractAmendmentStatementOfWorkTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateSupplierContractMasterServiceAgreementTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateSupplierContractMsaWithSowDetailTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateSupplierContractNonCommercialTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculateSupplierContractStatementOfWorkTaskCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "taskId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecalculationReasonType": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Archived", + "ContractPeriodChanged", + "ContractValueChanged", + "DiscountsChanged", + "AmendmentDatesChanged", + "Created", + "Terminated", + "DeactivateTermination", + "Cancelled" + ] + }, + "RemoveClientAgreementTemplateCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractAmendmentFrameworkDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractAmendmentFrameworkDependentOpportunityCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractAmendmentFrameworkStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractAmendmentFrameworkStandaloneOpportunityCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractAmendmentNonCommercialAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractAmendmentProjectDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractAmendmentProjectDependentOpportunityCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractAmendmentProjectStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractAmendmentProjectStandaloneOpportunityCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractFrameworkDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractFrameworkDependentOpportunityCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractFrameworkStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractFrameworkStandaloneOpportunityCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractProjectDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractProjectDependentOpportunityCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractProjectStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientContractProjectStandaloneOpportunityCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveClientNonCommercialDocumentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemovePermissionsCommand": { + "type": "object", + "properties": { + "permissionIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "RemoveRelationsToNotMigratedContractsCommand": { + "type": "object", + "additionalProperties": false + }, + "RemoveSupplierAgreementTemplateCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveSupplierContractAmendmentMasterServiceAgreementAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveSupplierContractAmendmentMsaWithSowDetailAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveSupplierContractAmendmentNonCommercialAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveSupplierContractAmendmentStatementOfWorkAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveSupplierContractMasterServiceAgreementAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveSupplierContractMsaWithSowDetailAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveSupplierContractNonCommercialAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RemoveSupplierContractStatementOfWorkAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RevenueStreamType": { + "enum": [ + 1, + 2, + 3 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Delivery", + "LmdAndHr", + "Other" + ] + }, + "SaveClientContractAmendmentFrameworkDependentCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "dateType": { + "$ref": "#/components/schemas/NotRequiredNullableClientContractAmendmentDateType" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "vats": { + "$ref": "#/components/schemas/NotRequiredClientContractAmendmentFrameworkVatDtoArray" + }, + "actualExecutorOfWorkIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "revenueStream": { + "$ref": "#/components/schemas/NotRequiredNullableRevenueStreamType" + }, + "clientLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "parentStartDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "parentExpirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "estimatedContractValueWithoutVatAmendmentAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "estimatedContractValueWithoutVatAmendmentCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "estimatedContractValueWithoutVatAmendmentTypeOfContractAmount": { + "$ref": "#/components/schemas/NotRequiredNullableTypeOfContractAmount" + }, + "paymentArrangements": { + "$ref": "#/components/schemas/NotRequiredPaymentArrangementTypesArray" + }, + "discounts": { + "$ref": "#/components/schemas/NotRequiredNullableDiscountType" + }, + "discountsChangedByThisAmendment": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "paymentTerm": { + "$ref": "#/components/schemas/NotRequiredNullablePaymentTermType" + }, + "paymentTermValue": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "constraints": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "warranty": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/NotRequiredNullableThirdPartiesAccounting" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "ipOwnership": { + "$ref": "#/components/schemas/NotRequiredNullableIpOwnershipType" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/NotRequiredNullableSubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "notifyPeriodForLuxoft": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "nonDisclosure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "insurance": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "limitationOfLiabilityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "limitationOfLiabilityNotCompliant": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "forceMajeure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "forceMajeureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "antiCorruptionClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "terminationOption": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationOption" + }, + "isTerminationAmendmentType": { + "$ref": "#/components/schemas/NotRequiredNullableIsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "SaveClientContractAmendmentFrameworkStandaloneCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "dateType": { + "$ref": "#/components/schemas/NotRequiredNullableClientContractAmendmentDateType" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "vats": { + "$ref": "#/components/schemas/NotRequiredClientContractAmendmentFrameworkVatDtoArray" + }, + "actualExecutorOfWorkIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "revenueStream": { + "$ref": "#/components/schemas/NotRequiredNullableRevenueStreamType" + }, + "clientLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "parentStartDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "parentExpirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "estimatedContractValueWithoutVatAmendmentAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "estimatedContractValueWithoutVatAmendmentCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "estimatedContractValueWithoutVatAmendmentTypeOfContractAmount": { + "$ref": "#/components/schemas/NotRequiredNullableTypeOfContractAmount" + }, + "paymentArrangements": { + "$ref": "#/components/schemas/NotRequiredPaymentArrangementTypesArray" + }, + "discounts": { + "$ref": "#/components/schemas/NotRequiredNullableDiscountType" + }, + "discountsChangedByThisAmendment": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "paymentTerm": { + "$ref": "#/components/schemas/NotRequiredNullablePaymentTermType" + }, + "paymentTermValue": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "constraints": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "warranty": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/NotRequiredNullableThirdPartiesAccounting" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "ipOwnership": { + "$ref": "#/components/schemas/NotRequiredNullableIpOwnershipType" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/NotRequiredNullableSubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "notifyPeriodForLuxoft": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "nonDisclosure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "insurance": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "limitationOfLiabilityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "limitationOfLiabilityNotCompliant": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "forceMajeure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "forceMajeureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "antiCorruptionClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "terminationOption": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationOption" + }, + "isTerminationAmendmentType": { + "$ref": "#/components/schemas/NotRequiredNullableIsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "SaveClientContractAmendmentNonCommercialCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "clientLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "parentStartDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "parentExpirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "specialProvisionTypes": { + "$ref": "#/components/schemas/NotRequiredSpecialProvisionTypes" + }, + "nonSolicitationClauseWording": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "terminationOption": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationOption" + }, + "isTerminationAmendmentType": { + "$ref": "#/components/schemas/NotRequiredNullableIsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "SaveClientContractAmendmentProjectDependentCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "dateType": { + "$ref": "#/components/schemas/NotRequiredNullableClientContractAmendmentDateType" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "vats": { + "$ref": "#/components/schemas/NotRequiredClientContractAmendmentProjectVatDtoArray" + }, + "actualExecutorOfWorkIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "clientLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "edRevenueRecognitionTypeIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "parentStartDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "parentExpirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "totalContractValueAmendmentAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "totalContractValueAmendmentCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "totalContractValueAmendmentTypeOfContractAmount": { + "$ref": "#/components/schemas/NotRequiredNullableTypeOfContractAmount" + }, + "paymentArrangements": { + "$ref": "#/components/schemas/NotRequiredPaymentArrangementTypesArray" + }, + "principalPricingModel": { + "$ref": "#/components/schemas/NotRequiredNullablePrincipalPricingModelType" + }, + "discounts": { + "$ref": "#/components/schemas/NotRequiredNullableDiscountType" + }, + "discountsChangedByThisAmendment": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "paymentTerm": { + "$ref": "#/components/schemas/NotRequiredNullablePaymentTermType" + }, + "paymentTermValue": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "engagementModel": { + "$ref": "#/components/schemas/NotRequiredNullableEngagementModelType" + }, + "constraints": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "warranty": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/NotRequiredNullableThirdPartiesAccounting" + }, + "processingType": { + "$ref": "#/components/schemas/NotRequiredNullableProcessingType" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "onSiteWork": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "ossRisk": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "ipOwnership": { + "$ref": "#/components/schemas/NotRequiredNullableIpOwnershipType" + }, + "usingLuxoftPreExistingIp": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "officeTypes": { + "$ref": "#/components/schemas/NotRequiredOfficeTypesArray" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/NotRequiredNullableSubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "notifyPeriodForLuxoft": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "equalPayAmountPerYearEur": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "nonDisclosure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "insurance": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "canBeProjectLevel": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "terminationOption": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationOption" + }, + "isTerminationAmendmentType": { + "$ref": "#/components/schemas/NotRequiredNullableIsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "SaveClientContractAmendmentProjectStandaloneCommand": { + "type": "object", + "properties": { + "antiCorruptionClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "limitationOfLiabilityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "limitationOfLiabilityNotCompliant": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "forceMajeure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "forceMajeureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "dateType": { + "$ref": "#/components/schemas/NotRequiredNullableClientContractAmendmentDateType" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "vats": { + "$ref": "#/components/schemas/NotRequiredClientContractAmendmentProjectVatDtoArray" + }, + "actualExecutorOfWorkIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "clientLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "edRevenueRecognitionTypeIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "parentStartDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "parentExpirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "totalContractValueAmendmentAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "totalContractValueAmendmentCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "totalContractValueAmendmentTypeOfContractAmount": { + "$ref": "#/components/schemas/NotRequiredNullableTypeOfContractAmount" + }, + "paymentArrangements": { + "$ref": "#/components/schemas/NotRequiredPaymentArrangementTypesArray" + }, + "principalPricingModel": { + "$ref": "#/components/schemas/NotRequiredNullablePrincipalPricingModelType" + }, + "discounts": { + "$ref": "#/components/schemas/NotRequiredNullableDiscountType" + }, + "discountsChangedByThisAmendment": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "paymentTerm": { + "$ref": "#/components/schemas/NotRequiredNullablePaymentTermType" + }, + "paymentTermValue": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "engagementModel": { + "$ref": "#/components/schemas/NotRequiredNullableEngagementModelType" + }, + "constraints": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "warranty": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/NotRequiredNullableThirdPartiesAccounting" + }, + "processingType": { + "$ref": "#/components/schemas/NotRequiredNullableProcessingType" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "onSiteWork": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "ossRisk": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "ipOwnership": { + "$ref": "#/components/schemas/NotRequiredNullableIpOwnershipType" + }, + "usingLuxoftPreExistingIp": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "officeTypes": { + "$ref": "#/components/schemas/NotRequiredOfficeTypesArray" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/NotRequiredNullableSubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "notifyPeriodForLuxoft": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "equalPayAmountPerYearEur": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "nonDisclosure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "insurance": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "canBeProjectLevel": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "terminationOption": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationOption" + }, + "isTerminationAmendmentType": { + "$ref": "#/components/schemas/NotRequiredNullableIsTerminationAmendmentType" + } + }, + "additionalProperties": false + }, + "SaveClientContractFrameworkDependentCommand": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/NotRequiredNullableClientContractFrameworkDependentType" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "vats": { + "$ref": "#/components/schemas/NotRequiredClientContractFrameworkVatDtoArray" + }, + "actualExecutorOfWorkIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "revenueStream": { + "$ref": "#/components/schemas/NotRequiredNullableRevenueStreamType" + }, + "clientLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "estimatedContractValueWithoutVatAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "estimatedContractValueWithoutVatCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "paymentArrangements": { + "$ref": "#/components/schemas/NotRequiredPaymentArrangementTypesArray" + }, + "discounts": { + "$ref": "#/components/schemas/NotRequiredNullableDiscountType" + }, + "paymentTerm": { + "$ref": "#/components/schemas/NotRequiredNullablePaymentTermType" + }, + "paymentTermValue": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "constraints": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "warranty": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/NotRequiredNullableThirdPartiesAccounting" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "ipOwnership": { + "$ref": "#/components/schemas/NotRequiredNullableIpOwnershipType" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/NotRequiredNullableSubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "notifyPeriodForLuxoft": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "nonDisclosure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "insurance": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "limitationOfLiabilityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "limitationOfLiabilityNotCompliant": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "forceMajeure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "forceMajeureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "antiCorruptionClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + } + }, + "additionalProperties": false + }, + "SaveClientContractFrameworkStandaloneCommand": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/NotRequiredNullableClientContractFrameworkStandaloneType" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "vats": { + "$ref": "#/components/schemas/NotRequiredClientContractFrameworkVatDtoArray" + }, + "actualExecutorOfWorkIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "revenueStream": { + "$ref": "#/components/schemas/NotRequiredNullableRevenueStreamType" + }, + "clientLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "estimatedContractValueWithoutVatAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "estimatedContractValueWithoutVatCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "paymentArrangements": { + "$ref": "#/components/schemas/NotRequiredPaymentArrangementTypesArray" + }, + "discounts": { + "$ref": "#/components/schemas/NotRequiredNullableDiscountType" + }, + "paymentTerm": { + "$ref": "#/components/schemas/NotRequiredNullablePaymentTermType" + }, + "paymentTermValue": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "constraints": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "warranty": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/NotRequiredNullableThirdPartiesAccounting" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "ipOwnership": { + "$ref": "#/components/schemas/NotRequiredNullableIpOwnershipType" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/NotRequiredNullableSubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "notifyPeriodForLuxoft": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "nonDisclosure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "insurance": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "limitationOfLiabilityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "limitationOfLiabilityNotCompliant": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "forceMajeure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "forceMajeureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "antiCorruptionClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + } + }, + "additionalProperties": false + }, + "SaveClientContractProjectDependentCommand": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/NotRequiredNullableClientContractProjectDependentType" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "vats": { + "$ref": "#/components/schemas/NotRequiredClientContractProjectVatDtoArray" + }, + "actualExecutorOfWorkIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "revenueStream": { + "$ref": "#/components/schemas/NotRequiredNullableRevenueStreamType" + }, + "clientLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "edRevenueRecognitionTypeIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "totalContractValueAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "totalContractValueCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "paymentArrangements": { + "$ref": "#/components/schemas/NotRequiredPaymentArrangementTypesArray" + }, + "principalPricingModel": { + "$ref": "#/components/schemas/NotRequiredNullablePrincipalPricingModelType" + }, + "discounts": { + "$ref": "#/components/schemas/NotRequiredNullableDiscountType" + }, + "paymentTerm": { + "$ref": "#/components/schemas/NotRequiredNullablePaymentTermType" + }, + "paymentTermValue": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "engagementModel": { + "$ref": "#/components/schemas/NotRequiredNullableEngagementModelType" + }, + "constraints": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "warranty": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/NotRequiredNullableThirdPartiesAccounting" + }, + "processingType": { + "$ref": "#/components/schemas/NotRequiredNullableProcessingType" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "onSiteWork": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "ossRisk": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "ipOwnership": { + "$ref": "#/components/schemas/NotRequiredNullableIpOwnershipType" + }, + "usingLuxoftPreExistingIp": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "officeTypes": { + "$ref": "#/components/schemas/NotRequiredOfficeTypesArray" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/NotRequiredNullableSubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "notifyPeriodForLuxoft": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "equalPayAmountPerYearEur": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "nonDisclosure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "insurance": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + } + }, + "additionalProperties": false + }, + "SaveClientContractProjectStandaloneCommand": { + "type": "object", + "properties": { + "contractType": { + "$ref": "#/components/schemas/NotRequiredNullableClientContractProjectStandaloneType" + }, + "antiCorruptionClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "limitationOfLiabilityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "limitationOfLiabilityNotCompliant": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "forceMajeure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "forceMajeureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "vats": { + "$ref": "#/components/schemas/NotRequiredClientContractProjectVatDtoArray" + }, + "actualExecutorOfWorkIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "revenueStream": { + "$ref": "#/components/schemas/NotRequiredNullableRevenueStreamType" + }, + "clientLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "edRevenueRecognitionTypeIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "totalContractValueAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "totalContractValueCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "paymentArrangements": { + "$ref": "#/components/schemas/NotRequiredPaymentArrangementTypesArray" + }, + "principalPricingModel": { + "$ref": "#/components/schemas/NotRequiredNullablePrincipalPricingModelType" + }, + "discounts": { + "$ref": "#/components/schemas/NotRequiredNullableDiscountType" + }, + "paymentTerm": { + "$ref": "#/components/schemas/NotRequiredNullablePaymentTermType" + }, + "paymentTermValue": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "engagementModel": { + "$ref": "#/components/schemas/NotRequiredNullableEngagementModelType" + }, + "constraints": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "warranty": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "thirdPartiesAccounting": { + "$ref": "#/components/schemas/NotRequiredNullableThirdPartiesAccounting" + }, + "processingType": { + "$ref": "#/components/schemas/NotRequiredNullableProcessingType" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "onSiteWork": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "ossRisk": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "ipOwnership": { + "$ref": "#/components/schemas/NotRequiredNullableIpOwnershipType" + }, + "usingLuxoftPreExistingIp": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "officeTypes": { + "$ref": "#/components/schemas/NotRequiredOfficeTypesArray" + }, + "subcontractorEngagement": { + "$ref": "#/components/schemas/NotRequiredNullableSubcontractorEngagementType" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "terminationForConvenienceClause": { + "$ref": "#/components/schemas/NotRequiredNullableTerminationForConvenienceClause" + }, + "notifyPeriodForCounterparty": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "notifyPeriodForLuxoft": { + "$ref": "#/components/schemas/NotRequiredNullableInt32" + }, + "equalPayAmountPerYearEur": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "nonDisclosure": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonDisclosureValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationClauseValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "dataProcessing": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "dataProcessingValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "qualityRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "qualityRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "itSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "itSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "businessContinuityAndDisasterRecovery": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "businessContinuityAndDisasterRecoveryValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "backgroundCheck": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "backgroundCheckValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "socialEnvironmentalEthicalAndDiversityProvisionsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "insurance": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "insuranceValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "penaltiesLiquidatedDamages": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "penaltiesLiquidatedDamagesValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "certificationRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "officeSpaceRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "officeSpaceRequirementsValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "definitionOfAffiliateValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "automotiveCybersecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "automotiveCybersecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "physicalSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "physicalSecurityValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + } + }, + "additionalProperties": false + }, + "SaveClientFromIntegrationCommand": { + "type": "object", + "properties": { + "active": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "SaveClientNonCommercialDocumentCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractType": { + "$ref": "#/components/schemas/NotRequiredNullableClientNonCommercialDocumentSubtype" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractTemplate": { + "$ref": "#/components/schemas/NotRequiredContractTemplateType" + }, + "specialProvisionTypes": { + "$ref": "#/components/schemas/NotRequiredSpecialProvisionTypes" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "nonSolicitationClauseWording": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "clientLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + } + }, + "additionalProperties": false + }, + "SaveSupplierContractAmendmentMasterServiceAgreementCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "commodity": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractTemplate": { + "$ref": "#/components/schemas/NotRequiredContractTemplateType" + }, + "governingLawId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "actualCountriesOfServicesIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "paymentTermId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "oracleSupplierIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "feePaymentValue": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "feePaymentType": { + "$ref": "#/components/schemas/NotRequiredNullableFeePaymentTypes" + }, + "subjectOfAmendments": { + "$ref": "#/components/schemas/NotRequiredSupplierSubjectOfAmendmentsArray" + }, + "isAnu": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + } + }, + "additionalProperties": false + }, + "SaveSupplierContractAmendmentMsaWithSowDetailCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "commodity": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractTemplate": { + "$ref": "#/components/schemas/NotRequiredContractTemplateType" + }, + "governingLawId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "actualCountriesOfServicesIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "paymentTermId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "oracleSupplierIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "yearlySpendOnTheSupplierValueWithoutVatAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "yearlySpendOnTheSupplierValueWithoutVatCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "feePaymentValue": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "feePaymentType": { + "$ref": "#/components/schemas/NotRequiredNullableFeePaymentTypes" + }, + "subjectOfAmendments": { + "$ref": "#/components/schemas/NotRequiredSupplierSubjectOfAmendmentsArray" + }, + "isAnu": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + } + }, + "additionalProperties": false + }, + "SaveSupplierContractAmendmentNonCommercialCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractType": { + "$ref": "#/components/schemas/NotRequiredNullableSupplierContractAmendmentNonCommercialType" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractTemplate": { + "$ref": "#/components/schemas/NotRequiredContractTemplateType" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "oracleSupplierIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "subjectOfAmendments": { + "$ref": "#/components/schemas/NotRequiredSupplierSubjectOfAmendmentsArray" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + } + }, + "additionalProperties": false + }, + "SaveSupplierContractAmendmentStatementOfWorkCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "commodity": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractTemplate": { + "$ref": "#/components/schemas/NotRequiredContractTemplateType" + }, + "governingLawId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "actualCountriesOfServicesIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "paymentTermId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "oracleSupplierIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "yearlySpendOnTheSupplierValueWithoutVatAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "yearlySpendOnTheSupplierValueWithoutVatCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "feePaymentValue": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "feePaymentType": { + "$ref": "#/components/schemas/NotRequiredNullableFeePaymentTypes" + }, + "subjectOfAmendments": { + "$ref": "#/components/schemas/NotRequiredSupplierSubjectOfAmendmentsArray" + }, + "isAnu": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + } + }, + "additionalProperties": false + }, + "SaveSupplierContractMasterServiceAgreementCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "commodity": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractTemplate": { + "$ref": "#/components/schemas/NotRequiredContractTemplateType" + }, + "governingLawId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "actualCountriesOfServicesIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "paymentTermId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "oracleSupplierIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "feePaymentValue": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "feePaymentType": { + "$ref": "#/components/schemas/NotRequiredNullableFeePaymentTypes" + }, + "isAnu": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + } + }, + "additionalProperties": false + }, + "SaveSupplierContractMsaWithSowDetailCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "commodity": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractTemplate": { + "$ref": "#/components/schemas/NotRequiredContractTemplateType" + }, + "governingLawId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "actualCountriesOfServicesIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "paymentTermId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "oracleSupplierIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "supplierId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "yearlySpendOnTheSupplierValueWithoutVatAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "yearlySpendOnTheSupplierValueWithoutVatCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "feePaymentValue": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "feePaymentType": { + "$ref": "#/components/schemas/NotRequiredNullableFeePaymentTypes" + }, + "isAnu": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + } + }, + "additionalProperties": false + }, + "SaveSupplierContractNonCommercialCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractType": { + "$ref": "#/components/schemas/NotRequiredNullableSupplierContractNonCommercialType" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractTemplate": { + "$ref": "#/components/schemas/NotRequiredContractTemplateType" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "oracleSupplierIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "governingLaw": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + } + }, + "additionalProperties": false + }, + "SaveSupplierContractStatementOfWorkCommand": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "version": { + "type": "integer", + "format": "int64" + }, + "contractNumber": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "description": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "commodity": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "ownerId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "luxoftSignsFirst": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isLuxoftSigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "isCounterpartySigningRequired": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "authorizedLuxoftSignatory": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "isDigitalSigning": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "clientEmail": { + "$ref": "#/components/schemas/NotRequiredString" + }, + "contractTemplate": { + "$ref": "#/components/schemas/NotRequiredContractTemplateType" + }, + "governingLawId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "actualCountriesOfServicesIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "luxoftLegalEntityIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "paymentTermId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "oracleSupplierIds": { + "$ref": "#/components/schemas/NotRequiredGuidArray" + }, + "yearlySpendOnTheSupplierValueWithoutVatAmount": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "yearlySpendOnTheSupplierValueWithoutVatCurrency": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "feePaymentValue": { + "$ref": "#/components/schemas/NotRequiredNullableDecimal" + }, + "feePaymentType": { + "$ref": "#/components/schemas/NotRequiredNullableFeePaymentTypes" + }, + "isAnu": { + "$ref": "#/components/schemas/NotRequiredNullableBoolean" + }, + "nonSolicitation": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "nonSolicitationValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + }, + "antiCorruption": { + "$ref": "#/components/schemas/NotRequiredNullableClauseState" + }, + "antiCorruptionValue": { + "$ref": "#/components/schemas/NotRequiredClauseParagraphDtoArray" + } + }, + "additionalProperties": false + }, + "SecurityOperationCode": { + "enum": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 27, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + -11, + -10, + -9, + -8, + -7, + -6, + -5, + -4, + -3, + -2, + -1 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "None", + "SystemIntegration", + "EmployeeView", + "BusinessUnitView", + "LuxoftLegalEntityView", + "AgreementView", + "AgreementEdit", + "SupplierAgreementView", + "SupplierAgreementEdit", + "ContractViewOldLuxContract", + "SystemConsoleView", + "SupplierContractViewOldLuxContract", + "AttachmentEditCCN", + "AgreementInDraftView", + "RunSupportOnlyHandlers", + "LegalTaskApprover", + "DataProtectionTaskApprover", + "ItSecurityTaskApprover", + "LegalComplianceTaskApprover", + "BusinessTaskApprover", + "LocationView", + "ApprovalListCreate", + "AgreementCcnCreate", + "FeatureToggle", + "ChatMessageEdit", + "CanRecalculateAgreementTasks", + "AgreementRelationEdit", + "AgreementCcpCreate", + "ModerateContract", + "KycTaskApprover", + "RegionalAccountingTaskApprover", + "FinanceTaskApprover", + "TaxTaskApprover", + "HrTaskApprover", + "TreasuryTaskApprover", + "QualityManagementTaskApprover", + "EsgTaskApprover", + "QhseTaskApprover", + "CfoTaskApprover", + "OprTaskApprover", + "GesTaskApprover", + "AssignToMe", + "ModeratorTaskApprover", + "AttachmentEditCcp", + "AssignToMeCcp", + "GeneralLegalCounselApprover", + "AgreementCcfCreate", + "AgreementCcafCreate", + "AgreementCcapCreate", + "CanCopyContract", + "IsAdministrator", + "FinanceKycTaskApprover", + "AgreementCcanCreate", + "AttachmentEditCcan", + "ClientContractDashboardView", + "AutomotiveCybersecurityTaskApprover", + "AttachmentEditSupplierContractNonCommercial", + "AgreementSupplierContractNonCommercialCreate", + "TaskApprover", + "ClientContractHierarchyView", + "ClientAgreementTemplateView", + "AgreementSupplierContractStatementOfWorkCreate", + "StrategicProcurementApprover", + "GlobalProcurementDirectorApprover", + "AttachmentEditSupplierContractMsaWithSowDetail", + "AgreementSupplierContractMsaWithSowDetailCreate", + "AgreementSupplierContractAmendmentMsaWithSowDetailCreate", + "AttachmentEditSupplierContractAmendmentMsaWithSowDetail", + "AgreementSupplierContractAmendmentStatementOfWorkCreate", + "AttachmentEditSupplierContractAmendmentStatementOfWork", + "AttachmentEditSupplierContractStatementOfWork", + "AgreementSupplierContractMasterServiceAgreementCreate", + "AgreementSupplierContractAmendmentMasterServiceAgreementCreate", + "AttachmentEditSupplierContractMasterServiceAgreement", + "AttachmentEditSupplierContractAmendmentMasterServiceAgreement", + "AgreementSupplierContractAmendmentNonCommercialCreate", + "AttachmentEditSupplierContractAmendmentNonCommercial", + "AccessToSpecialClauseAi", + "CanRemoveWonOpportunityInArchivedAgreements", + "OracleCommodityView", + "SubscribeToArchiveNotification", + "InfoCenterView", + "DxcResilienceApprover", + "SupplierAgreementTemplateView", + "SubscriberApproversReview", + "OperationView", + "PrincipalEdit", + "DisplayInternalError", + "PrincipalOpenModule", + "BusinessRoleOpenModule", + "OperationOpenModule", + "OperationEdit", + "PrincipalView", + "BusinessRoleEdit", + "BusinessRoleView", + "AuthorizationImpersonate" + ] + }, + "SendClientContractAmendmentFrameworkDependentAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendClientContractAmendmentFrameworkStandaloneAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendClientContractAmendmentNonCommercialAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendClientContractAmendmentProjectDependentAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendClientContractAmendmentProjectStandaloneAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendClientContractFrameworkDependentAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendClientContractFrameworkStandaloneAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendClientContractProjectDependentAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendClientContractProjectStandaloneAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendClientNonCommercialDocumentAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendSupplierContractAmendmentMasterServiceAgreementAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendSupplierContractAmendmentMsaWithSowDetailAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendSupplierContractAmendmentNonCommercialAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendSupplierContractAmendmentStatementOfWorkAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendSupplierContractMasterServiceAgreementAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendSupplierContractMsaWithSowDetailAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendSupplierContractNonCommercialAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SendSupplierContractStatementOfWorkAttachmentToESigningCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "signingName": { + "type": "string", + "nullable": true + }, + "eSigningFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ESigningFieldDto" + }, + "nullable": true + }, + "contactCopyEmails": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SlaRateType": { + "enum": [ + 0, + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Red", + "Amber", + "Green" + ] + }, + "SpecialClauseChangeDto": { + "type": "object", + "properties": { + "previousState": { + "type": "string", + "nullable": true + }, + "currentState": { + "type": "string", + "nullable": true + }, + "previousText": { + "type": "string", + "nullable": true + }, + "currentText": { + "type": "string", + "nullable": true + }, + "checkBoxState": { + "type": "boolean" + }, + "checkboxName": { + "type": "string", + "nullable": true + }, + "fieldName": { + "type": "string", + "nullable": true + }, + "order": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "SpecialClausesGetF1ScoreResponse": { + "type": "object", + "properties": { + "insurance": { + "type": "number", + "format": "double", + "nullable": true + }, + "forceMajeure": { + "type": "number", + "format": "double", + "nullable": true + }, + "nonDisclosure": { + "type": "number", + "format": "double", + "nullable": true + }, + "nonSolicitationClause": { + "type": "number", + "format": "double", + "nullable": true + }, + "certificationRequirements": { + "type": "number", + "format": "double", + "nullable": true + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "type": "number", + "format": "double", + "nullable": true + }, + "limitationOfLiability": { + "type": "number", + "format": "double", + "nullable": true + }, + "itSecurity": { + "type": "number", + "format": "double", + "nullable": true + }, + "definitionOfAffiliate": { + "type": "number", + "format": "double", + "nullable": true + } + }, + "additionalProperties": false + }, + "SpecialClausesUpdateF1ScoreCommand": { + "type": "object", + "properties": { + "insurance": { + "$ref": "#/components/schemas/NotRequiredNullableDouble" + }, + "forceMajeure": { + "$ref": "#/components/schemas/NotRequiredNullableDouble" + }, + "nonDisclosure": { + "$ref": "#/components/schemas/NotRequiredNullableDouble" + }, + "nonSolicitationClause": { + "$ref": "#/components/schemas/NotRequiredNullableDouble" + }, + "certificationRequirements": { + "$ref": "#/components/schemas/NotRequiredNullableDouble" + }, + "socialEnvironmentalEthicalAndDiversityProvisions": { + "$ref": "#/components/schemas/NotRequiredNullableDouble" + }, + "limitationOfLiability": { + "$ref": "#/components/schemas/NotRequiredNullableDouble" + }, + "itSecurity": { + "$ref": "#/components/schemas/NotRequiredNullableDouble" + }, + "definitionOfAffiliate": { + "$ref": "#/components/schemas/NotRequiredNullableDouble" + } + }, + "additionalProperties": false + }, + "SpecialProvisionTypes": { + "enum": [ + 0, + 1, + 2, + 4, + 8, + 16, + 32, + 64, + 128 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "None", + "NonDisclosure", + "DataProcessing", + "ItSecurity", + "CodeOfConduct", + "QualityRequirements", + "SocialEnvironmentalAndEthicalIssues", + "NonSolicitation", + "LegalCompliance" + ] + }, + "StageHistoryDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "number": { + "type": "integer", + "format": "int32", + "nullable": true, + "readOnly": true + }, + "name": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "isExpandable": { + "type": "boolean", + "readOnly": true + }, + "status": { + "$ref": "#/components/schemas/StageHistoryStatus" + } + }, + "additionalProperties": false + }, + "StageHistoryStatus": { + "enum": [ + 1, + 2, + 3, + 4, + 5 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Rejected", + "Approved", + "Current", + "Future", + "Passed" + ] + }, + "StatisticsDataDto": { + "type": "object", + "properties": { + "category": { + "type": "string", + "nullable": true + }, + "eventDate": { + "type": "string", + "format": "date-time" + }, + "eventName": { + "type": "string", + "nullable": true + }, + "resolution": { + "type": "string", + "nullable": true + }, + "zoom": { + "type": "string", + "nullable": true + }, + "jsonEventData": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "SubcontractorEngagementType": { + "enum": [ + 1, + 2, + 3 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "PermittedWithNoLimits", + "NotPermitted", + "PermittedOnlyToAffiliates" + ] + }, + "SummaryChangedFieldsClientContractFrameworkFields": { + "type": "object", + "properties": { + "fieldId": { + "$ref": "#/components/schemas/ClientContractFrameworkFields" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "contractLink": { + "type": "string", + "nullable": true + }, + "isFutureChange": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "SummaryChangedFieldsClientContractProjectFields": { + "type": "object", + "properties": { + "fieldId": { + "$ref": "#/components/schemas/ClientContractProjectFields" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "contractLink": { + "type": "string", + "nullable": true + }, + "isFutureChange": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "SummaryChangedFieldsClientNonCommercialDocumentFields": { + "type": "object", + "properties": { + "fieldId": { + "$ref": "#/components/schemas/ClientNonCommercialDocumentFields" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "contractLink": { + "type": "string", + "nullable": true + }, + "isFutureChange": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "SupplierAgreementSearchDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "agreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "supplierAgreementStatus": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "description": { + "type": "string", + "nullable": true + }, + "supplierName": { + "type": "string", + "nullable": true + }, + "fbuName": { + "type": "string", + "nullable": true + }, + "currencyCode": { + "type": "string", + "nullable": true + }, + "totalAmount": { + "type": "number", + "format": "double", + "nullable": true + }, + "expirationStartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationEndDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "prolongationType": { + "$ref": "#/components/schemas/ProlongationType" + }, + "initiator": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "parents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentDto" + }, + "nullable": true + }, + "contractLink": { + "type": "string", + "nullable": true + }, + "luxContractLink": { + "type": "string", + "nullable": true + }, + "isAmendment": { + "type": "boolean" + }, + "expirationStatus": { + "$ref": "#/components/schemas/ExpirationStatus" + } + }, + "additionalProperties": false + }, + "SupplierAgreementSearchFiltersDto": { + "type": "object", + "properties": { + "taskFilters": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskFilterType" + }, + "nullable": true + }, + "oracleSupplierIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "oracleCommodityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "agreementStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "nullable": true + }, + "agreementTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementType" + }, + "nullable": true + }, + "financialBusinessUnitId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "luxoftLegalEntityId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "dates": { + "$ref": "#/components/schemas/AgreementSearchDatesDto" + }, + "showExpiredAgreements": { + "type": "boolean", + "nullable": true + }, + "contractCoordinatorId": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "SupplierAgreementSearchQuery": { + "type": "object", + "properties": { + "queryValue": { + "type": "string", + "nullable": true + }, + "filters": { + "$ref": "#/components/schemas/SupplierAgreementSearchFiltersDto" + }, + "offset": { + "type": "integer", + "format": "int32" + }, + "pageSize": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "SupplierAgreementSearchReportQuery": { + "type": "object", + "properties": { + "queryValue": { + "type": "string", + "nullable": true + }, + "filters": { + "$ref": "#/components/schemas/SupplierAgreementSearchFiltersDto" + } + }, + "additionalProperties": false + }, + "SupplierAgreementSearchResponse": { + "type": "object", + "properties": { + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierAgreementSearchDto" + }, + "nullable": true + }, + "total": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, + "SupplierAgreementSearchWithoutTasksFiltersDto": { + "type": "object", + "properties": { + "oracleSupplierIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "oracleCommodityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "agreementStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "nullable": true + }, + "agreementTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AgreementType" + }, + "nullable": true + }, + "financialBusinessUnitId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "luxoftLegalEntityId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "dates": { + "$ref": "#/components/schemas/AgreementSearchDatesDto" + }, + "showExpiredAgreements": { + "type": "boolean", + "nullable": true + }, + "contractCoordinatorId": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "SupplierAgreementStatus": { + "enum": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Draft", + "ApproversReview", + "Correction", + "CounterpartyReview", + "CounterpartySigning", + "InternalSigning", + "Archiving", + "Archived", + "Cancelled", + "Annulled", + "LoVerification", + "Visa", + "IcoAccounting" + ] + }, + "SupplierAgreementStatusChainResponse": { + "type": "object", + "properties": { + "statusChain": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SupplierAgreementTemplateDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "fileName": { + "type": "string", + "nullable": true + }, + "fileType": { + "$ref": "#/components/schemas/FileExtensionsType" + }, + "title": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "country": { + "$ref": "#/components/schemas/CountryDto" + } + }, + "additionalProperties": false + }, + "SupplierChildrenAgreementDto": { + "type": "object", + "properties": { + "children": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SupplierChildrenAgreementDto" + }, + "nullable": true, + "readOnly": true + }, + "status": { + "$ref": "#/components/schemas/SupplierAgreementStatus" + }, + "contractName": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "agreementType": { + "$ref": "#/components/schemas/AgreementType" + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "prolongationType": { + "$ref": "#/components/schemas/ProlongationType" + }, + "amountUsd": { + "type": "number", + "format": "double", + "nullable": true, + "readOnly": true + }, + "highlightAmountType": { + "$ref": "#/components/schemas/HighlightAmountType" + }, + "description": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "contractLink": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "agreementId": { + "type": "string", + "format": "uuid", + "readOnly": true + }, + "actualExpirationDate": { + "type": "string", + "format": "date-time", + "nullable": true, + "readOnly": true + }, + "isAmendment": { + "type": "boolean", + "readOnly": true + }, + "expirationStatus": { + "$ref": "#/components/schemas/ExpirationStatus" + } + }, + "additionalProperties": false + }, + "SupplierContractAmendmentMasterServiceAgreementFields": { + "enum": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Supplier", + "FinancialBusinessUnitField", + "LuxoftLegalEntity", + "ContractTemplate", + "ContractStartDate", + "Prolongation", + "ContractExpirationDate", + "Description", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "ContractDate", + "ContractNumber", + "Owner", + "IsDigitalSigning", + "ClientEmail", + "SpecialClausesAny", + "SpecialClausesNonSolicitationClause", + "SpecialClausesNonSolicitationClauseValue", + "SpecialClausesAntiCorruptionClause", + "SpecialClausesAntiCorruptionClauseValue", + "FeePaymentType", + "FeePaymentValue", + "ActualCountriesOfServices", + "GoverningLaw", + "OracleCommodity", + "PaymentTerm", + "IsExceptionalWorkflow", + "SubjectOfAmendments", + "Vats", + "IsAnu" + ] + }, + "SupplierContractAmendmentMasterServiceAgreementTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "SupplierContractAmendmentMasterServiceAgreementWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToExceptionalWorkflow", + "ToCorrectionByModerator", + "CancelFromArchivedContract" + ] + }, + "SupplierContractAmendmentMsaWithSowDetailFields": { + "enum": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Supplier", + "FinancialBusinessUnitField", + "LuxoftLegalEntity", + "ContractTemplate", + "ContractStartDate", + "Prolongation", + "ContractExpirationDate", + "Description", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "ContractDate", + "ContractNumber", + "Owner", + "IsDigitalSigning", + "ClientEmail", + "SpecialClausesAny", + "SpecialClausesNonSolicitationClause", + "SpecialClausesNonSolicitationClauseValue", + "SpecialClausesAntiCorruptionClause", + "SpecialClausesAntiCorruptionClauseValue", + "FeePaymentType", + "FeePaymentValue", + "ActualCountriesOfServices", + "GoverningLaw", + "YearlySpendOnTheSupplierValueWithoutVatCurrency", + "YearlySpendOnTheSupplierValueWithoutVatAmount", + "YearlySpendOnTheSupplierValueWithoutVatExchangeRate", + "YearlySpendOnTheSupplierValueWithoutVatUsd", + "OracleCommodity", + "PaymentTerm", + "IsExceptionalWorkflow", + "SubjectOfAmendments", + "Vats", + "IsAnu" + ] + }, + "SupplierContractAmendmentMsaWithSowDetailTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "SupplierContractAmendmentMsaWithSowDetailWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToExceptionalWorkflow", + "ToCorrectionByModerator", + "CancelFromArchivedContract" + ] + }, + "SupplierContractAmendmentNonCommercialFields": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "ContractType", + "Supplier", + "FinancialBusinessUnitField", + "LuxoftLegalEntity", + "ContractTemplate", + "ContractStartDate", + "Prolongation", + "ContractExpirationDate", + "Description", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "ContractDate", + "ContractNumber", + "Owner", + "IsDigitalSigning", + "ClientEmail", + "SubjectOfAmendments", + "GoverningLaw" + ] + }, + "SupplierContractAmendmentNonCommercialTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "SupplierContractAmendmentNonCommercialType": { + "enum": [ + 1 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NonDisclosureAgreement" + ] + }, + "SupplierContractAmendmentNonCommercialWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToCorrectionByModerator", + "CancelFromArchivedContract" + ] + }, + "SupplierContractAmendmentStatementOfWorkFields": { + "enum": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Supplier", + "FinancialBusinessUnitField", + "LuxoftLegalEntity", + "ContractTemplate", + "ContractStartDate", + "Prolongation", + "ContractExpirationDate", + "Description", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "ContractDate", + "ContractNumber", + "Owner", + "IsDigitalSigning", + "ClientEmail", + "SpecialClausesAny", + "SpecialClausesNonSolicitationClause", + "SpecialClausesNonSolicitationClauseValue", + "SpecialClausesAntiCorruptionClause", + "SpecialClausesAntiCorruptionClauseValue", + "FeePaymentType", + "FeePaymentValue", + "ActualCountriesOfServices", + "GoverningLaw", + "YearlySpendOnTheSupplierValueWithoutVatCurrency", + "YearlySpendOnTheSupplierValueWithoutVatAmount", + "YearlySpendOnTheSupplierValueWithoutVatExchangeRate", + "YearlySpendOnTheSupplierValueWithoutVatUsd", + "OracleCommodity", + "PaymentTerm", + "IsExceptionalWorkflow", + "SubjectOfAmendments", + "Vats", + "IsAnu" + ] + }, + "SupplierContractAmendmentStatementOfWorkTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "SupplierContractAmendmentStatementOfWorkWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToExceptionalWorkflow", + "ToCorrectionByModerator", + "CancelFromArchivedContract" + ] + }, + "SupplierContractMasterServiceAgreementFields": { + "enum": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Supplier", + "FinancialBusinessUnitField", + "LuxoftLegalEntity", + "ContractTemplate", + "ContractStartDate", + "Prolongation", + "ContractExpirationDate", + "Description", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "ContractDate", + "ContractNumber", + "Owner", + "IsDigitalSigning", + "ClientEmail", + "SpecialClausesAny", + "SpecialClausesNonSolicitationClause", + "SpecialClausesNonSolicitationClauseValue", + "SpecialClausesAntiCorruptionClause", + "SpecialClausesAntiCorruptionClauseValue", + "FeePaymentType", + "FeePaymentValue", + "ActualCountriesOfServices", + "GoverningLaw", + "OracleCommodity", + "PaymentTerm", + "IsExceptionalWorkflow", + "Vats", + "IsAnu" + ] + }, + "SupplierContractMasterServiceAgreementTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "SupplierContractMasterServiceAgreementWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToExceptionalWorkflow", + "ToCorrectionByModerator", + "CancelFromArchivedContract" + ] + }, + "SupplierContractMsaWithSowDetailFields": { + "enum": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Supplier", + "FinancialBusinessUnitField", + "LuxoftLegalEntity", + "ContractTemplate", + "ContractStartDate", + "Prolongation", + "ContractExpirationDate", + "Description", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "ContractDate", + "ContractNumber", + "Owner", + "IsDigitalSigning", + "ClientEmail", + "SpecialClausesAny", + "SpecialClausesNonSolicitationClause", + "SpecialClausesNonSolicitationClauseValue", + "SpecialClausesAntiCorruptionClause", + "SpecialClausesAntiCorruptionClauseValue", + "FeePaymentType", + "FeePaymentValue", + "ActualCountriesOfServices", + "GoverningLaw", + "YearlySpendOnTheSupplierValueWithoutVatCurrency", + "YearlySpendOnTheSupplierValueWithoutVatAmount", + "YearlySpendOnTheSupplierValueWithoutVatExchangeRate", + "YearlySpendOnTheSupplierValueWithoutVatUsd", + "OracleCommodity", + "PaymentTerm", + "IsExceptionalWorkflow", + "Vats", + "IsAnu" + ] + }, + "SupplierContractMsaWithSowDetailTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "SupplierContractMsaWithSowDetailWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToExceptionalWorkflow", + "ToCorrectionByModerator", + "CancelFromArchivedContract" + ] + }, + "SupplierContractNonCommercialFields": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "ContractType", + "Supplier", + "FinancialBusinessUnitField", + "LuxoftLegalEntity", + "ContractTemplate", + "ContractStartDate", + "Prolongation", + "ContractExpirationDate", + "Description", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "ContractDate", + "ContractNumber", + "Owner", + "IsDigitalSigning", + "ClientEmail", + "GoverningLaw" + ] + }, + "SupplierContractNonCommercialTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "SupplierContractNonCommercialType": { + "enum": [ + 1 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NonDisclosureAgreement" + ] + }, + "SupplierContractNonCommercialWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToCorrectionByModerator", + "CancelFromArchivedContract" + ] + }, + "SupplierContractStatementOfWorkFields": { + "enum": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Supplier", + "FinancialBusinessUnitField", + "LuxoftLegalEntity", + "ContractTemplate", + "ContractStartDate", + "Prolongation", + "ContractExpirationDate", + "Description", + "LuxoftSignsFirst", + "IsLuxoftSigningRequired", + "IsCounterpartySigningRequired", + "AuthorizedLuxoftSignatory", + "ContractDate", + "ContractNumber", + "Owner", + "IsDigitalSigning", + "ClientEmail", + "SpecialClausesAny", + "SpecialClausesNonSolicitationClause", + "SpecialClausesNonSolicitationClauseValue", + "SpecialClausesAntiCorruptionClause", + "SpecialClausesAntiCorruptionClauseValue", + "FeePaymentType", + "FeePaymentValue", + "ActualCountriesOfServices", + "GoverningLaw", + "YearlySpendOnTheSupplierValueWithoutVatCurrency", + "YearlySpendOnTheSupplierValueWithoutVatAmount", + "YearlySpendOnTheSupplierValueWithoutVatExchangeRate", + "YearlySpendOnTheSupplierValueWithoutVatUsd", + "OracleCommodity", + "PaymentTerm", + "IsExceptionalWorkflow", + "Vats", + "IsAnu" + ] + }, + "SupplierContractStatementOfWorkTemporaryAttachmentDto": { + "type": "object", + "properties": { + "temporaryAttachmentId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false + }, + "SupplierContractStatementOfWorkType": { + "enum": [ + 1 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "StatementOfWork" + ] + }, + "SupplierContractStatementOfWorkWorkflowActionKey": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "CancelContract", + "ToCorrection", + "SendForProcessing", + "SendOn", + "DiscardDraft", + "ToExceptionalWorkflow", + "ToCorrectionByModerator", + "CancelFromArchivedContract" + ] + }, + "SupplierSubjectOfAmendments": { + "enum": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64, + 128, + 256 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "PaymentTerms", + "Pricing", + "Scope", + "ServicePeriod", + "Termination", + "Warranty", + "Other", + "Discounts", + "Vat" + ] + }, + "TaskAndActionsResponseClientContractAmendmentFrameworkWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoClientContractAmendmentFrameworkWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseClientContractAmendmentNonCommercialWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoClientContractAmendmentNonCommercialWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseClientContractAmendmentProjectWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoClientContractAmendmentProjectWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseClientContractFrameworkWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoClientContractFrameworkWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseClientContractProjectWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoClientContractProjectWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseClientNonCommercialDocumentWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoClientNonCommercialDocumentWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseSupplierContractAmendmentMasterServiceAgreementWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoSupplierContractAmendmentMasterServiceAgreementWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseSupplierContractAmendmentMsaWithSowDetailWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoSupplierContractAmendmentMsaWithSowDetailWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseSupplierContractAmendmentNonCommercialWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoSupplierContractAmendmentNonCommercialWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseSupplierContractAmendmentStatementOfWorkWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoSupplierContractAmendmentStatementOfWorkWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseSupplierContractMasterServiceAgreementWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoSupplierContractMasterServiceAgreementWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseSupplierContractMsaWithSowDetailWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoSupplierContractMsaWithSowDetailWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseSupplierContractNonCommercialWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoSupplierContractNonCommercialWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskAndActionsResponseSupplierContractStatementOfWorkWorkflowActionKey": { + "type": "object", + "properties": { + "actions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WorkflowActionDtoSupplierContractStatementOfWorkWorkflowActionKey" + }, + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetAgreementTasksResponse" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TaskCommandType": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Approve", + "Reject" + ] + }, + "TaskDto": { + "type": "object", + "properties": { + "taskRole": { + "type": "string", + "nullable": true + }, + "dueDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "endDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "expired": { + "type": "boolean" + }, + "performer": { + "$ref": "#/components/schemas/EmployeeDto" + }, + "status": { + "$ref": "#/components/schemas/AgreementTaskStatus" + }, + "isReviewedPrevious": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "TaskFilterType": { + "enum": [ + 1, + 2, + 3 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Unassigned", + "Personal", + "Closed" + ] + }, + "TaskRoleSlaDto": { + "type": "object", + "properties": { + "roleName": { + "type": "string", + "nullable": true + }, + "rate": { + "type": "number", + "format": "double" + }, + "rateType": { + "$ref": "#/components/schemas/SlaRateType" + }, + "slaSatisfiedCount": { + "type": "integer", + "format": "int32" + }, + "slaUnsatisfiedCount": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "TaskType": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "Contract", + "ClientLegalEntity" + ] + }, + "TaskVisualStatus": { + "enum": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "PendingApproval", + "Approved", + "Rejected", + "Assigned", + "InProgress", + "Canceled" + ] + }, + "TasksCounterDto": { + "type": "object", + "properties": { + "total": { + "type": "integer", + "format": "int32" + }, + "overdue": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "TemplateGroup": { + "enum": [ + 1, + 2, + 3 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "ClientNonCommercial", + "ClientFrameworkAndProjectStandalone", + "ClientProjectDependent" + ] + }, + "TerminatedByDto": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "contractId": { + "type": "string", + "nullable": true + }, + "contractType": { + "$ref": "#/components/schemas/AgreementType" + }, + "contractLink": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "TerminationForConvenienceClause": { + "enum": [ + 1, + 2, + 3, + 4 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "NotStated", + "OnlyForLuxoft", + "OnlyForClient", + "ForBoth" + ] + }, + "TerminationOption": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "AllActiveChildren", + "AllAmendments" + ] + }, + "TextChangeDto": { + "type": "object", + "properties": { + "previousValue": { + "type": "string", + "nullable": true + }, + "currentValue": { + "type": "string", + "nullable": true + }, + "fieldName": { + "type": "string", + "nullable": true + }, + "order": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "TextExtractionDto": { + "type": "object", + "properties": { + "text": { + "type": "string", + "nullable": true + }, + "markups": { + "type": "array", + "items": { + "$ref": "#/components/schemas/IMarkup" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "TextFieldChangeDto": { + "type": "object", + "allOf": [ + { + "$ref": "#/components/schemas/FieldChangeDto" + } + ], + "properties": { + "previousValue": { + "type": "string", + "nullable": true + }, + "currentValue": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ThirdPartiesAccounting": { + "enum": [ + 1, + 2, + 3 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "No3RdParties", + "GrossAccounting", + "NetAccounting" + ] + }, + "TypeOfContractAmount": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "AddValue", + "ReplaceValue" + ] + }, + "UnlockClientContractAmendmentFrameworkDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockClientContractAmendmentFrameworkStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockClientContractAmendmentNonCommercialAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockClientContractAmendmentProjectDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockClientContractAmendmentProjectStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockClientContractFrameworkDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockClientContractFrameworkStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockClientContractProjectDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockClientContractProjectStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockClientNonCommercialDocumentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockSupplierContractAmendmentMasterServiceAgreementAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockSupplierContractAmendmentMsaWithSowDetailAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockSupplierContractAmendmentNonCommercialAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockSupplierContractAmendmentStatementOfWorkAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockSupplierContractMasterServiceAgreementAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockSupplierContractMsaWithSowDetailAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockSupplierContractNonCommercialAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UnlockSupplierContractStatementOfWorkAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "UpdateAgreementRelationCommentCommand": { + "type": "object", + "properties": { + "agreementRelationId": { + "type": "string", + "format": "uuid" + }, + "comment": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentFrameworkDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentFrameworkDependentChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentFrameworkDependentOpportunitiesCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentFrameworkStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentFrameworkStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentFrameworkStandaloneOpportunitiesCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentNonCommercialAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentNonCommercialChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentProjectDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentProjectDependentChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentProjectDependentOpportunitiesCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentProjectStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentProjectStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractAmendmentProjectStandaloneOpportunitiesCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractFrameworkDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateClientContractFrameworkDependentChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractFrameworkDependentOpportunitiesCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractFrameworkStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateClientContractFrameworkStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractFrameworkStandaloneOpportunitiesCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractProjectDependentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateClientContractProjectDependentChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractProjectDependentOpportunitiesCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractProjectStandaloneAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + }, + "hasRateCard": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateClientContractProjectStandaloneChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientContractProjectStandaloneOpportunitiesCommand": { + "type": "object", + "properties": { + "agreementId": { + "type": "string", + "format": "uuid" + }, + "opportunityIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateClientNonCommercialDocumentAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateClientNonCommercialDocumentChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateCommodityToContingencyWorkforce5322Command": { + "type": "object", + "properties": { + "contractIdsToUpdate": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateContractExchangeRateCommand": { + "type": "object", + "properties": { + "contractId": { + "type": "string", + "nullable": true + }, + "exchangeRate": { + "type": "number", + "format": "double" + } + }, + "additionalProperties": false + }, + "UpdateContractFieldsCommand": { + "type": "object", + "properties": { + "contractId": { + "type": "string", + "nullable": true + }, + "financialBusinessUnitId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + }, + "startDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "expirationDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "contractDate": { + "$ref": "#/components/schemas/NotRequiredNullableDateTime" + }, + "prolongation": { + "$ref": "#/components/schemas/NotRequiredNullableProlongationType" + }, + "discounts": { + "$ref": "#/components/schemas/NotRequiredNullableDiscountType" + }, + "principalPricingModel": { + "$ref": "#/components/schemas/NotRequiredNullablePrincipalPricingModelType" + }, + "vats": { + "$ref": "#/components/schemas/NotRequiredProjectVatDtoArray" + } + }, + "additionalProperties": false + }, + "UpdateContractParentCommand": { + "type": "object", + "properties": { + "contractId": { + "type": "string", + "nullable": true + }, + "parentId": { + "$ref": "#/components/schemas/NotRequiredNullableGuid" + } + }, + "additionalProperties": false + }, + "UpdateExceptionalWorkflowCommand": { + "type": "object", + "properties": { + "contractId": { + "type": "string", + "nullable": true + }, + "isExceptionalWorkflow": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateMinimalProbabilityForClauseCommand": { + "type": "object", + "properties": { + "probability": { + "type": "number", + "format": "double" + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractAmendmentMasterServiceAgreementAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractAmendmentMasterServiceAgreementChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractAmendmentMsaWithSowDetailAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractAmendmentMsaWithSowDetailChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractAmendmentNonCommercialAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractAmendmentNonCommercialChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractAmendmentStatementOfWorkAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractAmendmentStatementOfWorkChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractMasterServiceAgreementAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractMasterServiceAgreementChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractMsaWithSowDetailAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractMsaWithSowDetailChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractNonCommercialAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractNonCommercialChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractStatementOfWorkAttachmentCommand": { + "type": "object", + "properties": { + "attachmentId": { + "type": "string", + "format": "uuid" + }, + "temporaryAttachmentId": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + }, + "attachmentType": { + "$ref": "#/components/schemas/AttachmentType" + }, + "isMain": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateSupplierContractStatementOfWorkChatMessageCommand": { + "type": "object", + "properties": { + "chatMessageId": { + "type": "string", + "format": "uuid" + }, + "message": { + "type": "string", + "nullable": true + }, + "mentioned": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateVatValuesCommand": { + "type": "object", + "properties": { + "vatIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "newVatValue": { + "type": "number", + "format": "double" + }, + "changedAccordingToText": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ValueGroup": { + "enum": [ + 1, + 2, + 3, + 4, + 5 + ], + "type": "integer", + "format": "int32", + "x-enumNames": [ + "LessThan50K", + "LessThan250K", + "LessThan1Kk", + "LessThan10Kk", + "GreatThan10Kk" + ] + }, + "ValueTupleTextExtractionDtoArrayClassifyResultDtoArray": { + "type": "object", + "properties": { + "item1": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TextExtractionDto" + }, + "nullable": true + }, + "item2": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ClassifyResultDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "VatChangeDto": { + "type": "object", + "properties": { + "removed": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VatDto" + }, + "nullable": true + }, + "added": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VatDto" + }, + "nullable": true + }, + "changed": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VatDto" + }, + "nullable": true + }, + "unchanged": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VatDto" + }, + "nullable": true + }, + "fieldName": { + "type": "string", + "nullable": true + }, + "order": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "VatDto": { + "type": "object", + "properties": { + "luxoftLegaEntity": { + "type": "string", + "nullable": true + }, + "clientLegalEntity": { + "type": "string", + "nullable": true + }, + "currentVatValue": { + "type": "number", + "format": "double", + "nullable": true + }, + "currentComment": { + "type": "string", + "nullable": true + }, + "previousVatValue": { + "type": "number", + "format": "double", + "nullable": true + } + }, + "additionalProperties": false + }, + "WorkflowActionDtoClientContractAmendmentFrameworkWorkflowActionKey": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "successMessage": { + "type": "string", + "nullable": true + }, + "failMessage": { + "type": "string", + "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/ClientContractAmendmentFrameworkWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" + } + }, + "additionalProperties": false + }, + "WorkflowActionDtoClientContractAmendmentNonCommercialWorkflowActionKey": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "successMessage": { + "type": "string", + "nullable": true + }, + "failMessage": { + "type": "string", + "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/ClientContractAmendmentNonCommercialWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" + } + }, + "additionalProperties": false + }, + "WorkflowActionDtoClientContractAmendmentProjectWorkflowActionKey": { "type": "object", "properties": { - "type": { - "type": "string" + "name": { + "type": "string", + "nullable": true + }, + "successMessage": { + "type": "string", + "nullable": true + }, + "failMessage": { + "type": "string", + "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/ClientContractAmendmentProjectWorkflowActionKey" }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" + } + }, + "additionalProperties": false + }, + "WorkflowActionDtoClientContractFrameworkWorkflowActionKey": { + "type": "object", + "properties": { "name": { "type": "string", "nullable": true + }, + "successMessage": { + "type": "string", + "nullable": true + }, + "failMessage": { + "type": "string", + "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/ClientContractFrameworkWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" } + }, + "additionalProperties": false + }, + "WorkflowActionDtoClientContractProjectWorkflowActionKey": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true }, - "additionalProperties": false, - "discriminator": { - "propertyName": "type", - "mapping": { - "1": "#/components/schemas/CategoryElectronicsDto", - "2": "#/components/schemas/CategoryMotorsDto" + "successMessage": { + "type": "string", + "nullable": true + }, + "failMessage": { + "type": "string", + "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/ClientContractProjectWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" } - } + }, + "additionalProperties": false }, - "CategoryMotorsDto": { + "WorkflowActionDtoClientNonCommercialDocumentWorkflowActionKey": { "type": "object", "properties": { - "volume": { - "type": "number", + "name": { + "type": "string", + "nullable": true + }, + "successMessage": { + "type": "string", "nullable": true + }, + "failMessage": { + "type": "string", + "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/ClientNonCommercialDocumentWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" } }, - "allOf": [ - { - "$ref": "#/components/schemas/Category" + "additionalProperties": false + }, + "WorkflowActionDtoSupplierContractAmendmentMasterServiceAgreementWorkflowActionKey": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "successMessage": { + "type": "string", + "nullable": true + }, + "failMessage": { + "type": "string", + "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/SupplierContractAmendmentMasterServiceAgreementWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" } - ], + }, "additionalProperties": false }, - "CategoryElectronicsDto": { + "WorkflowActionDtoSupplierContractAmendmentMsaWithSowDetailWorkflowActionKey": { "type": "object", "properties": { - "syntheticTest": { - "type": "number", + "name": { + "type": "string", + "nullable": true + }, + "successMessage": { + "type": "string", + "nullable": true + }, + "failMessage": { + "type": "string", "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/SupplierContractAmendmentMsaWithSowDetailWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" } }, - "allOf": [ - { - "$ref": "#/components/schemas/Category" + "additionalProperties": false + }, + "WorkflowActionDtoSupplierContractAmendmentNonCommercialWorkflowActionKey": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "successMessage": { + "type": "string", + "nullable": true + }, + "failMessage": { + "type": "string", + "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/SupplierContractAmendmentNonCommercialWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" } - ], + }, "additionalProperties": false }, - "ProductStatus": { - "enum": [ - 0, - -1, - 1 - ], - "type": "integer", - "format": "int32", - "x-enumNames": [ - "InStock", - "OutOfStock", - "UnderTheOrder" - ] + "WorkflowActionDtoSupplierContractAmendmentStatementOfWorkWorkflowActionKey": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "successMessage": { + "type": "string", + "nullable": true + }, + "failMessage": { + "type": "string", + "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/SupplierContractAmendmentStatementOfWorkWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" + } + }, + "additionalProperties": false }, - "Product": { + "WorkflowActionDtoSupplierContractMasterServiceAgreementWorkflowActionKey": { "type": "object", "properties": { - "id": { + "name": { "type": "string", - "format": "uuid" + "nullable": true }, - "externalId": { + "successMessage": { + "type": "string", + "nullable": true + }, + "failMessage": { "type": "string", - "format": "uuid", "nullable": true }, + "workflowActionKey": { + "$ref": "#/components/schemas/SupplierContractMasterServiceAgreementWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" + } + }, + "additionalProperties": false + }, + "WorkflowActionDtoSupplierContractMsaWithSowDetailWorkflowActionKey": { + "type": "object", + "properties": { "name": { "type": "string", "nullable": true }, - "expireDate": { + "successMessage": { "type": "string", - "format": "date-time" + "nullable": true }, - "modifyDates": { - "type": "array", - "items": { - "type": "string", - "format": "date-time" - }, + "failMessage": { + "type": "string", "nullable": true }, - "colors": { - "type": "array", - "items": { - "type": "string" - }, + "workflowActionKey": { + "$ref": "#/components/schemas/SupplierContractMsaWithSowDetailWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" + } + }, + "additionalProperties": false + }, + "WorkflowActionDtoSupplierContractNonCommercialWorkflowActionKey": { + "type": "object", + "properties": { + "name": { + "type": "string", "nullable": true }, - "category": { - "type": "object", - "oneOf": [ - { - "$ref": "#/components/schemas/Category" - }, - { - "$ref": "#/components/schemas/CategoryElectronicsDto" - }, - { - "$ref": "#/components/schemas/CategoryMotorsDto" - } - ] + "successMessage": { + "type": "string", + "nullable": true }, - "categories": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/Category" - }, - { - "$ref": "#/components/schemas/CategoryElectronicsDto" - }, - { - "$ref": "#/components/schemas/CategoryMotorsDto" - } - ] - } + "failMessage": { + "type": "string", + "nullable": true }, - "status": { - "allOf": [ - { - "$ref": "#/components/schemas/ProductStatus" - } - ], + "workflowActionKey": { + "$ref": "#/components/schemas/SupplierContractNonCommercialWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" + } + }, + "additionalProperties": false + }, + "WorkflowActionDtoSupplierContractStatementOfWorkWorkflowActionKey": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "successMessage": { + "type": "string", "nullable": true + }, + "failMessage": { + "type": "string", + "nullable": true + }, + "workflowActionKey": { + "$ref": "#/components/schemas/SupplierContractStatementOfWorkWorkflowActionKey" + }, + "canBeShownInTaskbar": { + "type": "boolean" + }, + "commentIsRequired": { + "type": "boolean" + }, + "taskTypeForUi": { + "$ref": "#/components/schemas/WorkflowTaskTypeForUi" } }, "additionalProperties": false }, - "ProductIdentityDTO": { + "WorkflowCommandTypeForUi": { + "enum": [ + 1, + 2, + 3, + 4, + 5 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "Approve", + "Reject", + "AssignToMe", + "SendOn", + "SendOnFromCorrection" + ] + }, + "WorkflowTaskCommandDto": { "type": "object", "properties": { - "id": { + "commandType": { + "$ref": "#/components/schemas/TaskCommandType" + }, + "workflowCommandKey": { + "$ref": "#/components/schemas/WorkflowCommandTypeForUi" + }, + "name": { "type": "string", - "format": "uuid" + "nullable": true, + "readOnly": true + }, + "successMessage": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "failMessage": { + "type": "string", + "nullable": true, + "readOnly": true } }, "additionalProperties": false + }, + "WorkflowTaskTypeForUi": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "integer", + "additionalProperties": false, + "format": "int32", + "x-enumNames": [ + "SendForProcessing", + "ToCorrection", + "ExceptionalWorkflow", + "DiscardDraft", + "CancelContract", + "FastTrack", + "CancelFromArchivedContract" + ] } } }