JSON APIs
Summarize
Summary of Configuring Edge Encryption: Define a custom encryption rule
This guide covers how to configure custom encryption rules using JSON APIs in ServiceNow. By leveraging thegetAsJsonContent()method, customers can write rules to encrypt specific JSON elements based on defined criteria, ensuring sensitive data is adequately protected.
Show less
Key Features
- JsonNode and JsonNodeIterator: These classes allow for the traversal of JSON content, enabling customers to access and manipulate nodes easily.
- Dynamic Field Mapping: The
valueFor(String tableName, String fieldName)method allows for dynamic mapping of JSON values to specific fields in a designated table, facilitating encryption based on configuration. - Iterative Processing: The examples illustrate how to iterate through JSON arrays and objects to selectively encrypt fields like
shortdescriptionbased on their names.
Key Outcomes
By implementing custom encryption rules, customers can:
- Secure sensitive data in JSON payloads before storage or transmission.
- Ensure compliance with data protection standards by encrypting specific fields dynamically.
- Optimize data handling processes by automating the encryption of fields based on the JSON structure.
Following these guidelines will enhance your data security strategy within ServiceNow's JSON API framework.
JSON APIs can be used after calling getAsJsonContent() on either the request object or a ParameterValue property.
- Call getAsJsonContent() on the request object. This returns an iterable object of the JsonNode underlying class.
- Call iterator() or getIterator(String xPath) on the JsonNode object. This returns a JsonNodeIterator object that can be used to iterate over nodes in the JSON object.
- Call the hasNext() method on the JsonNodeIterator object to determine whether another element is available.
- Call next() on the JsonNodeIterator object to return the next JSON element. You cannot call next() without first calling hasNext().
- Call valueFor(String tableName, String fieldName) on the
JSON element. This method tells the proxy that the value for this element
maps to the specified field in the specified table. The proxy then checks
whether the field must be encrypted.Note:To determine if you want to call valueFor(String tableName, String fieldName) on a JSON element, you can use the getName() method to return the name of the element.
Mapping to a known table-field on the instance
In this example, the JSON payload is processed on the instance to insert records in the incident table. The description field populates short_description on the incident.
{
data: {
records: [
{
"name": "Test Record 1",
"description": "Test Record 1 Description",
"tag": "security"
},
{
"name": "Test Record 1",
"description": "Test Record 1 Description",
"tag": "security"
}],
"query": "assigned_to=3D4860165813e63a00d00abd322244b092^category=vulnerability"
},
"source": "10.11.13.14"
}The following rule can apply:
function sampleJsonAction1() {
var jsonContent = request.getAsJsonContent();
// This loop iterates over all description elements in the records array
var jsonNodeIterator = jsonContent.getIterator(’/data/records/description’);
while (jsonNodeIterator.hasNext()) {
var jsonNode = jsonNodeIterator.next();
jsonNode.valueFor('incident', 'short_decription');
}
}
This action iterates through the description nodes and asks the proxy server to encrypt the values and insert them into incident.short_description on the instance.
Mapping to an unknown table-field on the instance
In this example, the rule iterates over records, but is not sure what nodes to expect. The only known is that for each object within records, the nodes match the names of the columns specified in the table URL parameter.
The rule also specifies that, if the table is incident, then the data in the description node should be encrypted and stored in the short_description field on the instance.
function sampleJsonAction2() {
var jsonContent = request.getAsJsonContent();
var tableName = request.urlParam.table;
// This first iterator will iterate over all record elements
var jsonNodeIterator = jsonContent.getIterator('data/records');
while (jsonNodeIterator.hasNext()) {
encryptFieldsInRecord(jsonNodeIterator.next());
}
}
function encryptFieldsInRecord(jsonNode) {
//this time we want to iterate over all nodes
var fieldIterator = jsonNode.iterator();
while (fieldIterator.hasNext()) {
var field = fieldIterator.next();
var fieldname = childElement.getName();
if (fieldName == 'description') {
field.valueFor(tableName, 'short_description');
} else {
field.valueFor(tableName, fieldName);
}
}
}In the encryptFieldsInRecord() function, the valueFor() method is called on a table and a field that are dynamically assigned based on the request. Even though the table and field names can change, the rule asks the proxy to check whether the field in the table must be encrypted based on the encryption configurations defined.
If the field is not configured for encryption, or if the node name does not match a field in the table, the proxy skips that node. If the node name matches a field marked for encryption, then the proxy encrypts the value.
Using an encoded query
function sampleJsonAction3() {
var jsonContent = request.getAsJsonContent();
var tableName = request.urlParam.table;
// This first iterator will iterate over all record elements
var jsonNodeIterator = jsonContent.getIterator('data');
while (jsonNodeIterator.hasNext()) {
var jsonNode = jsonNodeIterator.next();
if (jsonNode.getName() == 'records')
encryptRecors(jsonNodeIterator.next());
else if (jsonNode.getName() == 'query')
jsonNode.encodedQueryFor(tableName);
}
}
function encryptRecords(jsonNode) {
//we iterate over all fields in the node
var recordIterator = jsonNode.iterator();
while (recordIterator.hasNext()) {
encryptFieldsInRecord(recordIterator.next());
}
}
function encryptFieldsInRecord(jsonNode) {
//this time we want to iterate over all nodes
var fieldIterator = jsonNode.iterator();
while (fieldIterator.hasNext()) {
var field = fieldIterator.next();
var fieldname = childElement.getName();
field.valueFor(tableName, fieldName);
}
}In this example, the rule iterates over data. As it finds records, it performs the same logic as in the second example, iterating over fields in each node. When it finds the query node, it calls encodedQueryFor() to encrypt values that should be encrypted in the query.