From 607311d6776a369072f624f5fb763a698ad4f16c Mon Sep 17 00:00:00 2001 From: Chris Boot Date: Sun, 16 Dec 2018 14:12:54 +0000 Subject: [PATCH] Swagger: fix definition for putTSIGKey operation `properties` is not valid within the `parameters` specification; it looks like it should be `schema` instead. --- docs/http-api/swagger/authoritative-api-swagger.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/http-api/swagger/authoritative-api-swagger.yaml b/docs/http-api/swagger/authoritative-api-swagger.yaml index b96dbe055..57382c308 100644 --- a/docs/http-api/swagger/authoritative-api-swagger.yaml +++ b/docs/http-api/swagger/authoritative-api-swagger.yaml @@ -809,7 +809,7 @@ paths: parameters: - name: tsigkey description: A (possibly stripped down) TSIGKey object with the new values - properties: + schema: $ref: '#/definitions/TSIGKey' in: body required: true -- 2.40.0