We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 098ed3f + 483f1d6 commit d49c31fCopy full SHA for d49c31f
spec/openapi.yaml
@@ -969,7 +969,6 @@ components:
969
policyName:
970
type: string
971
quarantineDate:
972
- format: date-time
973
974
quarantined:
975
type: boolean
update-spec.py
@@ -508,5 +508,11 @@
508
}
509
510
511
+# Remove `date-time` format for `quarantineDate`
512
+print('Patching schema: ApiComponentChangeActionDTO...')
513
+json_spec['components']['schemas']['ApiFirewallQuarantinedComponentDto']['properties']['quarantineDate'] = {
514
+ 'type': 'string'
515
+}
516
+
517
with open('./spec/openapi.yaml', 'w') as output_yaml_specfile:
518
output_yaml_specfile.write(yaml_dump(json_spec))
0 commit comments