Skip to content

Commit

Permalink
Merge pull request #1095 from eloycoto/THREESCALE-3046
Browse files Browse the repository at this point in the history
THREESCALE-3046: Fix policy jsonschema.
  • Loading branch information
davidor authored Jul 22, 2019
2 parents 6f741cf + 535f357 commit 6af41f7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Added

- Introduce possibility of specifying policy order restrictions in their schemas. APIcast now shows a warning when those restrictions are not respected [#1088](https://github.com/3scale/APIcast/pull/1088), [THREESCALE-2896](https://issues.jboss.org/browse/THREESCALE-2896)

### Fixed

- Fix typos on JWT claim policy jsonschema [THREESCALE-3046](https://issues.jboss.org/browse/THREESCALE-3046)

## [3.6.0-rc1] - 2019-07-04

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
"rules": {
"type": "array",
"items": {
"required": [
"resource"
],
"properties": {
"combine_op": {
"type": "string",
Expand Down Expand Up @@ -67,6 +70,7 @@
"$ref": "#/definitions/value_type"
},
"operations": {
"description": "Operations to perform the condition",
"type": "array",
"items": {
"required": [
Expand Down Expand Up @@ -99,7 +103,7 @@
"type": "string"
},
"value_type": {
"description": "How to evaluate 'jwt_claim' value",
"description": "How to evaluate 'value' field",
"$ref": "#/definitions/value_type"
}
}
Expand Down

0 comments on commit 6af41f7

Please sign in to comment.