Files
opencloud/vendor/github.com/open-policy-agent/opa/schemas/authorizationPolicy.json
dependabot[bot] 1f069c7c00 build(deps): bump github.com/open-policy-agent/opa from 0.51.0 to 0.59.0
Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 0.51.0 to 0.59.0.
- [Release notes](https://github.com/open-policy-agent/opa/releases)
- [Changelog](https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-policy-agent/opa/compare/v0.51.0...v0.59.0)

---
updated-dependencies:
- dependency-name: github.com/open-policy-agent/opa
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-05 09:47:11 +01:00

44 lines
740 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Schema for the OPA Authorization Policy Input document",
"type": "object",
"properties": {
"identity": {
"type": "string"
},
"client_certificates": {
"type": "array",
"items": {
"type": "object"
}
},
"method": {
"type": "string"
},
"path": {
"type": "array",
"items": {
"type": "string"
}
},
"params": {
"type": "object"
},
"headers": {
"type": "object"
},
"body": {
"type": "object"
}
},
"required": [
"identity",
"client_certificates",
"method",
"path",
"params",
"headers",
"body"
]
}