19 lines
693 B
JSON
19 lines
693 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": true,
|
|
"properties": {
|
|
"author": { "type": ["null", "object"] },
|
|
"remoteAddress": { "type": ["null", "string"] },
|
|
"creationDate": { "type": ["null", "integer"] },
|
|
"summary": { "type": ["null", "string"] },
|
|
"description": { "type": ["null", "string"] },
|
|
"category": { "type": ["null", "string"] },
|
|
"sysAdmin": { "type": ["null", "boolean"] },
|
|
"superAdmin": { "type": ["null", "boolean"] },
|
|
"affectedObject": { "type": ["null", "object"] },
|
|
"changedValues": { "type": ["null", "array"] },
|
|
"associatedObjects": { "type": ["null", "array"] }
|
|
}
|
|
}
|