All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.xdev.mockserver.schema.httpRequest.json Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
{
  "title": "request properties matcher",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "secure": {
      "type": "boolean"
    },
    "keepAlive": {
      "type": "boolean"
    },
    "method": {
      "$ref": "#/definitions/stringOrJsonSchema"
    },
    "path": {
      "$ref": "#/definitions/stringOrJsonSchema"
    },
    "pathParameters": {
      "$ref": "#/definitions/keyToMultiValue"
    },
    "queryStringParameters": {
      "$ref": "#/definitions/keyToMultiValue"
    },
    "body": {
      "$ref": "#/definitions/body"
    },
    "headers": {
      "$ref": "#/definitions/keyToMultiValue"
    },
    "cookies": {
      "$ref": "#/definitions/keyToValue"
    },
    "socketAddress": {
      "$ref": "#/definitions/socketAddress"
    },
    "protocol": {
      "$ref": "#/definitions/protocol"
    },
    "localAddress": {
      "type": "string"
    },
    "remoteAddress": {
      "type": "string"
    },
    "clientCertificateChain": {
      "additionalProperties": false,
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "issuerDistinguishedName": {
            "type": "string"
          },
          "subjectDistinguishedName": {
            "type": "string"
          },
          "serialNumber": {
            "type": "string"
          },
          "signatureAlgorithmName": {
            "type": "string"
          }
        }
      }
    }
  },
  "definitions": {
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy