aboutsummaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/har-schema/lib/postData.json
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/node_modules/har-schema/lib/postData.json')
-rw-r--r--deps/node/deps/npm/node_modules/har-schema/lib/postData.json43
1 files changed, 43 insertions, 0 deletions
diff --git a/deps/node/deps/npm/node_modules/har-schema/lib/postData.json b/deps/node/deps/npm/node_modules/har-schema/lib/postData.json
new file mode 100644
index 00000000..3aa6294a
--- /dev/null
+++ b/deps/node/deps/npm/node_modules/har-schema/lib/postData.json
@@ -0,0 +1,43 @@
+{
+ "$id": "postData.json#",
+ "$schema": "http://json-schema.org/draft-06/schema#",
+ "type": "object",
+ "optional": true,
+ "required": [
+ "mimeType"
+ ],
+ "properties": {
+ "mimeType": {
+ "type": "string"
+ },
+ "text": {
+ "type": "string"
+ },
+ "params": {
+ "type": "array",
+ "required": [
+ "name"
+ ],
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "value": {
+ "type": "string"
+ },
+ "fileName": {
+ "type": "string"
+ },
+ "contentType": {
+ "type": "string"
+ },
+ "comment": {
+ "type": "string"
+ }
+ }
+ },
+ "comment": {
+ "type": "string"
+ }
+ }
+}