mirror of https://github.com/Seich/Beau.git
Added some missing descriptions to the document schema.
This commit is contained in:
parent
849b823311
commit
c837b93d1b
10
schema.json
10
schema.json
|
|
@ -62,6 +62,7 @@
|
||||||
"properties": {
|
"properties": {
|
||||||
"version": {
|
"version": {
|
||||||
"type": "number",
|
"type": "number",
|
||||||
|
"description": "The beau version this document was created for.",
|
||||||
"enum": [1]
|
"enum": [1]
|
||||||
},
|
},
|
||||||
"endpoint": {
|
"endpoint": {
|
||||||
|
|
@ -69,15 +70,19 @@
|
||||||
"description": "The root endpoint for this host."
|
"description": "The root endpoint for this host."
|
||||||
},
|
},
|
||||||
"cookiejar": {
|
"cookiejar": {
|
||||||
"type": "boolean"
|
"type": "boolean",
|
||||||
|
"description": "Enable cookie support for requests?"
|
||||||
},
|
},
|
||||||
"host": {
|
"host": {
|
||||||
"type": "string"
|
"type": "string",
|
||||||
|
"description": "The name of the current host. It allows referencing requests between different hosts."
|
||||||
},
|
},
|
||||||
"defaults": {
|
"defaults": {
|
||||||
|
"description": "Default values to be added to all requests.",
|
||||||
"$ref": "#/definitions/requestObject"
|
"$ref": "#/definitions/requestObject"
|
||||||
},
|
},
|
||||||
"plugins": {
|
"plugins": {
|
||||||
|
"description": "Plugins to be enabled for this document.",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"anyOf": [
|
"anyOf": [
|
||||||
|
|
@ -88,6 +93,7 @@
|
||||||
},
|
},
|
||||||
"environment": {
|
"environment": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
"description": "Global document variables for easy access.",
|
||||||
"additionalProperties": true,
|
"additionalProperties": true,
|
||||||
"properties": {
|
"properties": {
|
||||||
"_": {
|
"_": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue