-
Notifications
You must be signed in to change notification settings - Fork 597
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert all json properties to support string too
- Loading branch information
Showing
723 changed files
with
7,829 additions
and
872 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
20 changes: 20 additions & 0 deletions
20
src/cfnlint/data/schemas/patches/providers/all/alexa_ask_skill/overrides_manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/definitions/Overrides/properties/Manifest", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/definitions/Overrides/properties/Manifest", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
35 changes: 18 additions & 17 deletions
35
src/cfnlint/data/schemas/patches/providers/all/aws_apigateway_model/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/Schema", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/Schema", | ||
"value": { | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
{ | ||
"op": "test", | ||
"path": "/properties/Schema", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/Schema", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
35 changes: 18 additions & 17 deletions
35
src/cfnlint/data/schemas/patches/providers/all/aws_apigateway_restapi/body.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/Body", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/Body", | ||
"value": { | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
{ | ||
"op": "test", | ||
"path": "/properties/Body", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/Body", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
35 changes: 18 additions & 17 deletions
35
src/cfnlint/data/schemas/patches/providers/all/aws_apigateway_restapi/policy.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/Policy", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/Policy", | ||
"value": { | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
{ | ||
"op": "test", | ||
"path": "/properties/Policy", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/Policy", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
Empty file.
20 changes: 20 additions & 0 deletions
20
src/cfnlint/data/schemas/patches/providers/all/aws_apigatewayv2_api/body.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/Body", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/Body", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
22 changes: 22 additions & 0 deletions
22
src/cfnlint/data/schemas/patches/providers/all/aws_apigatewayv2_api/tags.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/Tags", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/Tags", | ||
"value": { | ||
"additionalProperties": false, | ||
"patternProperties": { | ||
".*": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object" | ||
} | ||
} | ||
] |
Empty file.
20 changes: 20 additions & 0 deletions
20
...oviders/all/aws_apigatewayv2_apigatewaymanagedoverrides/stageoverrides_routesettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/definitions/StageOverrides/properties/RouteSettings", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/definitions/StageOverrides/properties/RouteSettings", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
20 changes: 20 additions & 0 deletions
20
...viders/all/aws_apigatewayv2_apigatewaymanagedoverrides/stageoverrides_stagevariables.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/definitions/StageOverrides/properties/StageVariables", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/definitions/StageOverrides/properties/StageVariables", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
Empty file.
22 changes: 22 additions & 0 deletions
22
src/cfnlint/data/schemas/patches/providers/all/aws_apigatewayv2_domainname/tags.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/Tags", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/Tags", | ||
"value": { | ||
"additionalProperties": false, | ||
"patternProperties": { | ||
".*": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object" | ||
} | ||
} | ||
] |
Empty file.
20 changes: 20 additions & 0 deletions
20
...nt/data/schemas/patches/providers/all/aws_apigatewayv2_integration/requestparameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/RequestParameters", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/RequestParameters", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
20 changes: 20 additions & 0 deletions
20
...int/data/schemas/patches/providers/all/aws_apigatewayv2_integration/requesttemplates.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/RequestTemplates", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/RequestTemplates", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
20 changes: 20 additions & 0 deletions
20
...t/data/schemas/patches/providers/all/aws_apigatewayv2_integration/responseparameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/ResponseParameters", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/ResponseParameters", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
Empty file.
20 changes: 20 additions & 0 deletions
20
...chemas/patches/providers/all/aws_apigatewayv2_integrationresponse/responseparameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/ResponseParameters", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/ResponseParameters", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
20 changes: 20 additions & 0 deletions
20
...schemas/patches/providers/all/aws_apigatewayv2_integrationresponse/responsetemplates.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/ResponseTemplates", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/ResponseTemplates", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
Empty file.
20 changes: 20 additions & 0 deletions
20
src/cfnlint/data/schemas/patches/providers/all/aws_apigatewayv2_model/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"op": "test", | ||
"path": "/properties/Schema", | ||
"value": { | ||
"type": "object" | ||
} | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/properties/Schema", | ||
"value": { | ||
"format": "json", | ||
"type": [ | ||
"object", | ||
"string" | ||
] | ||
} | ||
} | ||
] |
Empty file.
Oops, something went wrong.