{
"openapi": "3.0.4",
"info": {
"title": "Fenergo Nebula External Data Outreach Command",
"description": "External Data Outreach Command API provides methods related to the Portal Outreach. It should be used to update Outreach Entity Data.",
"version": "1.0"
},
"servers": [
{
"url": "/externaloutreachcommand"
}
],
"paths": {
"/api/association": {
"post": {
"tags": [
"Association"
],
"summary": "Create new Entity Association",
"description": "\nThis method will create a new outreach Association model.\n The new model will initialize with the DTO data.
Required permissions:
At least one of the following permissions is required: AssociationEdit, EntityGroupManagementEdit",
"operationId": "CreateAssociation",
"parameters": [
{
"name": "X-TENANT-ID",
"in": "header",
"description": "The UiD of the tenant representing organization",
"required": true,
"schema": {
"type": "string"
},
"example": "b11f8be3-f29b-4959-8964-956d4af7c468"
}
],
"requestBody": {
"description": "ServiceRequest with the Fenergo.Nebula.ExternalData.Outreach.Command.Application.Dto.AssociationDto to create",
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/AssociationDtoServiceRequest"
}
]
}
}
}
},
"responses": {
"202": {
"description": "Association model created successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AssociationDtoServiceResponse"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
}
}
}
},
"401": {
"description": "User is not authorized to perform this request",
"content": {
"application/json": {
"example": {
"message": "Unauthorized"
}
}
}
},
"403": {
"description": "Access to resource is forbidden.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Access denied. Following permissions are required: Permission1, Permission2",
"type": "Forbidden",
"errorCode": "Error Code"
}
]
}
}
}
},
"500": {
"description": "Internal server exception. Please, contact your provider.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "Internal server exception. Please, contact your provider.",
"type": "Error",
"errorCode": "INTERNAL_SERVER_ERROR"
}
]
}
}
}
},
"410": {
"description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StringServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
"type": "Error",
"errorCode": "OBSOLETE_ENDPOINT"
}
]
}
}
}
}
}
}
},
"/api/association/{id}/journeyid/{journeyId}": {
"delete": {
"tags": [
"Association"
],
"summary": "Permanently delete an existing outreach Association",
"description": "\nThis method will delete an existing outreach Association model.
Required permissions:
At least one of the following permissions is required: AssociationEdit, EntityGroupManagementEdit",
"operationId": "DeleteAssociation",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The Id of the existing model to delete",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "journeyId",
"in": "path",
"description": "Current Journey, Journey Id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "X-TENANT-ID",
"in": "header",
"description": "The UiD of the tenant representing organization",
"required": true,
"schema": {
"type": "string"
},
"example": "b11f8be3-f29b-4959-8964-956d4af7c468"
}
],
"responses": {
"202": {
"description": "Association model deleted successfully"
},
"404": {
"description": "Resource not found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Not Found",
"type": "Error",
"errorCode": "Error Code"
}
]
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
}
}
}
},
"401": {
"description": "User is not authorized to perform this request",
"content": {
"application/json": {
"example": {
"message": "Unauthorized"
}
}
}
},
"403": {
"description": "Access to resource is forbidden.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Access denied. Following permissions are required: Permission1, Permission2",
"type": "Forbidden",
"errorCode": "Error Code"
}
]
}
}
}
},
"500": {
"description": "Internal server exception. Please, contact your provider.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "Internal server exception. Please, contact your provider.",
"type": "Error",
"errorCode": "INTERNAL_SERVER_ERROR"
}
]
}
}
}
},
"410": {
"description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StringServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
"type": "Error",
"errorCode": "OBSOLETE_ENDPOINT"
}
]
}
}
}
}
}
}
},
"/api/association/{id}": {
"put": {
"tags": [
"Association"
],
"summary": "Update an existing outreach association",
"description": "\nThis method will update an existing outreach Association\n with the data contained in the request DTO.
Required permissions:
At least one of the following permissions is required: AssociationEdit, EntityGroupManagementEdit",
"operationId": "UpdateAssociation",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The Id of the existing unverified Association to update",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "X-TENANT-ID",
"in": "header",
"description": "The UiD of the tenant representing organization",
"required": true,
"schema": {
"type": "string"
},
"example": "b11f8be3-f29b-4959-8964-956d4af7c468"
}
],
"requestBody": {
"description": "ServiceRequest with the updated Fenergo.Nebula.ExternalData.Outreach.Command.Application.Dto.AssociationDto",
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/AssociationDtoServiceRequest"
}
]
}
}
}
},
"responses": {
"202": {
"description": "Association model updated successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AssociationDtoServiceResponse"
}
}
}
},
"404": {
"description": "Resource not found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Not Found",
"type": "Error",
"errorCode": "Error Code"
}
]
}
}
}
},
"400": {
"description": "Model Id is invalid",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
}
}
}
},
"401": {
"description": "User is not authorized to perform this request",
"content": {
"application/json": {
"example": {
"message": "Unauthorized"
}
}
}
},
"403": {
"description": "Access to resource is forbidden.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Access denied. Following permissions are required: Permission1, Permission2",
"type": "Forbidden",
"errorCode": "Error Code"
}
]
}
}
}
},
"500": {
"description": "Internal server exception. Please, contact your provider.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "Internal server exception. Please, contact your provider.",
"type": "Error",
"errorCode": "INTERNAL_SERVER_ERROR"
}
]
}
}
}
},
"410": {
"description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StringServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
"type": "Error",
"errorCode": "OBSOLETE_ENDPOINT"
}
]
}
}
}
}
}
}
},
"/api/association/existingassociatedentitycomments/{journeyId}": {
"put": {
"tags": [
"Association"
],
"summary": "Stores comments of an existing associated entity",
"description": "\nThis method will store a comment of an existing associated entity
Required permissions:
At least one of the following permissions is required: AssociationEdit, EntityGroupManagementEdit",
"operationId": "UpsertExistingAssociatedEntityComments",
"parameters": [
{
"name": "journeyId",
"in": "path",
"description": "The JourneyId of the existing associated entity comments to update",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "X-TENANT-ID",
"in": "header",
"description": "The UiD of the tenant representing organization",
"required": true,
"schema": {
"type": "string"
},
"example": "b11f8be3-f29b-4959-8964-956d4af7c468"
}
],
"requestBody": {
"description": "ServiceRequest with the updated Fenergo.Nebula.ExternalData.Outreach.Command.Application.Dto.ExistingAssociatedEntityCommentsDto",
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/ExistingAssociatedEntityCommentsDtoServiceRequest"
}
]
}
}
}
},
"responses": {
"202": {
"description": "Associated Entity Comments Updated Successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ApiResponseServiceResponse"
}
}
}
},
"409": {
"description": "Conflict saving changes in expected version",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "There are conflicts that cannot be resolved automatically, get latest and apply your changes",
"type": "Error",
"errorCode": "CONFLICT"
}
]
}
}
}
},
"400": {
"description": "JourneyId is invalid",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
}
}
}
},
"401": {
"description": "User is not authorized to perform this request",
"content": {
"application/json": {
"example": {
"message": "Unauthorized"
}
}
}
},
"403": {
"description": "Access to resource is forbidden.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Access denied. Following permissions are required: Permission1, Permission2",
"type": "Forbidden",
"errorCode": "Error Code"
}
]
}
}
}
},
"500": {
"description": "Internal server exception. Please, contact your provider.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "Internal server exception. Please, contact your provider.",
"type": "Error",
"errorCode": "INTERNAL_SERVER_ERROR"
}
]
}
}
}
},
"410": {
"description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StringServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
"type": "Error",
"errorCode": "OBSOLETE_ENDPOINT"
}
]
}
}
}
}
}
}
},
"/api/data/updateoutreachdata/{journeyId}": {
"put": {
"tags": [
"Data"
],
"summary": "Update outreach entity data",
"description": "\nUpdates an existing outreach entity data.
Required permissions:
At least one of the following permissions is required: EntityDataEdit, EntityGroupManagementEdit",
"operationId": "UpdateOutreachData",
"parameters": [
{
"name": "journeyId",
"in": "path",
"description": "Journey id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "X-TENANT-ID",
"in": "header",
"description": "The UiD of the tenant representing organization",
"required": true,
"schema": {
"type": "string"
},
"example": "b11f8be3-f29b-4959-8964-956d4af7c468"
}
],
"requestBody": {
"description": "Update outreach entity data request. Must contain Policy jurisdiction(s) and entity draft properties",
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/EntityDraftRequestDtoServiceRequest"
}
]
}
}
}
},
"responses": {
"202": {
"description": "Success. Outreach entity data updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OutreachDataCommandResponseDtoServiceResponse"
}
}
}
},
"404": {
"description": "Resource not found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Not Found. Outreach entity data with given journey id does not exist",
"type": "Error",
"errorCode": "Error Code"
}
]
}
}
}
},
"409": {
"description": "Conflict saving changes in expected version",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "There are conflicts that cannot be resolved automatically, get latest and apply your changes",
"type": "Error",
"errorCode": "CONFLICT"
}
]
}
}
}
},
"400": {
"description": "Bad request. The request has missing/invalid values",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
}
}
}
},
"401": {
"description": "User is not authorized to perform this request",
"content": {
"application/json": {
"example": {
"message": "Unauthorized"
}
}
}
},
"403": {
"description": "Access to resource is forbidden.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Access denied. Following permissions are required: Permission1, Permission2",
"type": "Forbidden",
"errorCode": "Error Code"
}
]
}
}
}
},
"500": {
"description": "Internal server exception. Please, contact your provider.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "Internal server exception. Please, contact your provider.",
"type": "Error",
"errorCode": "INTERNAL_SERVER_ERROR"
}
]
}
}
}
},
"410": {
"description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StringServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
"type": "Error",
"errorCode": "OBSOLETE_ENDPOINT"
}
]
}
}
}
}
}
}
},
"/api/related-data/{id}/journey/{journeyId}": {
"delete": {
"tags": [
"RelatedData"
],
"summary": "Delete related outreach data",
"description": "\nDeleted an existing outreach related data.
Required permissions:
At least one of the following permissions is required: EntityDataEdit, EntityGroupManagementEdit",
"operationId": "DeleteRelatedOutreachData",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Related data id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "journeyId",
"in": "path",
"description": "Journey id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "X-TENANT-ID",
"in": "header",
"description": "The UiD of the tenant representing organization",
"required": true,
"schema": {
"type": "string"
},
"example": "b11f8be3-f29b-4959-8964-956d4af7c468"
}
],
"responses": {
"202": {
"description": "Success. Outreach related data updated"
},
"404": {
"description": "Resource not found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Not Found. Outreach related data with given id does not exist",
"type": "Error",
"errorCode": "Error Code"
}
]
}
}
}
},
"400": {
"description": "Bad request. The request has missing/invalid values",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
}
}
}
},
"401": {
"description": "User is not authorized to perform this request",
"content": {
"application/json": {
"example": {
"message": "Unauthorized"
}
}
}
},
"403": {
"description": "Access to resource is forbidden.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Access denied. Following permissions are required: Permission1, Permission2",
"type": "Forbidden",
"errorCode": "Error Code"
}
]
}
}
}
},
"500": {
"description": "Internal server exception. Please, contact your provider.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "Internal server exception. Please, contact your provider.",
"type": "Error",
"errorCode": "INTERNAL_SERVER_ERROR"
}
]
}
}
}
},
"410": {
"description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StringServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
"type": "Error",
"errorCode": "OBSOLETE_ENDPOINT"
}
]
}
}
}
}
}
},
"put": {
"tags": [
"RelatedData"
],
"summary": "Update related outreach data",
"description": "\nUpdates an existing outreach related data.
Required permissions:
At least one of the following permissions is required: EntityDataEdit, EntityGroupManagementEdit",
"operationId": "UpdateRelatedOutreachData",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Related data id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "journeyId",
"in": "path",
"description": "Journey id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "X-TENANT-ID",
"in": "header",
"description": "The UiD of the tenant representing organization",
"required": true,
"schema": {
"type": "string"
},
"example": "b11f8be3-f29b-4959-8964-956d4af7c468"
}
],
"requestBody": {
"description": "Update outreach related data request. Must contain Policy jurisdiction(s) and entity draft properties",
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/EntityDraftRequestDtoServiceRequest"
}
]
}
}
}
},
"responses": {
"202": {
"description": "Success. Outreach related data updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OutreachDataCommandResponseDtoServiceResponse"
}
}
}
},
"404": {
"description": "Resource not found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Not Found. Outreach related data with given id does not exist",
"type": "Error",
"errorCode": "Error Code"
}
]
}
}
}
},
"409": {
"description": "Conflict saving changes in expected version",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "There are conflicts that cannot be resolved automatically, get latest and apply your changes",
"type": "Error",
"errorCode": "CONFLICT"
}
]
}
}
}
},
"400": {
"description": "Bad request. The request has missing/invalid values",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
}
}
}
},
"401": {
"description": "User is not authorized to perform this request",
"content": {
"application/json": {
"example": {
"message": "Unauthorized"
}
}
}
},
"403": {
"description": "Access to resource is forbidden.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Access denied. Following permissions are required: Permission1, Permission2",
"type": "Forbidden",
"errorCode": "Error Code"
}
]
}
}
}
},
"500": {
"description": "Internal server exception. Please, contact your provider.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "Internal server exception. Please, contact your provider.",
"type": "Error",
"errorCode": "INTERNAL_SERVER_ERROR"
}
]
}
}
}
},
"410": {
"description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StringServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
"type": "Error",
"errorCode": "OBSOLETE_ENDPOINT"
}
]
}
}
}
}
}
}
},
"/api/related-data/{journeyId}": {
"post": {
"tags": [
"RelatedData"
],
"summary": "Create related outreach data",
"description": "\nCreates related outreach data.
Required permissions:
At least one of the following permissions is required: EntityDataEdit, EntityGroupManagementEdit",
"operationId": "CreateRelatedOutreachData",
"parameters": [
{
"name": "journeyId",
"in": "path",
"description": "Journey id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "X-TENANT-ID",
"in": "header",
"description": "The UiD of the tenant representing organization",
"required": true,
"schema": {
"type": "string"
},
"example": "b11f8be3-f29b-4959-8964-956d4af7c468"
}
],
"requestBody": {
"description": "Create related outreach data request. Must contain Policy jurisdiction(s) and entity draft properties",
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/EntityDraftRequestDtoServiceRequest"
}
]
}
}
}
},
"responses": {
"202": {
"description": "Success. Outreach related data updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OutreachDataCommandResponseDtoServiceResponse"
}
}
}
},
"409": {
"description": "Conflict saving changes in expected version",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "There are conflicts that cannot be resolved automatically, get latest and apply your changes",
"type": "Error",
"errorCode": "CONFLICT"
}
]
}
}
}
},
"400": {
"description": "Bad request. The request has missing/invalid values",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
}
}
}
},
"401": {
"description": "User is not authorized to perform this request",
"content": {
"application/json": {
"example": {
"message": "Unauthorized"
}
}
}
},
"403": {
"description": "Access to resource is forbidden.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Access denied. Following permissions are required: Permission1, Permission2",
"type": "Forbidden",
"errorCode": "Error Code"
}
]
}
}
}
},
"500": {
"description": "Internal server exception. Please, contact your provider.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "Internal server exception. Please, contact your provider.",
"type": "Error",
"errorCode": "INTERNAL_SERVER_ERROR"
}
]
}
}
}
},
"410": {
"description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StringServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
"type": "Error",
"errorCode": "OBSOLETE_ENDPOINT"
}
]
}
}
}
}
}
}
},
"/api/related-data/clear/journey/{journeyId}": {
"delete": {
"tags": [
"RelatedData"
],
"summary": "Permanently deletes existing outreach related data.",
"description": "\nThis method will delete all existing outreach related data.
Required permissions:
At least one of the following permissions is required: AssociationEdit, EntityGroupManagementEdit, AssociationEdit, EntityGroupManagementEdit",
"operationId": "ClearOutreachRelatedData",
"parameters": [
{
"name": "journeyId",
"in": "path",
"description": "Journey Id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "X-TENANT-ID",
"in": "header",
"description": "The UiD of the tenant representing organization",
"required": true,
"schema": {
"type": "string"
},
"example": "b11f8be3-f29b-4959-8964-956d4af7c468"
}
],
"responses": {
"202": {
"description": "Association model deleted successfully"
},
"404": {
"description": "Resource not found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Not Found",
"type": "Error",
"errorCode": "Error Code"
}
]
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
}
}
}
},
"401": {
"description": "User is not authorized to perform this request",
"content": {
"application/json": {
"example": {
"message": "Unauthorized"
}
}
}
},
"403": {
"description": "Access to resource is forbidden.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": { },
"messages": [
{
"message": "Access denied. Following permissions are required: Permission1, Permission2",
"type": "Forbidden",
"errorCode": "Error Code"
}
]
}
}
}
},
"500": {
"description": "Internal server exception. Please, contact your provider.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ObjectServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "Internal server exception. Please, contact your provider.",
"type": "Error",
"errorCode": "INTERNAL_SERVER_ERROR"
}
]
}
}
}
},
"410": {
"description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StringServiceResponse"
},
"example": {
"data": null,
"messages": [
{
"message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
"type": "Error",
"errorCode": "OBSOLETE_ENDPOINT"
}
]
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"AccountRelatedFundDto": {
"required": [
"properties"
],
"type": "object",
"properties": {
"properties": {
"allOf": [
{
"$ref": "#/components/schemas/PropertiesDto"
}
]
}
},
"additionalProperties": false
},
"AccountRelatedFundsDataSource": {
"required": [
"accountRelatedFunds"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"accountRelatedFunds": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AccountRelatedFundDto"
}
}
},
"additionalProperties": false
},
"AlertAssessmentDataSource": {
"required": [
"assessments",
"lastAssessment"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"assessments": {
"minItems": 1,
"type": "array",
"items": {
"$ref": "#/components/schemas/AlertAssessmentDto"
}
},
"lastAssessment": {
"allOf": [
{
"$ref": "#/components/schemas/AlertAssessmentDto"
}
]
},
"lastAssessmentOutcome": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"AlertAssessmentDto": {
"required": [
"category"
],
"type": "object",
"properties": {
"category": {
"type": "string"
}
},
"additionalProperties": false
},
"AlertDataSource": {
"required": [
"attribute",
"source",
"type"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"source": {
"type": "string"
},
"type": {
"type": "string"
},
"attribute": {
"type": "string"
}
},
"additionalProperties": false
},
"ApiResponse": {
"type": "object",
"properties": {
"version": {
"type": "integer",
"format": "int32"
},
"messages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ServiceResponseMessage"
},
"nullable": true
}
},
"additionalProperties": false
},
"ApiResponseServiceResponse": {
"type": "object",
"properties": {
"data": {
"allOf": [
{
"$ref": "#/components/schemas/ApiResponse"
}
],
"nullable": true
},
"messages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ServiceResponseMessage"
},
"nullable": true
}
},
"additionalProperties": false
},
"AssociationDto": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The UiD of the association model",
"format": "uuid",
"example": "118313c6-91e6-4b05-a537-5a1ab906418f"
},
"sourceId": {
"type": "string",
"description": "The UiD of the Parent Entity",
"format": "uuid",
"example": "2920b7a7-7336-4fb1-82b7-1d691b8367fa"
},
"targetId": {
"type": "string",
"description": "The UiD of the Child Entity",
"format": "uuid",
"example": "6b399cff-6e35-42a0-aaf0-69a94a008636"
},
"type": {
"type": "string",
"description": "The type of association",
"nullable": true,
"example": "Shareholder"
},
"journeyId": {
"type": "string",
"description": "The UiD of the Journey that this association was created",
"format": "uuid",
"example": "4a056330-18d2-4ec1-8b1e-c959ed4b5f12"
},
"isVerified": {
"type": "boolean",
"description": "Annotates whether the association has been validated",
"example": true
},
"ownershipPercentage": {
"type": "number",
"description": "The percentage amount of the target entity owned by the source entity\n(optional)",
"format": "double",
"example": 5.007
},
"properties": {
"type": "object",
"additionalProperties": {
"type": "string",
"nullable": true
},
"description": "A list of custom properties that describe the association",
"nullable": true,
"example": [
{
"OwnershipPercentage": 15
},
{
"CountryOfIncorporation": "Portugal"
}
]
}
},
"additionalProperties": false,
"description": "The metadata of an association between two entities"
},
"AssociationDtoServiceRequest": {
"type": "object",
"properties": {
"data": {
"allOf": [
{
"$ref": "#/components/schemas/AssociationDto"
}
],
"description": "The metadata of an association between two entities",
"nullable": true
}
},
"additionalProperties": false
},
"AssociationDtoServiceResponse": {
"type": "object",
"properties": {
"data": {
"allOf": [
{
"$ref": "#/components/schemas/AssociationDto"
}
],
"description": "The metadata of an association between two entities",
"nullable": true
},
"messages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ServiceResponseMessage"
},
"nullable": true
}
},
"additionalProperties": false
},
"AutoCreditAssessmentDataSource": {
"required": [
"autoCreditAssessments"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"autoCreditAssessments": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AutoCreditAssessmentDto"
}
}
},
"additionalProperties": false
},
"AutoCreditAssessmentDto": {
"required": [
"properties"
],
"type": "object",
"properties": {
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
},
"assessmentOutcome": {
"type": "string",
"nullable": true
},
"providerInternalIdentifier": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"AutoCreditScreeningDataSource": {
"required": [
"creditScreenings"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"creditScreenings": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AutoCreditScreeningDto"
}
},
"relatedPartyCreditScreenings": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AutoCreditScreeningDto"
},
"nullable": true
}
},
"additionalProperties": false
},
"AutoCreditScreeningDto": {
"required": [
"properties"
],
"type": "object",
"properties": {
"entityId": {
"type": "string",
"format": "uuid"
},
"creditScreeningOutcome": {
"type": "string",
"nullable": true
},
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
},
"providerInternalIdentifier": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"ChangedFieldDto": {
"type": "object",
"properties": {
"key": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"ChangedFieldsDataSource": {
"required": [
"changedFields"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"changedFields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ChangedFieldDto"
}
}
},
"additionalProperties": false
},
"CollateralDataSource": {
"required": [
"collaterals"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"collaterals": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CollateralDto"
}
}
},
"additionalProperties": false
},
"CollateralDto": {
"required": [
"properties"
],
"type": "object",
"properties": {
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
}
},
"additionalProperties": false
},
"CollectionDto": {
"type": "object",
"properties": {
"isValid": {
"type": "boolean"
},
"properties": {
"type": "object",
"additionalProperties": {
"type": "string",
"nullable": true
},
"nullable": true
},
"propertiesInfo": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/CollectionPropertyInfoDto"
},
"nullable": true
}
},
"additionalProperties": false
},
"CollectionItemDto": {
"type": "object",
"properties": {
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/SinglePropertyDto2"
},
"nullable": true
}
},
"additionalProperties": false
},
"CollectionPropertyDto": {
"allOf": [
{
"$ref": "#/components/schemas/PropertyDto"
},
{
"type": "object",
"properties": {
"dataGroupId": {
"type": "string",
"format": "uuid"
},
"dataGroupVersionNumber": {
"type": "integer",
"format": "int32",
"nullable": true
},
"collections": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/CollectionDto"
},
"nullable": true
}
},
"additionalProperties": false
}
]
},
"CollectionPropertyDto2": {
"type": "object",
"properties": {
"items": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/CollectionItemDto"
},
"nullable": true
},
"collectionId": {
"type": "string",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false
},
"CollectionPropertyInfoDto": {
"type": "object",
"properties": {
"valueId": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"CreditAssessmentDto": {
"required": [
"properties",
"taskId"
],
"type": "object",
"properties": {
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
},
"assessmentOutcome": {
"type": "string",
"nullable": true
},
"assessmentComment": {
"type": "string",
"nullable": true
},
"taskId": {
"type": "string"
},
"taskDataKey": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"CurrentDataGroupItemDataSource": {
"required": [
"properties"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"properties": {
"type": "object",
"additionalProperties": {
"type": "string",
"nullable": true
}
}
},
"additionalProperties": false
},
"CurrentFieldDataSource": {
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"currentField": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"CurrentJourneysDataSource": {
"required": [
"inProgressJourneyTypes"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"inProgressJourneyTypes": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"CurrentProductDataSource": {
"required": [
"properties"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
},
"lifecycleStatus": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"CurrentProductMetadataDataSource": {
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"isAgency": {
"type": "string",
"nullable": true
},
"lifecycleStatus": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"CurrentUserDataSource": {
"required": [
"teamIds"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"teamIds": {
"type": "array",
"items": {
"minLength": 1,
"type": "string",
"format": "uuid"
}
},
"isSystemUser": {
"type": "boolean"
}
},
"additionalProperties": false
},
"CustomPropertyDto": {
"allOf": [
{
"$ref": "#/components/schemas/PropertyDto"
},
{
"type": "object",
"properties": {
"customTypeId": {
"type": "string",
"format": "uuid"
},
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"nullable": true,
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
}
},
"additionalProperties": false
}
]
},
"CustomPropertyDto2": {
"type": "object",
"properties": {
"singleProperties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/SinglePropertyDto2"
},
"nullable": true
},
"customProperties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/CustomPropertyDto2"
},
"nullable": true
}
},
"additionalProperties": false
},
"DataSourcesDto": {
"type": "object",
"properties": {
"entityDataMetadata": {
"allOf": [
{
"$ref": "#/components/schemas/EntityDataMetadataDataSource"
}
],
"nullable": true
},
"eventIngress": {
"allOf": [
{
"$ref": "#/components/schemas/EventIngressDataSource"
}
],
"nullable": true
},
"changedFields": {
"allOf": [
{
"$ref": "#/components/schemas/ChangedFieldsDataSource"
}
],
"nullable": true
},
"relatedClient": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedClientDataSource"
}
],
"nullable": true
},
"relatedProducts": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedProductsDataSource"
}
],
"nullable": true
},
"currentDataGroupItem": {
"allOf": [
{
"$ref": "#/components/schemas/CurrentDataGroupItemDataSource"
}
],
"nullable": true
},
"externalDataAdapter": {
"allOf": [
{
"$ref": "#/components/schemas/ExternalDataAdapterDataSource"
}
],
"nullable": true
},
"entityAssociation": {
"allOf": [
{
"$ref": "#/components/schemas/EntityAssociationDataSource"
}
],
"nullable": true
},
"manualCreditAssessment": {
"allOf": [
{
"$ref": "#/components/schemas/ManualCreditAssessmentV2DataSource"
}
],
"nullable": true
},
"reviewAndApproval": {
"allOf": [
{
"$ref": "#/components/schemas/ReviewAndApprovalDataSource"
}
],
"nullable": true
},
"autoCreditAssessment": {
"allOf": [
{
"$ref": "#/components/schemas/AutoCreditAssessmentDataSource"
}
],
"nullable": true
},
"manualCreditScreening": {
"allOf": [
{
"$ref": "#/components/schemas/ManualCreditScreeningDataSource"
}
],
"nullable": true
},
"collateral": {
"allOf": [
{
"$ref": "#/components/schemas/CollateralDataSource"
}
],
"nullable": true
},
"currentJourneys": {
"allOf": [
{
"$ref": "#/components/schemas/CurrentJourneysDataSource"
}
],
"nullable": true
},
"autoCreditScreening": {
"allOf": [
{
"$ref": "#/components/schemas/AutoCreditScreeningDataSource"
}
],
"nullable": true
},
"currentProduct": {
"allOf": [
{
"$ref": "#/components/schemas/CurrentProductDataSource"
}
],
"nullable": true
},
"relatedDeals": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedDealsDataSource"
}
],
"nullable": true
},
"mainEntity": {
"allOf": [
{
"$ref": "#/components/schemas/MainEntityDataSource"
}
],
"nullable": true
},
"relatedAssets": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedAssetsDataSource"
}
],
"nullable": true
},
"relatedAssociations": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedAssociationsDataSource"
}
],
"nullable": true
},
"accountRelatedFunds": {
"allOf": [
{
"$ref": "#/components/schemas/AccountRelatedFundsDataSource"
}
],
"nullable": true
},
"investmentAccountFund": {
"allOf": [
{
"$ref": "#/components/schemas/InvestmentAccountFundDataSource"
}
],
"nullable": true
},
"journeyLevelData": {
"allOf": [
{
"$ref": "#/components/schemas/JourneyLevelDataDataSource"
}
],
"nullable": true
},
"relatedParties": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedPartiesDataSource"
}
],
"nullable": true
},
"currentField": {
"allOf": [
{
"$ref": "#/components/schemas/CurrentFieldDataSource"
}
],
"nullable": true
},
"significanceEngine": {
"allOf": [
{
"$ref": "#/components/schemas/SignificanceEngineDataSource"
}
],
"nullable": true
},
"alert": {
"allOf": [
{
"$ref": "#/components/schemas/AlertDataSource"
}
],
"nullable": true
},
"relatedFCRs": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedFCRsDataSource"
}
],
"nullable": true
},
"relatedInvestmentManager": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedInvestmentManagerDataSource"
}
],
"nullable": true
},
"relatedUnderlyingPrincipalOwner": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedUnderlyingPrincipalOwnerDataSource"
}
],
"nullable": true
},
"alertAssessment": {
"allOf": [
{
"$ref": "#/components/schemas/AlertAssessmentDataSource"
}
],
"nullable": true
},
"currentProductMetadata": {
"allOf": [
{
"$ref": "#/components/schemas/CurrentProductMetadataDataSource"
}
],
"nullable": true
},
"currentUser": {
"allOf": [
{
"$ref": "#/components/schemas/CurrentUserDataSource"
}
],
"nullable": true
},
"relatedDocuments": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedDocumentsDataSource"
}
],
"nullable": true
},
"screeningMateriality": {
"allOf": [
{
"$ref": "#/components/schemas/ScreeningMaterialityDataSource"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"EntityAssociationDataSource": {
"required": [
"associationToClient",
"associationType"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"associationType": {
"minLength": 1,
"type": "string"
},
"ownershipPercentage": {
"type": "number",
"format": "double",
"nullable": true
},
"associationToClient": {
"minLength": 1,
"type": "string"
},
"properties": {
"allOf": [
{
"$ref": "#/components/schemas/PropertiesDto"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"EntityDataMetadataDataSource": {
"required": [
"entityType"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"entityType": {
"minLength": 1,
"type": "string"
}
},
"additionalProperties": false
},
"EntityDraftDto": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Source entity draft id",
"format": "uuid",
"example": "bb88430f-48ec-46de-92dc-905876e0e8eb"
},
"sourceEntityId": {
"type": "string",
"description": "Source entity id",
"format": "uuid",
"example": "bb88430f-48ec-46de-92dc-905876e0e8eb"
},
"sourceEntityVersion": {
"type": "integer",
"description": "Source entity version",
"format": "int32",
"example": 1
},
"jurisdictions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VersionedJurisdictionDto"
},
"description": "Collection of policy jurisdictions",
"nullable": true
},
"type": {
"type": "string",
"description": "The type of the entity",
"nullable": true,
"example": "Individual"
},
"category": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of requirement category e.g. [\"Basic Details\", \"Enrich Details\"]",
"nullable": true
},
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"description": "Entity draft properties",
"nullable": true,
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
},
"version": {
"type": "integer",
"description": "Current version of the Draft where you want to apply your changes. This parameter is required \nto guarantee consistency and conflicts detection. If it is not provided, it will save new changes\non top of latest without conflicts checking",
"format": "int32",
"default": -1
}
},
"additionalProperties": false,
"description": "Request DTO to update entity draft"
},
"EntityDraftRequestDto": {
"allOf": [
{
"$ref": "#/components/schemas/EntityDraftDto"
},
{
"type": "object",
"properties": {
"dataSources": {
"allOf": [
{
"$ref": "#/components/schemas/DataSourcesDto"
}
],
"description": "Additional data sources used for evaluation",
"nullable": true
}
},
"additionalProperties": false
}
],
"description": "Request DTO to entity draft"
},
"EntityDraftRequestDtoServiceRequest": {
"type": "object",
"properties": {
"data": {
"allOf": [
{
"$ref": "#/components/schemas/EntityDraftRequestDto"
}
],
"description": "Request DTO to entity draft",
"nullable": true
}
},
"additionalProperties": false
},
"EntityDraftRequestDtoV3": {
"allOf": [
{
"$ref": "#/components/schemas/EntityDraftRequestDto"
},
{
"type": "object",
"properties": {
"triggerValidation": {
"type": "boolean",
"description": "If true, it will trigger validation of the entity draft"
}
},
"additionalProperties": false
}
],
"description": "Request DTO to entity draft"
},
"EventIngressDataSource": {
"required": [
"eventSubtype",
"eventType"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"eventType": {
"minLength": 1,
"type": "string"
},
"eventSubtype": {
"minLength": 1,
"type": "string"
}
},
"additionalProperties": false
},
"ExistingAssociatedEntityCommentsDto": {
"type": "object",
"properties": {
"associatedEntityIdsComments": {
"type": "object",
"additionalProperties": {
"type": "string",
"nullable": true
},
"description": "Associatied Entity Comments Dictionary",
"nullable": true,
"example": {
"7c4bc3ff-9d5b-4ccd-839b-637c227b1c65": "This is not valid association",
"6c4bc3ff-9d5b-4ccd-839b-637c227b1c65": "This is old association"
}
},
"version": {
"type": "integer",
"description": "Version number for given Object",
"format": "int32",
"example": 1
}
},
"additionalProperties": false,
"description": "Comment for Existing Associated Entity in the System"
},
"ExistingAssociatedEntityCommentsDtoServiceRequest": {
"type": "object",
"properties": {
"data": {
"allOf": [
{
"$ref": "#/components/schemas/ExistingAssociatedEntityCommentsDto"
}
],
"description": "Comment for Existing Associated Entity in the System",
"nullable": true
}
},
"additionalProperties": false
},
"ExternalDataAdapterDataSource": {
"required": [
"eventSubtype",
"eventType"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"eventType": {
"minLength": 1,
"type": "string"
},
"eventSubtype": {
"minLength": 1,
"type": "string"
}
},
"additionalProperties": false
},
"InvestmentAccountFundDataSource": {
"required": [
"properties"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"properties": {
"allOf": [
{
"$ref": "#/components/schemas/PropertiesDto"
}
]
}
},
"additionalProperties": false
},
"JourneyLevelDataDataSource": {
"required": [
"properties"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"properties": {
"allOf": [
{
"$ref": "#/components/schemas/PropertiesDto"
}
]
}
},
"additionalProperties": false
},
"MainEntityDataSource": {
"required": [
"properties"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"properties": {
"allOf": [
{
"$ref": "#/components/schemas/PropertiesDto"
}
]
}
},
"additionalProperties": false
},
"ManualCreditAssessmentV2DataSource": {
"required": [
"creditAssessments"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"creditAssessments": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CreditAssessmentDto"
}
}
},
"additionalProperties": false
},
"ManualCreditScreeningDataSource": {
"required": [
"creditScreenings"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"creditScreenings": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ManualCreditScreeningDto"
}
},
"relatedPartyCreditScreenings": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ManualCreditScreeningDto"
},
"nullable": true
}
},
"additionalProperties": false
},
"ManualCreditScreeningDto": {
"required": [
"properties"
],
"type": "object",
"properties": {
"taskDataKey": {
"type": "string",
"nullable": true
},
"taskId": {
"type": "string",
"format": "uuid"
},
"entityId": {
"type": "string",
"format": "uuid"
},
"creditScreeningOutcome": {
"type": "string",
"nullable": true
},
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
}
},
"additionalProperties": false
},
"ObjectServiceResponse": {
"type": "object",
"properties": {
"data": {
"nullable": true
},
"messages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ServiceResponseMessage"
},
"nullable": true
}
},
"additionalProperties": false
},
"OutreachDataCommandResponseDto": {
"type": "object",
"properties": {
"version": {
"type": "integer",
"description": "Version of outreach data after update",
"format": "int32",
"example": 4
},
"id": {
"type": "string",
"description": "Id of updated/created data",
"format": "uuid"
},
"hasValidationErrors": {
"type": "boolean",
"description": "Flag indicating occurrence of validation errors for invalid properties",
"example": false
}
},
"additionalProperties": false,
"description": "Response DTO representing updated outreach data"
},
"OutreachDataCommandResponseDtoServiceResponse": {
"type": "object",
"properties": {
"data": {
"allOf": [
{
"$ref": "#/components/schemas/OutreachDataCommandResponseDto"
}
],
"description": "Response DTO representing updated outreach data",
"nullable": true
},
"messages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ServiceResponseMessage"
},
"nullable": true
}
},
"additionalProperties": false
},
"PropertiesDto": {
"type": "object",
"properties": {
"singleProperties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/SinglePropertyDto2"
},
"nullable": true
},
"collectionProperties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/CollectionPropertyDto2"
},
"nullable": true
},
"customProperties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/CustomPropertyDto2"
},
"nullable": true
}
},
"additionalProperties": false
},
"PropertyDto": {
"type": "object",
"properties": {
"type": {
"allOf": [
{
"$ref": "#/components/schemas/PropertyType"
}
],
"readOnly": true
},
"discriminator": {
"allOf": [
{
"$ref": "#/components/schemas/PropertyType"
}
],
"readOnly": true
},
"isValid": {
"type": "boolean",
"nullable": true
}
},
"additionalProperties": false
},
"PropertyType": {
"enum": [
"Single",
"Custom",
"Collection"
],
"type": "string"
},
"RelatedAssetDto": {
"required": [
"properties"
],
"type": "object",
"properties": {
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
}
},
"additionalProperties": false
},
"RelatedAssetsDataSource": {
"required": [
"assets"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"assets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RelatedAssetDto"
}
}
},
"additionalProperties": false
},
"RelatedAssociationDto": {
"required": [
"properties"
],
"type": "object",
"properties": {
"associationType": {
"type": "string",
"nullable": true
},
"ownershipPercentage": {
"type": "number",
"format": "double",
"nullable": true
},
"associationToClient": {
"type": "string",
"nullable": true
},
"properties": {
"allOf": [
{
"$ref": "#/components/schemas/PropertiesDto"
}
]
}
},
"additionalProperties": false
},
"RelatedAssociationsDataSource": {
"required": [
"relatedAssociations"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"relatedAssociations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RelatedAssociationDto"
}
}
},
"additionalProperties": false
},
"RelatedClientDataSource": {
"required": [
"properties"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
}
},
"additionalProperties": false
},
"RelatedDealDto": {
"required": [
"properties"
],
"type": "object",
"properties": {
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
}
},
"additionalProperties": false
},
"RelatedDealsDataSource": {
"required": [
"relatedDeals"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"relatedDeals": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RelatedDealDto"
}
}
},
"additionalProperties": false
},
"RelatedDocumentDto": {
"required": [
"document"
],
"type": "object",
"properties": {
"document": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedDocumentVersionedDto"
}
]
}
},
"additionalProperties": false
},
"RelatedDocumentVersionedDto": {
"type": "object",
"properties": {
"documentKey": {
"type": "string",
"nullable": true
},
"documentType": {
"type": "string",
"nullable": true
},
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"nullable": true,
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
}
},
"additionalProperties": false
},
"RelatedDocumentsDataSource": {
"required": [
"documents"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"documents": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RelatedDocumentDto"
}
}
},
"additionalProperties": false
},
"RelatedFCRDto": {
"required": [
"status"
],
"type": "object",
"properties": {
"status": {
"type": "string"
},
"createdDate": {
"type": "string",
"format": "date-time"
},
"submittedDate": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
"additionalProperties": false
},
"RelatedFCRsDataSource": {
"required": [
"fcRs"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"fcRs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RelatedFCRDto"
}
}
},
"additionalProperties": false
},
"RelatedInvestmentManagerDataSource": {
"required": [
"properties"
],
"type": "object",
"properties": {
"properties": {
"allOf": [
{
"$ref": "#/components/schemas/PropertiesDto"
}
]
},
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
}
},
"additionalProperties": false
},
"RelatedPartiesDataSource": {
"required": [
"relatedParties"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"relatedParties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RelatedPartyDto"
}
}
},
"additionalProperties": false
},
"RelatedPartyDto": {
"required": [
"properties"
],
"type": "object",
"properties": {
"properties": {
"allOf": [
{
"$ref": "#/components/schemas/PropertiesDto"
}
]
},
"metadata": {
"type": "object",
"additionalProperties": {
"type": "string",
"nullable": true
},
"nullable": true
}
},
"additionalProperties": false
},
"RelatedProductDto": {
"required": [
"properties"
],
"type": "object",
"properties": {
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
},
"lifecycleStatus": {
"type": "string",
"nullable": true
},
"relationshipTypes": {
"type": "array",
"items": {
"type": "string"
},
"nullable": true
}
},
"additionalProperties": false
},
"RelatedProductsDataSource": {
"required": [
"products"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"products": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RelatedProductDto"
}
}
},
"additionalProperties": false
},
"RelatedUnderlyingPrincipalOwnerDataSource": {
"required": [
"properties"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"properties": {
"allOf": [
{
"$ref": "#/components/schemas/PropertiesDto"
}
]
}
},
"additionalProperties": false
},
"ReviewAndApprovalDataSource": {
"required": [
"reviewAndApprovals"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"reviewAndApprovals": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ReviewAndApprovalDto"
}
}
},
"additionalProperties": false
},
"ReviewAndApprovalDto": {
"required": [
"approvalOutcome"
],
"type": "object",
"properties": {
"properties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/PropertyDto"
},
"nullable": true,
"example": {
"firstName": {
"type": "Single",
"value": "Peter"
},
"dateOfBirth": {
"type": "Single",
"value": "1989-04-10"
},
"address": {
"type": "Collection",
"dataGroupId": "674ccef1-cfdc-46af-97f8-340b24ab7f43",
"collections": {
"54a25d24-1a4b-45c6-a5b4-980e5d3a1df5": {
"properties": {
"country": "Poland",
"city": "Warszawa",
"street": "Nowogrodzka"
}
}
}
}
}
},
"approvalOutcome": {
"type": "string"
},
"approvalReason": {
"type": "string",
"nullable": true
},
"taskId": {
"type": "string",
"nullable": true
},
"taskDataKey": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"ScreeningMaterialityAssessmentDto": {
"required": [
"adverseMediaJurisdictions",
"enforcementsJurisdictions",
"otherJurisdictions",
"pepJurisdictions",
"sanctionsJurisdictions"
],
"type": "object",
"properties": {
"mainEntity": {
"type": "boolean"
},
"materialityOutcome": {
"type": "string",
"nullable": true
},
"pepMaterialityStatus": {
"type": "string",
"nullable": true
},
"sanctionsMaterialityStatus": {
"type": "string",
"nullable": true
},
"adverseMediaMaterialityStatus": {
"type": "string",
"nullable": true
},
"enforcementsMaterialityStatus": {
"type": "string",
"nullable": true
},
"otherMaterialityStatus": {
"type": "string",
"nullable": true
},
"pepJurisdictions": {
"type": "array",
"items": {
"type": "string"
}
},
"sanctionsJurisdictions": {
"type": "array",
"items": {
"type": "string"
}
},
"adverseMediaJurisdictions": {
"type": "array",
"items": {
"type": "string"
}
},
"enforcementsJurisdictions": {
"type": "array",
"items": {
"type": "string"
}
},
"otherJurisdictions": {
"type": "array",
"items": {
"type": "string"
}
},
"sanctionsProceedDecision": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"ScreeningMaterialityDataSource": {
"required": [
"assessments"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"assessments": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ScreeningMaterialityAssessmentDto"
}
}
},
"additionalProperties": false
},
"ServiceResponse": {
"type": "object",
"properties": {
"data": {
"type": "string",
"nullable": true
},
"messages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ServiceResponseMessage"
},
"nullable": true
}
},
"additionalProperties": false
},
"ServiceResponseMessage": {
"type": "object",
"properties": {
"message": {
"type": "string",
"nullable": true
},
"type": {
"type": "string",
"nullable": true
},
"errorCode": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"SignificanceEngineDataSource": {
"required": [
"significanceEngine"
],
"type": "object",
"properties": {
"dataSource": {
"type": "string",
"nullable": true,
"readOnly": true
},
"significanceEngine": {
"allOf": [
{
"$ref": "#/components/schemas/SignificanceEngineDto"
}
]
}
},
"additionalProperties": false
},
"SignificanceEngineDto": {
"type": "object",
"properties": {
"singleFields": {
"type": "array",
"items": {
"type": "string"
},
"nullable": true
},
"collections": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
},
"nullable": true
},
"nullable": true
}
},
"additionalProperties": false
},
"SinglePropertyDto": {
"allOf": [
{
"$ref": "#/components/schemas/PropertyDto"
},
{
"type": "object",
"properties": {
"value": {
"type": "string",
"nullable": true
},
"valueId": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
}
]
},
"SinglePropertyDto2": {
"type": "object",
"properties": {
"value": {
"type": "string",
"nullable": true
},
"valueId": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"StringServiceResponse": {
"type": "object",
"properties": {
"data": {
"type": "string",
"nullable": true
},
"messages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ServiceResponseMessage"
},
"nullable": true
}
},
"additionalProperties": false
},
"StringStringKeyValuePair": {
"type": "object",
"properties": {
"key": {
"type": "string",
"nullable": true
},
"value": {
"maxLength": 500,
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"ValidationErrorModel": {
"type": "object",
"properties": {
"propertyName": {
"type": "string",
"nullable": true
},
"errorMessage": {
"type": "string",
"nullable": true
},
"attemptedValue": {
"nullable": true
},
"errorCode": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"ValidationErrorModelListServiceResponse": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ValidationErrorModel"
},
"nullable": true
},
"messages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ServiceResponseMessage"
},
"nullable": true
}
},
"additionalProperties": false,
"example": {
"data": [
{
"propertyName": "data",
"errorMessage": "Data is required",
"attemptedValue": "",
"errorCode": "NotNullValidator"
}
],
"messages": [
{
"message": "Data is required",
"type": "Error",
"errorCode": "Error Code"
}
]
}
},
"VersionedJurisdictionDto": {
"required": [
"jurisdiction",
"versionId"
],
"type": "object",
"properties": {
"jurisdiction": {
"minLength": 1,
"type": "string",
"description": "Jurisdiction Name",
"example": "Global"
},
"versionId": {
"minLength": 1,
"type": "string",
"description": "Jurisdiction Version Id",
"format": "uuid",
"example": "7c4bc3ff-9d5b-4ccd-839b-637c227b1c65"
}
},
"additionalProperties": false
}
},
"securitySchemes": {
"Bearer": {
"type": "apiKey",
"description": "Please insert JWT with Bearer into field",
"name": "Authorization",
"in": "header"
}
}
},
"security": [
{
"Bearer": [ ]
}
]
}