Showing posts with label REST API. Show all posts
Showing posts with label REST API. Show all posts

Thursday, June 1, 2017

SOAP UI vs POSTMAN

Sometimes SOAP UI displays objects also as arrays for JSON message, better to use Postman tool from google apps which is the best app for JSON or REST API testing.

Tuesday, May 23, 2017

Swagger doesn't support decimal

As of version 7.10.0 using node.js the swagger doesn't support the decimal however it supports the number of type float of 32 bit, double of 64 bit but not decimal of 128 bit.

So you can declare as a field of type decimal as below..

  "amount" : {
          "type" : "number"


Then cast it to decimal like CAST(amount AS DECIMAL);

Distributed Computing: A Guide to Comparing Data Between Hive Tables Using Spark

In big data, efficient data comparison is essential for ensuring data integrity and validating data migrations. Apache Spark, with its in-me...