{
  "$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": "listLocalIPs",
      "enum": [
        "listLocalIPs",
        "createLocalIP",
        "showLocalIPDetails",
        "updateLocalIP",
        "deleteLocalIP"
      ],
      "external_name": "ph_request_type"
    },
    "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"
    },
    "localPortId": {
      "type": "string",
      "description": "Filter the Local IP list result by ID of underlying Neutron port",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "local_port_id"
    },
    "networkId": {
      "type": "string",
      "description": "Filter the list result by the ID of the attached network.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "network_id"
    },
    "localIpAddress": {
      "type": "string",
      "description": "Filter the Local IP list result by IP address",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "local_ip_address"
    },
    "ipMode": {
      "type": "string",
      "description": "Filter the Local IP list result by IP mode.\nPossible values are translate (DNAT) and passthrough (no DNAT)",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "ip_mode"
    },
    "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"
    },
    "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 Local IP attribute. You can specify multiple pairs of sort\nkey and sort direction query parameters. The sort keys are limited to:",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "sort_key"
    },
    "localIpId": {
      "type": "string",
      "description": "The ID of the Local IP",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "local_ip_id"
    }
  },
  "definitions": {}
}