1
0
mirror of synced 2025-12-29 09:03:46 -05:00
Files
airbyte/airbyte-integrations/connectors/source-confluence/source_confluence/schemas/audit.json
2023-08-18 15:06:13 -04:00

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"] }
}
}