audit-log-object.json 683 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "type": "object",
  3. "description": "Audit Log object",
  4. "required": ["id", "created_on", "modified_on", "user_id", "object_type", "object_id", "action", "meta"],
  5. "additionalProperties": false,
  6. "properties": {
  7. "id": {
  8. "$ref": "../common.json#/definitions/id"
  9. },
  10. "created_on": {
  11. "$ref": "../common.json#/definitions/created_on"
  12. },
  13. "modified_on": {
  14. "$ref": "../common.json#/definitions/modified_on"
  15. },
  16. "user_id": {
  17. "$ref": "../common.json#/definitions/user_id"
  18. },
  19. "object_type": {
  20. "type": "string"
  21. },
  22. "object_id": {
  23. "$ref": "../common.json#/definitions/id"
  24. },
  25. "action": {
  26. "type": "string"
  27. },
  28. "meta": {
  29. "type": "object"
  30. }
  31. }
  32. }