lib/har/schemas/postDataType.json

Summary

Maintainability
Test Coverage
{
  "id": "postDataType",
  "description": "Posted data info.",
  "properties": {
    "mimeType": {
      "type": "string",
      "required": true
    },
    "text": {
      "type": "string"
    },
    "params": {
      "type": "array",
      "properties": {
        "name": {
          "type": "string",
          "required": true
        },
        "value": {
          "type": "string"
        },
        "fileName": {
          "type": "string"
        },
        "contentType": {
          "type": "string"
        },
        "comment": {
          "type": "string"
        }
      }
    },
    "comment": {
      "type": "string"
    }
  }
}