示例#1
0
        public async Task <DocstoreListApiResponse> ListDocuments(string path)
        {
            DocstoreListApiResponse response = new DocstoreListApiResponse();

            try {
                DocsotreListDetailResponse docstoreListResponse = new DocsotreListDetailResponse();
                docstoreListResponse.Results = new List <DocstoreListResponse>();

                this.restClient.requestUrl = string.Format("{0}/{1}?path={2}", this.docstoreServiceendPoint, "folder/docs", path);
                //this.logger.LogTrace(this.GetLogRecord("Request->Url:" + this.restClient.requestUrl, "DocstoreClient.ListDocuments", path));

                Stopwatch stopwatch = new Stopwatch();
                stopwatch.Start();
                HttpResponseMessage responseMessage = await this.restClient.Get();

                if (responseMessage.IsSuccessStatusCode)
                {
                    response.Status = ApiStatus.Success;

                    DocsotreListDetailResponse resultdocstoreListResponse = await responseMessage.Content.ReadAsAsync <DocsotreListDetailResponse>();

                    docstoreListResponse.Results.AddRange(resultdocstoreListResponse.Results);

                    while (!string.IsNullOrEmpty(resultdocstoreListResponse.Next))
                    {
                        this.restClient.requestUrl = resultdocstoreListResponse.Next;
                        responseMessage            = await this.restClient.Get();

                        resultdocstoreListResponse = await responseMessage.Content.ReadAsAsync <DocsotreListDetailResponse>();

                        docstoreListResponse.Results.AddRange(resultdocstoreListResponse.Results);
                    }

                    docstoreListResponse.Count = docstoreListResponse.Results.Count;
                    response.Response          = docstoreListResponse;

                    stopwatch.Stop();
                    this.logger.LogTrace(this.GetLogRecord("Request Success -> Url:" + this.restClient.requestUrl, "DocstoreClient.ListDocuments", path, stopwatch.ElapsedMilliseconds));
                }
                else
                {
                    response.Status  = ApiStatus.Error;
                    response.Message = await responseMessage.Content.ReadAsStringAsync();

                    stopwatch.Stop();
                    this.logger.LogError(this.GetLogRecord("Request Error -> Url:" + this.restClient.requestUrl + " ErrorMessage:" + response.Message, "DocstoreClient.ListDocuments", path, stopwatch.ElapsedMilliseconds));
                }
            } catch (Exception ex) {
                response.Status  = ApiStatus.Error;
                response.Message = ex.Message;

                this.logger.LogError(this.GetLogRecord("Request Error -> Url:" + this.restClient.requestUrl, "DocstoreClient.ListDocuments", path), ex);
            }

            return(response);
        }
示例#2
0
        static void Main(string[] args)
        {
            ILoggerFactory loggerFactory  = new LoggerFactory();
            string         userToken      = "eyJraWQiOiJhWW0ya2xQOHFWMzFiSndkd1JSVDVVTkRCZjlUVEpnTE5hQUViVGo3QVFJPSIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiI0MGViY2VkYS1kN2QwLTRkNjgtOWE1MS1mOWMzN2E4ZmYyNzQiLCJhdWQiOiJxcG5kaGNyZDd1ZzRqZnFkaWRidmtuNTVnIiwiZW1haWxfdmVyaWZpZWQiOnRydWUsImV2ZW50X2lkIjoiZWUyMWRkZmEtZGE2Yy0xMWU4LWI3YWMtMmJkMTc3YTYwY2U1IiwidG9rZW5fdXNlIjoiaWQiLCJhdXRoX3RpbWUiOjE1NDA3MDIyMDIsImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC51cy13ZXN0LTIuYW1hem9uYXdzLmNvbVwvdXMtd2VzdC0yX01Ocm5TRmxNYSIsImNvZ25pdG86dXNlcm5hbWUiOiJleGNlbGFkbWluIiwiZXhwIjoxNTQwNzA1ODAyLCJpYXQiOjE1NDA3MDIyMDIsImVtYWlsIjoidmlqYXlkYmFnYWRhaUBnbWFpbC5jb20ifQ.MFjDHWhPGFYuPTZkPp_EMASIvgB6h9CmTMvmqW-DN2L85WIaVbq3fquk0VAiXCp1VeyLVeh0RhpOc86FQgtstDSMMPTxPMfOT0QDa73rHsrqA86RBRJImJ7L9bOxdqawe3_d1OpdQpOOluNPj-FOy-Sg0birDXdduH8Bmvq_a9-YxXiEhUKOStKS6OuYFW1PQRIGeGNObBbi5sX4aNH92Bpi4iqh9vE2A1CbSz9MrePBUtPZqB5WIyuFfbRTP7nD-8uZbrLpixii_MQ51pZ8pWfhPX0HzWMZZWp3hNHmmh5tf5yv3OGyNoVHKQygbL6D1zq7uXcxcu2WRiWBmuNU9g";
            DocstoreClient docstoreClient = new DocstoreClient(userToken, "https://docs.dev.darkdonny.pw/docstore", loggerFactory);

            byte[] bytecontet = System.IO.File.ReadAllBytes("documents/0e7d10a8-b41b-41ff-8945-f91b027d0393.xlsx");

            byte[] gb = Guid.NewGuid().ToByteArray();
            int    i  = BitConverter.ToInt32(gb, 0);

            Dictionary <string, string> metadata = new Dictionary <string, string>();

            metadata.Add("test", "test1");
            metadata.Add("test1", "test2");

            string documentName          = string.Format("agreement{0}", Math.Abs(i)) + ".xlsx";
            DocstoreApiResponse response = docstoreClient.CreateDocument(documentName, "jigartest", bytecontet, metadata).Result;

            Console.WriteLine("Create Document: {0}", response.Response.Name);

            documentName = string.Format("agreement{0}", Math.Abs(i)) + ".xlsx";
            response     = docstoreClient.UpsertDocument(documentName, "jigartest", bytecontet, metadata).Result;
            Console.WriteLine("Upsert Document: {0}", response.Response.Name);

            response = docstoreClient.GetDocument(documentName, "ExcelEngine/Services").Result;
            Console.WriteLine("Get Latest Version Document: {0}", response.Response.File);

            DocumentDownloadManager downloadManager = new DocumentDownloadManager();
            // byte[] content = downloadManager.DownloadFileContent(response.Response.File);

            //System.IO.File.WriteAllBytes("documents/test.xlsx", content);
//            response = docstoreClient.DeleteDocument(documentName, "jigartest").Result;
//          Console.WriteLine("Document Deleted sucessfully");

            DocstoreListApiResponse result = docstoreClient.ListDocuments("ExcelEngine/Services").Result;

            Console.WriteLine("Total Count:" + result.Response.Count);

            Console.WriteLine("Press any key to exit...");
            Console.ReadLine();
        }
示例#3
0
        public async Task <DocstoreListApiResponse> ListDocuments(string path)
        {
            DocstoreListApiResponse response = JsonConvert.DeserializeObject <DocstoreListApiResponse>("{\"Status\":0,\"Message\":null,\"Response\":{\"count\":10,\"next\":null,\"previous\":null,\"results\":[{\"create_version_action\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/96cf665d-be75-4445-a96e-cb506bbce793/create/\",\"id\":\"96cf665d-be75-4445-a96e-cb506bbce793\",\"name\":\"f455097a-3193-4726-a326-1ca9591adcdb.xlsx\",\"fully_qualified_name\":\"ExcelEngine/Services/FormsCentral/Mapping/CoreToAIA/AmendmentToApplication1/f455097a-3193-4726-a326-1ca9591adcdb.xlsx\",\"comment\":null,\"created\":\"2018-10-28T12:55:43.550769+08:00\",\"updated\":\"2018-10-28T12:55:43.550789+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/folder/28482b35-eae6-4101-9642-fcedc109300b\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"latest_version\":{\"create_version_action\":null,\"id\":\"d05b4a58-a9a8-40b5-8fe4-92e6ea876830\",\"name\":\"f455097a-3193-4726-a326-1ca9591adcdb.xlsx\",\"fully_qualified_name\":null,\"comment\":null,\"created\":\"2018-10-28T12:55:43.557199+08:00\",\"updated\":\"2018-10-28T12:55:43.557220+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/documents/96cf665d-be75-4445-a96e-cb506bbce793/\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":null,\"latest_version\":null,\"children\":null,\"url\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/d05b4a58-a9a8-40b5-8fe4-92e6ea876830/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"f455097a-3193-4726-a326-1ca9591adcdb\\\",\\\"ServiceGUID\\\":\\\"2ee68359-7c9f-4f9d-bbdb-78c74ee37131\\\",\\\"OriginalFileName\\\":\\\"CoreToAIA.AmendmentToApplication1.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.AmendmentToApplication1\\\",\\\"Revision\\\":\\\"0.1\\\",\\\"ReleaseDate\\\":\\\"43332\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA.AmendmentToApplication1 input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:25:40.632\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":17333,\\\"FileMD5Hash\\\":\\\"EC97B73987CC06AC395F321541D39EBD\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"2ee68359-7c9f-4f9d-bbdb-78c74ee37131\\\",\\\"ExcelSourceFileGUID\\\":\\\"f455097a-3193-4726-a326-1ca9591adcdb\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.AmendmentToApplication1\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA.AmendmentToApplication1 input JSON.\\\"}\"},\"sha512\":\"3467bbbb8600fd36b619e6a484277e4b37a20df4f93dff4dc630253f36cdef1b7cc4df1c293924fa698d0dbec968143b4573ce024d13715df4f4fc8ce6dbeb14\",\"file\":\"https://terra-dev-docstore.s3.amazonaws.com/media/ExcelEngine/Services/FormsCentral/Mapping/CoreToAIA/AmendmentToApplication1/f455097a-3193-4726-a326-1ca9591adcdb.xlsx/d05b4a58-a9a8-40b5-8fe4-92e6ea876830/f455097a-3193-4726-a326-1ca9591adcdb.xlsx?AWSAccessKeyId=AKIAJJNGHSP5QARXW6CQ&Signature=hURzw1w1iBFluldgVHk2uIyUTvg%3D&Expires=1540703304\"},\"children\":[\"https://docs.dev.darkdonny.pw/docstore/documentversions/d05b4a58-a9a8-40b5-8fe4-92e6ea876830/\"],\"url\":\"https://docs.dev.darkdonny.pw/docstore/documents/96cf665d-be75-4445-a96e-cb506bbce793/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"f455097a-3193-4726-a326-1ca9591adcdb\\\",\\\"ServiceGUID\\\":\\\"2ee68359-7c9f-4f9d-bbdb-78c74ee37131\\\",\\\"OriginalFileName\\\":\\\"CoreToAIA.AmendmentToApplication1.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.AmendmentToApplication1\\\",\\\"Revision\\\":\\\"0.1\\\",\\\"ReleaseDate\\\":\\\"43332\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA.AmendmentToApplication1 input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:25:40.632\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":17333,\\\"FileMD5Hash\\\":\\\"EC97B73987CC06AC395F321541D39EBD\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"2ee68359-7c9f-4f9d-bbdb-78c74ee37131\\\",\\\"ExcelSourceFileGUID\\\":\\\"f455097a-3193-4726-a326-1ca9591adcdb\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.AmendmentToApplication1\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA.AmendmentToApplication1 input JSON.\\\"}\"}},{\"create_version_action\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/79801689-3723-47ad-9adf-b2b99b5ee80f/create/\",\"id\":\"79801689-3723-47ad-9adf-b2b99b5ee80f\",\"name\":\"1a49b1c1-5180-4818-9dd7-21111bf8e50b.xlsx\",\"fully_qualified_name\":\"ExcelEngine/Services/FormsCentral/Mapping/CoreToAIA/AmendmentToApplication2/1a49b1c1-5180-4818-9dd7-21111bf8e50b.xlsx\",\"comment\":null,\"created\":\"2018-10-28T12:56:57.578922+08:00\",\"updated\":\"2018-10-28T12:56:57.578941+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/folder/92ccb1b3-a805-4e20-bf96-9a6e83ea848c\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"latest_version\":{\"create_version_action\":null,\"id\":\"16fc2101-68d8-415b-894d-c676711b70fd\",\"name\":\"1a49b1c1-5180-4818-9dd7-21111bf8e50b.xlsx\",\"fully_qualified_name\":null,\"comment\":null,\"created\":\"2018-10-28T12:56:57.584663+08:00\",\"updated\":\"2018-10-28T12:56:57.584680+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/documents/79801689-3723-47ad-9adf-b2b99b5ee80f/\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":null,\"latest_version\":null,\"children\":null,\"url\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/16fc2101-68d8-415b-894d-c676711b70fd/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"1a49b1c1-5180-4818-9dd7-21111bf8e50b\\\",\\\"ServiceGUID\\\":\\\"86dc06bb-ade2-4348-a62c-28ec9c7de3c1\\\",\\\"OriginalFileName\\\":\\\"CoreToAIA.AmendmentToApplication2.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.AmendmentToApplication2\\\",\\\"Revision\\\":\\\"0.1\\\",\\\"ReleaseDate\\\":\\\"43332\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA.AmendmentToApplication2 input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:26:55.046\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":17360,\\\"FileMD5Hash\\\":\\\"3EA1AC40A4A9DCD037F1C9E9BF8C3522\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"86dc06bb-ade2-4348-a62c-28ec9c7de3c1\\\",\\\"ExcelSourceFileGUID\\\":\\\"1a49b1c1-5180-4818-9dd7-21111bf8e50b\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.AmendmentToApplication2\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA.AmendmentToApplication2 input JSON.\\\"}\"},\"sha512\":\"b36c7a69ccc004feeaf2b07b09b63066dd40a8b54b516082bf4c248e46ab5d044e42c6fb7167027c4dd9907eed27a590e30f1485592f842e4d364725b5d2f327\",\"file\":\"https://terra-dev-docstore.s3.amazonaws.com/media/ExcelEngine/Services/FormsCentral/Mapping/CoreToAIA/AmendmentToApplication2/1a49b1c1-5180-4818-9dd7-21111bf8e50b.xlsx/16fc2101-68d8-415b-894d-c676711b70fd/1a49b1c1-5180-4818-9dd7-21111bf8e50b.xlsx?AWSAccessKeyId=AKIAJJNGHSP5QARXW6CQ&Signature=QDvcc9ecSuhjvoGsTosyTei5Pok%3D&Expires=1540703304\"},\"children\":[\"https://docs.dev.darkdonny.pw/docstore/documentversions/16fc2101-68d8-415b-894d-c676711b70fd/\"],\"url\":\"https://docs.dev.darkdonny.pw/docstore/documents/79801689-3723-47ad-9adf-b2b99b5ee80f/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"1a49b1c1-5180-4818-9dd7-21111bf8e50b\\\",\\\"ServiceGUID\\\":\\\"86dc06bb-ade2-4348-a62c-28ec9c7de3c1\\\",\\\"OriginalFileName\\\":\\\"CoreToAIA.AmendmentToApplication2.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.AmendmentToApplication2\\\",\\\"Revision\\\":\\\"0.1\\\",\\\"ReleaseDate\\\":\\\"43332\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA.AmendmentToApplication2 input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:26:55.046\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":17360,\\\"FileMD5Hash\\\":\\\"3EA1AC40A4A9DCD037F1C9E9BF8C3522\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"86dc06bb-ade2-4348-a62c-28ec9c7de3c1\\\",\\\"ExcelSourceFileGUID\\\":\\\"1a49b1c1-5180-4818-9dd7-21111bf8e50b\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.AmendmentToApplication2\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA.AmendmentToApplication2 input JSON.\\\"}\"}},{\"create_version_action\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/adee0bb8-8473-48bf-b560-5386b464f510/create/\",\"id\":\"adee0bb8-8473-48bf-b560-5386b464f510\",\"name\":\"1cd1248a-f944-49a0-b87d-1b458364d1a3.xlsx\",\"fully_qualified_name\":\"ExcelEngine/Services/FormsCentral/Mapping/CoreToAIA/Application/1cd1248a-f944-49a0-b87d-1b458364d1a3.xlsx\",\"comment\":null,\"created\":\"2018-10-28T12:57:32.263692+08:00\",\"updated\":\"2018-10-28T12:57:32.263712+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/folder/db1be220-78d3-4496-9331-2da37ac3cb80\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"latest_version\":{\"create_version_action\":null,\"id\":\"6e7ba66f-bbbc-49ff-a48f-d509dc5377a8\",\"name\":\"1cd1248a-f944-49a0-b87d-1b458364d1a3.xlsx\",\"fully_qualified_name\":null,\"comment\":null,\"created\":\"2018-10-28T12:57:32.269978+08:00\",\"updated\":\"2018-10-28T12:57:32.269997+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/documents/adee0bb8-8473-48bf-b560-5386b464f510/\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":null,\"latest_version\":null,\"children\":null,\"url\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/6e7ba66f-bbbc-49ff-a48f-d509dc5377a8/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"1cd1248a-f944-49a0-b87d-1b458364d1a3\\\",\\\"ServiceGUID\\\":\\\"24fddfd6-5e3e-485d-be50-29e35e6d879a\\\",\\\"OriginalFileName\\\":\\\"CoreToAIA.Application.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.Application\\\",\\\"Revision\\\":\\\"0.3\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA Par application PDF input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:27:25.054\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":27987,\\\"FileMD5Hash\\\":\\\"0D14FD4631616A8FADC0A4BD906B26D9\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"24fddfd6-5e3e-485d-be50-29e35e6d879a\\\",\\\"ExcelSourceFileGUID\\\":\\\"1cd1248a-f944-49a0-b87d-1b458364d1a3\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.Application\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA Par application PDF input JSON.\\\"}\"},\"sha512\":\"52704695d57d8c87aeec7855460011a541d883d3dcfff380631cc50aaf131616c8ece54e04dfeb2c0c1f9b37913806370483d00913de206af7db049bb65381a5\",\"file\":\"https://terra-dev-docstore.s3.amazonaws.com/media/ExcelEngine/Services/FormsCentral/Mapping/CoreToAIA/Application/1cd1248a-f944-49a0-b87d-1b458364d1a3.xlsx/6e7ba66f-bbbc-49ff-a48f-d509dc5377a8/1cd1248a-f944-49a0-b87d-1b458364d1a3.xlsx?AWSAccessKeyId=AKIAJJNGHSP5QARXW6CQ&Signature=pbmB26dLI0qBtFGmnbNa2iR5iv0%3D&Expires=1540703304\"},\"children\":[\"https://docs.dev.darkdonny.pw/docstore/documentversions/6e7ba66f-bbbc-49ff-a48f-d509dc5377a8/\"],\"url\":\"https://docs.dev.darkdonny.pw/docstore/documents/adee0bb8-8473-48bf-b560-5386b464f510/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"1cd1248a-f944-49a0-b87d-1b458364d1a3\\\",\\\"ServiceGUID\\\":\\\"24fddfd6-5e3e-485d-be50-29e35e6d879a\\\",\\\"OriginalFileName\\\":\\\"CoreToAIA.Application.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.Application\\\",\\\"Revision\\\":\\\"0.3\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA Par application PDF input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:27:25.054\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":27987,\\\"FileMD5Hash\\\":\\\"0D14FD4631616A8FADC0A4BD906B26D9\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"24fddfd6-5e3e-485d-be50-29e35e6d879a\\\",\\\"ExcelSourceFileGUID\\\":\\\"1cd1248a-f944-49a0-b87d-1b458364d1a3\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.Application\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA Par application PDF input JSON.\\\"}\"}},{\"create_version_action\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/4eabbf8e-7946-496f-97b6-f677e1a26585/create/\",\"id\":\"4eabbf8e-7946-496f-97b6-f677e1a26585\",\"name\":\"7f1580db-42ea-4e30-a532-609cd1ff6c3e.xlsx\",\"fully_qualified_name\":\"ExcelEngine/Services/FormsCentral/Mapping/CoreToAIA/IFSForMainlandPolicyHolder/7f1580db-42ea-4e30-a532-609cd1ff6c3e.xlsx\",\"comment\":null,\"created\":\"2018-10-28T12:57:59.134363+08:00\",\"updated\":\"2018-10-28T12:57:59.134386+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/folder/bd25075f-1ce2-4894-8ddb-99be40b421c6\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"latest_version\":{\"create_version_action\":null,\"id\":\"a4a35375-10e9-42af-9ee5-f511c0415b55\",\"name\":\"7f1580db-42ea-4e30-a532-609cd1ff6c3e.xlsx\",\"fully_qualified_name\":null,\"comment\":null,\"created\":\"2018-10-28T12:57:59.140365+08:00\",\"updated\":\"2018-10-28T12:57:59.140382+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/documents/4eabbf8e-7946-496f-97b6-f677e1a26585/\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":null,\"latest_version\":null,\"children\":null,\"url\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/a4a35375-10e9-42af-9ee5-f511c0415b55/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"7f1580db-42ea-4e30-a532-609cd1ff6c3e\\\",\\\"ServiceGUID\\\":\\\"24fddfd6-5e3e-485d-be50-29e35e6d879a\\\",\\\"OriginalFileName\\\":\\\"CoreToAIA.IFSForMainlandPolicyHolder.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.IFSForMainlandPolicyHolder\\\",\\\"Revision\\\":\\\"0.1\\\",\\\"ReleaseDate\\\":\\\"43332\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA IFS For Mainland Policy  input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:27:56.77\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":20687,\\\"FileMD5Hash\\\":\\\"CEE8BC2EC1DB413A462DEEB5557A8C19\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"24fddfd6-5e3e-485d-be50-29e35e6d879a\\\",\\\"ExcelSourceFileGUID\\\":\\\"7f1580db-42ea-4e30-a532-609cd1ff6c3e\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.IFSForMainlandPolicyHolder\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA IFS For Mainland Policy  input JSON.\\\"}\"},\"sha512\":\"e42ca0c0cfea913bfdee420efcb071a57947457deb68d0564f91afb576529fa194b6fb3858576f555c6136361f197e6456f6fd472d0fd1a9af58268676cb04e3\",\"file\":\"https://terra-dev-docstore.s3.amazonaws.com/media/ExcelEngine/Services/FormsCentral/Mapping/CoreToAIA/IFSForMainlandPolicyHolder/7f1580db-42ea-4e30-a532-609cd1ff6c3e.xlsx/a4a35375-10e9-42af-9ee5-f511c0415b55/7f1580db-42ea-4e30-a532-609cd1ff6c3e.xlsx?AWSAccessKeyId=AKIAJJNGHSP5QARXW6CQ&Signature=Wpitqxa2VVSMlH8LkHbzUQum1r4%3D&Expires=1540703304\"},\"children\":[\"https://docs.dev.darkdonny.pw/docstore/documentversions/a4a35375-10e9-42af-9ee5-f511c0415b55/\"],\"url\":\"https://docs.dev.darkdonny.pw/docstore/documents/4eabbf8e-7946-496f-97b6-f677e1a26585/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"7f1580db-42ea-4e30-a532-609cd1ff6c3e\\\",\\\"ServiceGUID\\\":\\\"24fddfd6-5e3e-485d-be50-29e35e6d879a\\\",\\\"OriginalFileName\\\":\\\"CoreToAIA.IFSForMainlandPolicyHolder.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.IFSForMainlandPolicyHolder\\\",\\\"Revision\\\":\\\"0.1\\\",\\\"ReleaseDate\\\":\\\"43332\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA IFS For Mainland Policy  input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:27:56.77\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":20687,\\\"FileMD5Hash\\\":\\\"CEE8BC2EC1DB413A462DEEB5557A8C19\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"24fddfd6-5e3e-485d-be50-29e35e6d879a\\\",\\\"ExcelSourceFileGUID\\\":\\\"7f1580db-42ea-4e30-a532-609cd1ff6c3e\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.IFSForMainlandPolicyHolder\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA IFS For Mainland Policy  input JSON.\\\"}\"}},{\"create_version_action\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/9a0f514b-afd6-4712-82ae-4025ab357c72/create/\",\"id\":\"9a0f514b-afd6-4712-82ae-4025ab357c72\",\"name\":\"cdc45be3-8f2c-4c88-af18-f6730d4e518e.xlsx\",\"fully_qualified_name\":\"ExcelEngine/Services/FormsCentral/Mapping/CoreToAIA/SourceOfWealth/cdc45be3-8f2c-4c88-af18-f6730d4e518e.xlsx\",\"comment\":null,\"created\":\"2018-10-28T12:58:24.951145+08:00\",\"updated\":\"2018-10-28T12:58:24.951163+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/folder/09a948a9-1e64-433c-a38a-0102125fb8ba\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"latest_version\":{\"create_version_action\":null,\"id\":\"f40f4054-b74b-438e-a09a-46ebb7ac3b2f\",\"name\":\"cdc45be3-8f2c-4c88-af18-f6730d4e518e.xlsx\",\"fully_qualified_name\":null,\"comment\":null,\"created\":\"2018-10-28T12:58:24.957514+08:00\",\"updated\":\"2018-10-28T12:58:24.957533+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/documents/9a0f514b-afd6-4712-82ae-4025ab357c72/\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":null,\"latest_version\":null,\"children\":null,\"url\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/f40f4054-b74b-438e-a09a-46ebb7ac3b2f/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"cdc45be3-8f2c-4c88-af18-f6730d4e518e\\\",\\\"ServiceGUID\\\":\\\"cc72c3a5-02ff-40b4-bbb7-6aaf6f14f6da\\\",\\\"OriginalFileName\\\":\\\"CoreToAIA.SourceOfWealth.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.SourceOfWealth\\\",\\\"Revision\\\":\\\"0.2\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA Source of Wealth input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:28:22.473\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":16274,\\\"FileMD5Hash\\\":\\\"E87DBE87BC709696C59D14537C5A3A5C\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"cc72c3a5-02ff-40b4-bbb7-6aaf6f14f6da\\\",\\\"ExcelSourceFileGUID\\\":\\\"cdc45be3-8f2c-4c88-af18-f6730d4e518e\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.SourceOfWealth\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA Source of Wealth input JSON.\\\"}\"},\"sha512\":\"b45729fe8d9f1f928eedde87217b8a0ec8fdd4c96de6270041c89d66fc78114edd43bb2b9734351314818d032d82757dcbaac24bd489c0152173fd0e704fad3c\",\"file\":\"https://terra-dev-docstore.s3.amazonaws.com/media/ExcelEngine/Services/FormsCentral/Mapping/CoreToAIA/SourceOfWealth/cdc45be3-8f2c-4c88-af18-f6730d4e518e.xlsx/f40f4054-b74b-438e-a09a-46ebb7ac3b2f/cdc45be3-8f2c-4c88-af18-f6730d4e518e.xlsx?AWSAccessKeyId=AKIAJJNGHSP5QARXW6CQ&Signature=FoqnRWODWDJ%2BXaJnLkKfuwk%2BeI0%3D&Expires=1540703304\"},\"children\":[\"https://docs.dev.darkdonny.pw/docstore/documentversions/f40f4054-b74b-438e-a09a-46ebb7ac3b2f/\"],\"url\":\"https://docs.dev.darkdonny.pw/docstore/documents/9a0f514b-afd6-4712-82ae-4025ab357c72/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"cdc45be3-8f2c-4c88-af18-f6730d4e518e\\\",\\\"ServiceGUID\\\":\\\"cc72c3a5-02ff-40b4-bbb7-6aaf6f14f6da\\\",\\\"OriginalFileName\\\":\\\"CoreToAIA.SourceOfWealth.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.SourceOfWealth\\\",\\\"Revision\\\":\\\"0.2\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA Source of Wealth input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:28:22.473\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":16274,\\\"FileMD5Hash\\\":\\\"E87DBE87BC709696C59D14537C5A3A5C\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"cc72c3a5-02ff-40b4-bbb7-6aaf6f14f6da\\\",\\\"ExcelSourceFileGUID\\\":\\\"cdc45be3-8f2c-4c88-af18-f6730d4e518e\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToAIA.SourceOfWealth\\\",\\\"Description\\\":\\\"Maps Core JSON to the AIA Source of Wealth input JSON.\\\"}\"}},{\"create_version_action\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/a95d6a68-812b-4700-a3e6-7adcf22c5924/create/\",\"id\":\"a95d6a68-812b-4700-a3e6-7adcf22c5924\",\"name\":\"6a882999-0294-44cc-92de-5237ad3520f3.xlsx\",\"fully_qualified_name\":\"ExcelEngine/Services/FormsCentral/Mapping/CoreToNOAH/FNA/6a882999-0294-44cc-92de-5237ad3520f3.xlsx\",\"comment\":null,\"created\":\"2018-10-28T12:58:52.460901+08:00\",\"updated\":\"2018-10-28T12:58:52.460918+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/folder/1ccad4f5-f7df-4265-82aa-83d1cba95713\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"latest_version\":{\"create_version_action\":null,\"id\":\"b5a2fb83-3338-4b0a-bb4c-531146d02d08\",\"name\":\"6a882999-0294-44cc-92de-5237ad3520f3.xlsx\",\"fully_qualified_name\":null,\"comment\":null,\"created\":\"2018-10-28T12:58:52.466167+08:00\",\"updated\":\"2018-10-28T12:58:52.466183+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/documents/a95d6a68-812b-4700-a3e6-7adcf22c5924/\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":null,\"latest_version\":null,\"children\":null,\"url\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/b5a2fb83-3338-4b0a-bb4c-531146d02d08/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"6a882999-0294-44cc-92de-5237ad3520f3\\\",\\\"ServiceGUID\\\":\\\"d44570a0-7de4-407d-92fa-1f4b4c4badcd\\\",\\\"OriginalFileName\\\":\\\"CoreToNOAH.FNA.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToNOAH.FNA\\\",\\\"Revision\\\":\\\"0.3\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"Maps Core JSON to the NOAH FNA PDF input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:28:49.753\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":15163,\\\"FileMD5Hash\\\":\\\"709404FCD27389B1D121EAC8D809542A\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"d44570a0-7de4-407d-92fa-1f4b4c4badcd\\\",\\\"ExcelSourceFileGUID\\\":\\\"6a882999-0294-44cc-92de-5237ad3520f3\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToNOAH.FNA\\\",\\\"Description\\\":\\\"Maps Core JSON to the NOAH FNA PDF input JSON.\\\"}\"},\"sha512\":\"d143935c478f893c8724671e897ea2585afe9edaa68e1d381761cb4455ff71e5c3709284071bf788ccc35fc7e8328981cac8d6ac50531645174a91b804587c72\",\"file\":\"https://terra-dev-docstore.s3.amazonaws.com/media/ExcelEngine/Services/FormsCentral/Mapping/CoreToNOAH/FNA/6a882999-0294-44cc-92de-5237ad3520f3.xlsx/b5a2fb83-3338-4b0a-bb4c-531146d02d08/6a882999-0294-44cc-92de-5237ad3520f3.xlsx?AWSAccessKeyId=AKIAJJNGHSP5QARXW6CQ&Signature=hY3uBCCL4c%2B3NbzLNdIEIIEF3Ws%3D&Expires=1540703305\"},\"children\":[\"https://docs.dev.darkdonny.pw/docstore/documentversions/b5a2fb83-3338-4b0a-bb4c-531146d02d08/\"],\"url\":\"https://docs.dev.darkdonny.pw/docstore/documents/a95d6a68-812b-4700-a3e6-7adcf22c5924/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"6a882999-0294-44cc-92de-5237ad3520f3\\\",\\\"ServiceGUID\\\":\\\"d44570a0-7de4-407d-92fa-1f4b4c4badcd\\\",\\\"OriginalFileName\\\":\\\"CoreToNOAH.FNA.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToNOAH.FNA\\\",\\\"Revision\\\":\\\"0.3\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"Maps Core JSON to the NOAH FNA PDF input JSON.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:28:49.753\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":15163,\\\"FileMD5Hash\\\":\\\"709404FCD27389B1D121EAC8D809542A\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"d44570a0-7de4-407d-92fa-1f4b4c4badcd\\\",\\\"ExcelSourceFileGUID\\\":\\\"6a882999-0294-44cc-92de-5237ad3520f3\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.CoreToNOAH.FNA\\\",\\\"Description\\\":\\\"Maps Core JSON to the NOAH FNA PDF input JSON.\\\"}\"}},{\"create_version_action\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/10f7881f-732b-4100-8e8e-492fbe533930/create/\",\"id\":\"10f7881f-732b-4100-8e8e-492fbe533930\",\"name\":\"3b791e05-6b19-4d48-8be0-7666e4f6e355.xlsx\",\"fully_qualified_name\":\"ExcelEngine/Services/FormsCentral/Mapping/NOAHExcelCIToCore/3b791e05-6b19-4d48-8be0-7666e4f6e355.xlsx\",\"comment\":null,\"created\":\"2018-10-28T13:00:15.143908+08:00\",\"updated\":\"2018-10-28T13:00:15.143927+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/folder/fc05a56a-87c3-46d4-9d98-2d95138b4b6a\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"latest_version\":{\"create_version_action\":null,\"id\":\"d01d92af-5f4b-46c3-bd49-b30e73f74441\",\"name\":\"3b791e05-6b19-4d48-8be0-7666e4f6e355.xlsx\",\"fully_qualified_name\":null,\"comment\":null,\"created\":\"2018-10-28T13:00:15.149885+08:00\",\"updated\":\"2018-10-28T13:00:15.149901+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/documents/10f7881f-732b-4100-8e8e-492fbe533930/\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":null,\"latest_version\":null,\"children\":null,\"url\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/d01d92af-5f4b-46c3-bd49-b30e73f74441/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"3b791e05-6b19-4d48-8be0-7666e4f6e355\\\",\\\"ServiceGUID\\\":\\\"c56eedbd-859c-4a0e-b44b-7021d252646f\\\",\\\"OriginalFileName\\\":\\\"NOAHCIToCore v2.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.NOAHExcelCIToCore\\\",\\\"Revision\\\":\\\"0.2\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"File to map from NOAH's CI Excel file to the core object model\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:30:12.622\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":16166,\\\"FileMD5Hash\\\":\\\"15A995DAA7E9D3525F84B56BC77256FA\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"c56eedbd-859c-4a0e-b44b-7021d252646f\\\",\\\"ExcelSourceFileGUID\\\":\\\"3b791e05-6b19-4d48-8be0-7666e4f6e355\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.NOAHExcelCIToCore\\\",\\\"Description\\\":\\\"File to map from NOAH's CI Excel file to the core object model\\\"}\"},\"sha512\":\"82030d3dfea34949502b9e2d7a125e76fdb8ab06e3249ba9e162d17083711ba1817749a4511de9fc940df5274478837bb22c287547c3bfd3c5311bde80ab6330\",\"file\":\"https://terra-dev-docstore.s3.amazonaws.com/media/ExcelEngine/Services/FormsCentral/Mapping/NOAHExcelCIToCore/3b791e05-6b19-4d48-8be0-7666e4f6e355.xlsx/d01d92af-5f4b-46c3-bd49-b30e73f74441/3b791e05-6b19-4d48-8be0-7666e4f6e355.xlsx?AWSAccessKeyId=AKIAJJNGHSP5QARXW6CQ&Signature=LaGDIJzjWDCoT7oHKqgkCQZabb8%3D&Expires=1540703305\"},\"children\":[\"https://docs.dev.darkdonny.pw/docstore/documentversions/d01d92af-5f4b-46c3-bd49-b30e73f74441/\"],\"url\":\"https://docs.dev.darkdonny.pw/docstore/documents/10f7881f-732b-4100-8e8e-492fbe533930/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"3b791e05-6b19-4d48-8be0-7666e4f6e355\\\",\\\"ServiceGUID\\\":\\\"c56eedbd-859c-4a0e-b44b-7021d252646f\\\",\\\"OriginalFileName\\\":\\\"NOAHCIToCore v2.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.NOAHExcelCIToCore\\\",\\\"Revision\\\":\\\"0.2\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"File to map from NOAH's CI Excel file to the core object model\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:30:12.622\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":16166,\\\"FileMD5Hash\\\":\\\"15A995DAA7E9D3525F84B56BC77256FA\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"c56eedbd-859c-4a0e-b44b-7021d252646f\\\",\\\"ExcelSourceFileGUID\\\":\\\"3b791e05-6b19-4d48-8be0-7666e4f6e355\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.NOAHExcelCIToCore\\\",\\\"Description\\\":\\\"File to map from NOAH's CI Excel file to the core object model\\\"}\"}},{\"create_version_action\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/407ed4c8-7e26-4472-b606-d7b7f0fb9bf8/create/\",\"id\":\"407ed4c8-7e26-4472-b606-d7b7f0fb9bf8\",\"name\":\"d59ab450-5db3-4cd0-bed9-6a1c4edbb644.xlsx\",\"fully_qualified_name\":\"ExcelEngine/Services/FormsCentral/Mapping/NOAHExcelParToCore/d59ab450-5db3-4cd0-bed9-6a1c4edbb644.xlsx\",\"comment\":null,\"created\":\"2018-10-28T13:00:47.994145+08:00\",\"updated\":\"2018-10-28T13:00:47.994164+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/folder/ed6eb54c-72a8-4675-872c-a3f5869ccf66\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"latest_version\":{\"create_version_action\":null,\"id\":\"4d2f43e1-f915-400a-b451-bfa8d0bba6e1\",\"name\":\"d59ab450-5db3-4cd0-bed9-6a1c4edbb644.xlsx\",\"fully_qualified_name\":null,\"comment\":null,\"created\":\"2018-10-28T13:00:48.000273+08:00\",\"updated\":\"2018-10-28T13:00:48.000289+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/documents/407ed4c8-7e26-4472-b606-d7b7f0fb9bf8/\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":null,\"latest_version\":null,\"children\":null,\"url\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/4d2f43e1-f915-400a-b451-bfa8d0bba6e1/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"d59ab450-5db3-4cd0-bed9-6a1c4edbb644\\\",\\\"ServiceGUID\\\":\\\"2fccc517-f6e1-4f2e-a857-a83164e754bf\\\",\\\"OriginalFileName\\\":\\\"NOAHParToCore v3.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.NOAHExcelParToCore\\\",\\\"Revision\\\":\\\"0.3\\\",\\\"ReleaseDate\\\":\\\"43328\\\",\\\"Description\\\":\\\"File to map from NOAH's Par Excel file to the core object model\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:30:44.88\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":17045,\\\"FileMD5Hash\\\":\\\"C4386B0A06FCB18C938ABB87C82B5023\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"2fccc517-f6e1-4f2e-a857-a83164e754bf\\\",\\\"ExcelSourceFileGUID\\\":\\\"d59ab450-5db3-4cd0-bed9-6a1c4edbb644\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.NOAHExcelParToCore\\\",\\\"Description\\\":\\\"File to map from NOAH's Par Excel file to the core object model\\\"}\"},\"sha512\":\"3ba3c3bef9c01682ee118b8bcd6fe496fc39f292969a494bd8c0772b6b29fd8925f8221ef4ab85420c382f21dfa3aea2135abf9995acaa636cdf28bfdd9acc47\",\"file\":\"https://terra-dev-docstore.s3.amazonaws.com/media/ExcelEngine/Services/FormsCentral/Mapping/NOAHExcelParToCore/d59ab450-5db3-4cd0-bed9-6a1c4edbb644.xlsx/4d2f43e1-f915-400a-b451-bfa8d0bba6e1/d59ab450-5db3-4cd0-bed9-6a1c4edbb644.xlsx?AWSAccessKeyId=AKIAJJNGHSP5QARXW6CQ&Signature=YbqUxlWQHRZhX7jp0zz1jcJ3DuA%3D&Expires=1540703305\"},\"children\":[\"https://docs.dev.darkdonny.pw/docstore/documentversions/4d2f43e1-f915-400a-b451-bfa8d0bba6e1/\"],\"url\":\"https://docs.dev.darkdonny.pw/docstore/documents/407ed4c8-7e26-4472-b606-d7b7f0fb9bf8/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"d59ab450-5db3-4cd0-bed9-6a1c4edbb644\\\",\\\"ServiceGUID\\\":\\\"2fccc517-f6e1-4f2e-a857-a83164e754bf\\\",\\\"OriginalFileName\\\":\\\"NOAHParToCore v3.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.NOAHExcelParToCore\\\",\\\"Revision\\\":\\\"0.3\\\",\\\"ReleaseDate\\\":\\\"43328\\\",\\\"Description\\\":\\\"File to map from NOAH's Par Excel file to the core object model\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:30:44.88\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":17045,\\\"FileMD5Hash\\\":\\\"C4386B0A06FCB18C938ABB87C82B5023\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"2fccc517-f6e1-4f2e-a857-a83164e754bf\\\",\\\"ExcelSourceFileGUID\\\":\\\"d59ab450-5db3-4cd0-bed9-6a1c4edbb644\\\",\\\"ServiceName\\\":\\\"FormsCentral.Mapping.NOAHExcelParToCore\\\",\\\"Description\\\":\\\"File to map from NOAH's Par Excel file to the core object model\\\"}\"}},{\"create_version_action\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/2ba372d0-444d-4e36-a953-f82d638a5865/create/\",\"id\":\"2ba372d0-444d-4e36-a953-f82d638a5865\",\"name\":\"af8f6206-098f-4805-a7e8-c0e02e355cdd.xlsx\",\"fully_qualified_name\":\"ExcelEngine/Services/FormsCentral/GetMappingService/af8f6206-098f-4805-a7e8-c0e02e355cdd.xlsx\",\"comment\":null,\"created\":\"2018-10-28T12:59:19.055299+08:00\",\"updated\":\"2018-10-28T12:59:19.055317+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/folder/92d11b64-9af4-4bd5-92c4-317212d93bac\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"latest_version\":{\"create_version_action\":null,\"id\":\"b33df1df-1b2d-4886-98df-8bdbde39dc28\",\"name\":\"af8f6206-098f-4805-a7e8-c0e02e355cdd.xlsx\",\"fully_qualified_name\":null,\"comment\":null,\"created\":\"2018-10-28T12:59:19.062575+08:00\",\"updated\":\"2018-10-28T12:59:19.062591+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/documents/2ba372d0-444d-4e36-a953-f82d638a5865/\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":null,\"latest_version\":null,\"children\":null,\"url\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/b33df1df-1b2d-4886-98df-8bdbde39dc28/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"af8f6206-098f-4805-a7e8-c0e02e355cdd\\\",\\\"ServiceGUID\\\":\\\"d7bcfc71-62cd-4730-951d-bdc47811558f\\\",\\\"OriginalFileName\\\":\\\"FormsCentral.GetMappingService.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.GetMappingService\\\",\\\"Revision\\\":\\\"0.2\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"Returns the name of the mapping service to use to go from one FormsCentral format to another.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:29:16.633\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":8649,\\\"FileMD5Hash\\\":\\\"77500A5D0D6515FCB48C4BF64929F98E\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"d7bcfc71-62cd-4730-951d-bdc47811558f\\\",\\\"ExcelSourceFileGUID\\\":\\\"af8f6206-098f-4805-a7e8-c0e02e355cdd\\\",\\\"ServiceName\\\":\\\"FormsCentral.GetMappingService\\\",\\\"Description\\\":\\\"Returns the name of the mapping service to use to go from one FormsCentral format to another.\\\"}\"},\"sha512\":\"899d0e4964249911065edafd3446caadcaed673ccbbac98037b32e541073ee5ae3b23d25556bd353e7b52af3d4fd4f6b19ea37a09e3ce20f7386332425305f16\",\"file\":\"https://terra-dev-docstore.s3.amazonaws.com/media/ExcelEngine/Services/FormsCentral/GetMappingService/af8f6206-098f-4805-a7e8-c0e02e355cdd.xlsx/b33df1df-1b2d-4886-98df-8bdbde39dc28/af8f6206-098f-4805-a7e8-c0e02e355cdd.xlsx?AWSAccessKeyId=AKIAJJNGHSP5QARXW6CQ&Signature=RG18oe27ur2udURp4KiTKHYg0IM%3D&Expires=1540703305\"},\"children\":[\"https://docs.dev.darkdonny.pw/docstore/documentversions/b33df1df-1b2d-4886-98df-8bdbde39dc28/\"],\"url\":\"https://docs.dev.darkdonny.pw/docstore/documents/2ba372d0-444d-4e36-a953-f82d638a5865/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"af8f6206-098f-4805-a7e8-c0e02e355cdd\\\",\\\"ServiceGUID\\\":\\\"d7bcfc71-62cd-4730-951d-bdc47811558f\\\",\\\"OriginalFileName\\\":\\\"FormsCentral.GetMappingService.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.GetMappingService\\\",\\\"Revision\\\":\\\"0.2\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"Returns the name of the mapping service to use to go from one FormsCentral format to another.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:29:16.633\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":8649,\\\"FileMD5Hash\\\":\\\"77500A5D0D6515FCB48C4BF64929F98E\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"d7bcfc71-62cd-4730-951d-bdc47811558f\\\",\\\"ExcelSourceFileGUID\\\":\\\"af8f6206-098f-4805-a7e8-c0e02e355cdd\\\",\\\"ServiceName\\\":\\\"FormsCentral.GetMappingService\\\",\\\"Description\\\":\\\"Returns the name of the mapping service to use to go from one FormsCentral format to another.\\\"}\"}},{\"create_version_action\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/c84beb55-82c3-488f-9e7f-8e5fdd8ae405/create/\",\"id\":\"c84beb55-82c3-488f-9e7f-8e5fdd8ae405\",\"name\":\"b8bf61d6-06e5-4651-8cae-5d4e5c1c7edd.xlsx\",\"fully_qualified_name\":\"ExcelEngine/Services/FormsCentral/GetRecommendedOutputDocs/b8bf61d6-06e5-4651-8cae-5d4e5c1c7edd.xlsx\",\"comment\":null,\"created\":\"2018-10-28T12:59:44.356688+08:00\",\"updated\":\"2018-10-28T12:59:44.356706+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/folder/ecbc54d0-8865-4a67-ba12-fc9ecd936223\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"latest_version\":{\"create_version_action\":null,\"id\":\"6b15154a-4f7c-41b6-875e-5097c2ce4020\",\"name\":\"b8bf61d6-06e5-4651-8cae-5d4e5c1c7edd.xlsx\",\"fully_qualified_name\":null,\"comment\":null,\"created\":\"2018-10-28T12:59:44.362452+08:00\",\"updated\":\"2018-10-28T12:59:44.362468+08:00\",\"parent\":\"https://docs.dev.darkdonny.pw/docstore/documents/c84beb55-82c3-488f-9e7f-8e5fdd8ae405/\",\"created_by\":\"40ebceda-d7d0-4d68-9a51-f9c37a8ff274\",\"last_modified_by\":null,\"latest_version\":null,\"children\":null,\"url\":\"https://docs.dev.darkdonny.pw/docstore/documentversions/6b15154a-4f7c-41b6-875e-5097c2ce4020/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"b8bf61d6-06e5-4651-8cae-5d4e5c1c7edd\\\",\\\"ServiceGUID\\\":\\\"5c6ecc19-b352-4b68-9c26-81d4e18f1e62\\\",\\\"OriginalFileName\\\":\\\"FormsCentral.GetRecommendedOutputDocs.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.GetRecommendedOutputDocs\\\",\\\"Revision\\\":\\\"0.3\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"Service to identify what output documents to suggest and where to find them.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:29:41.543\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":11460,\\\"FileMD5Hash\\\":\\\"ADDACFFCCC807981E3F98535EA6A5A1B\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"5c6ecc19-b352-4b68-9c26-81d4e18f1e62\\\",\\\"ExcelSourceFileGUID\\\":\\\"b8bf61d6-06e5-4651-8cae-5d4e5c1c7edd\\\",\\\"ServiceName\\\":\\\"FormsCentral.GetRecommendedOutputDocs\\\",\\\"Description\\\":\\\"Service to identify what output documents to suggest and where to find them.\\\"}\"},\"sha512\":\"4d5cc9aaf0d5a4f05ad2e51c99bb3ae52d633e1808fb9ad8961d82f5676ca4710375a279238c4cae9b404e4d7e893876cfe51554ba3ade4698db2121beb06cc9\",\"file\":\"https://terra-dev-docstore.s3.amazonaws.com/media/ExcelEngine/Services/FormsCentral/GetRecommendedOutputDocs/b8bf61d6-06e5-4651-8cae-5d4e5c1c7edd.xlsx/6b15154a-4f7c-41b6-875e-5097c2ce4020/b8bf61d6-06e5-4651-8cae-5d4e5c1c7edd.xlsx?AWSAccessKeyId=AKIAJJNGHSP5QARXW6CQ&Signature=UThUz4GQff%2ByArgxfmVC2Vk5tnI%3D&Expires=1540703305\"},\"children\":[\"https://docs.dev.darkdonny.pw/docstore/documentversions/6b15154a-4f7c-41b6-875e-5097c2ce4020/\"],\"url\":\"https://docs.dev.darkdonny.pw/docstore/documents/c84beb55-82c3-488f-9e7f-8e5fdd8ae405/\",\"metadata\":{\"EXCELSOURCE\":\"{\\\"Id\\\":\\\"b8bf61d6-06e5-4651-8cae-5d4e5c1c7edd\\\",\\\"ServiceGUID\\\":\\\"5c6ecc19-b352-4b68-9c26-81d4e18f1e62\\\",\\\"OriginalFileName\\\":\\\"FormsCentral.GetRecommendedOutputDocs.xlsx\\\",\\\"ServiceName\\\":\\\"FormsCentral.GetRecommendedOutputDocs\\\",\\\"Revision\\\":\\\"0.3\\\",\\\"ReleaseDate\\\":\\\"43327\\\",\\\"Description\\\":\\\"Service to identify what output documents to suggest and where to find them.\\\",\\\"Author\\\":\\\"Coherent\\\",\\\"UploadDateTime\\\":\\\"2018-10-28T10:29:41.543\\\",\\\"UploaderEmail\\\":\\\"\\\",\\\"FileSize\\\":11460,\\\"FileMD5Hash\\\":\\\"ADDACFFCCC807981E3F98535EA6A5A1B\\\"}\",\"EXCELSERVICE\":\"{\\\"Id\\\":\\\"5c6ecc19-b352-4b68-9c26-81d4e18f1e62\\\",\\\"ExcelSourceFileGUID\\\":\\\"b8bf61d6-06e5-4651-8cae-5d4e5c1c7edd\\\",\\\"ServiceName\\\":\\\"FormsCentral.GetRecommendedOutputDocs\\\",\\\"Description\\\":\\\"Service to identify what output documents to suggest and where to find them.\\\"}\"}}]}}");

            return(response);
        }