Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@ properties:
type:
- integer
- "null"
response:
description: Response configuration for when the rule is triggered.
oneOf:
- type: object
properties:
http_code:
description: The HTTP code that will be sent back to the requester on rule match.
type: integer
- type: "null"
conditions:
description: An array of the specific conditions for the rule.
type: array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ properties:
- type: integer
- type: "null"
- $ref: ../../../../StackVariable.yml
response:
description: Response configuration for when the rule is triggered.
oneOf:
- type: object
properties:
http_code:
description: The HTTP code that will be sent back to the requester on rule match.
type: integer
- type: "null"
- $ref: ../../../../StackVariable.yml
conditions:
description: An array of the specific conditions for the rule.
oneOf:
Expand Down
Loading