setValues Schema
{
"$id": "http://www.3ds.com/schemas/Data/setValues.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Set Values",
"type": "object",
"info": {
"description": "JSON schema for DataAPI.setValues.",
"version": "1.0",
"title": "Set values JSON"
},
"additionalProperties": false,
"patternProperties": {
"[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}": {
"$ref": "#/definitions/rowValue"
}
},
"definitions":{
"rowValue":{
"type":"object",
"additionalProperties":false,
"patternProperties":{
"[0-9]+":{}
}
}
}
}