Blame view

node_modules/har-schema/lib/cookie.json 579 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  {
    "$id": "cookie.json#",
    "$schema": "http://json-schema.org/draft-06/schema#",
    "type": "object",
    "required": [
      "name",
      "value"
    ],
    "properties": {
      "name": {
        "type": "string"
      },
      "value": {
        "type": "string"
      },
      "path": {
        "type": "string"
      },
      "domain": {
        "type": "string"
      },
      "expires": {
        "type": ["string", "null"],
        "format": "date-time"
      },
      "httpOnly": {
        "type": "boolean"
      },
      "secure": {
        "type": "boolean"
      },
      "comment": {
        "type": "string"
      }
    }
  }