1
0
Fork 0
waifurudor.de/node_modules/har-schema/lib/cookie.json
2022-04-02 18:40:13 -04:00

36 lines
522 B
JSON

{
"id": "cookie.json#",
"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"
}
}
}