Added some missing descriptions to the document schema. (#164)

This commit is contained in:
David Díaz 2020-11-21 22:29:49 -06:00 committed by GitHub
parent 849b823311
commit 7adba8e3dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -62,6 +62,7 @@
"properties": {
"version": {
"type": "number",
"description": "The beau version this document was created for.",
"enum": [1]
},
"endpoint": {
@ -69,15 +70,19 @@
"description": "The root endpoint for this host."
},
"cookiejar": {
"type": "boolean"
"type": "boolean",
"description": "Enable cookie support for requests?"
},
"host": {
"type": "string"
"type": "string",
"description": "The name of the current host. It allows referencing requests between different hosts."
},
"defaults": {
"description": "Default values to be added to all requests.",
"$ref": "#/definitions/requestObject"
},
"plugins": {
"description": "Plugins to be enabled for this document.",
"type": "array",
"items": {
"anyOf": [
@ -88,6 +93,7 @@
},
"environment": {
"type": "object",
"description": "Global document variables for easy access.",
"additionalProperties": true,
"properties": {
"_": {