{
  "$id": "schema.json",
  "type": "object",
  "schema": "http://json-schema.org/draft-07/schema#",
  "translate": true,
  "dynamicfields": true,
  "properties": {
    "ph_request_type": {
      "type": "string",
      "description": "type of request (internal to adapter)",
      "default": "listLogs",
      "enum": [
        "listLogs",
        "createLog",
        "showLog",
        "updateLog",
        "deleteLog"
      ],
      "external_name": "ph_request_type"
    },
    "tenantId": {
      "type": "string",
      "description": "Filter the list result by the ID of the project that owns the resource.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "tenant_id"
    },
    "projectId": {
      "type": "string",
      "description": "Filter the list result by the ID of the project that owns the resource.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "project_id"
    },
    "revisionNumber": {
      "type": "number",
      "description": "Filter the list result by the revision number of the resource.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "revision_number"
    },
    "resourceType": {
      "type": "string",
      "description": "Filter the log list result by the resource type such as security_group.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "resource_type"
    },
    "resourceId": {
      "type": "string",
      "description": "Filter the log list result by the ID of resource (e.g security group ID).",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "resource_id"
    },
    "targetId": {
      "type": "string",
      "description": "Filter the log list result by the ID of resource that is the\nlogging target.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "target_id"
    },
    "sortDir": {
      "type": "string",
      "description": "Sort direction. A valid value is asc (ascending) or desc\n(descending). You can specify multiple pairs of sort key and\nsort direction query parameters.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "sort_dir"
    },
    "sortKey": {
      "type": "string",
      "description": "Sorts by a log attribute. You can specify multiple pairs of sort key\nand sort direction query parameters. The sort keys are limited to:",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "sort_key"
    },
    "logId": {
      "type": "string",
      "description": "The ID of the log resource.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "log_id"
    }
  },
  "definitions": {}
}