REST API can use a JIL file and verify the JIL as part of the JIL POST operations
One way to check the entire JIL file using the following method:
curl -k -X POST "https://WebServer.example.com:9443/AEWS/jil?timeout=300" -H "accept: application/json" -H "Authorization: Basic <encrypted password>" -H "Content-Type: text/plain" --upload-file "yourfileName.jil" -i
If there are any timeout errors (example: CAUAJM_E_71261 Importing jil definitions encountered an exception; exceeded the specified timeout value of 300s), a custom timeout (example: 1200 instead of 300) can be used in the POST call
https://WebServer.example.com:9443/AEWS/jil?timeout=1200