1
0
Fork 0
This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
nexus-archive/assets/PageViewSubmissionJsonSchem...

46 lines
834 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://nexus-archive.zerozero.pl/submit-json",
"type": "object",
"properties": {
"requestStartedAt": {
"type": "string",
"format": "date-time"
},
"responseCompletedAt": {
"type": "string",
"format": "date-time"
},
"method": {
"type": "string",
"enum": [
"GET",
"POST"
]
},
"url": {
"type": "string",
"format": "uri"
},
"formData": {
"type": [
"object",
"null"
],
"additionalProperties": true
},
"responseBody": {
"type": "string"
}
},
"required": [
"requestStartedAt",
"responseCompletedAt",
"method",
"url",
"formData",
"responseBody"
],
"additionalProperties": false
}