Experimental
Schema
ExactPolicySource
Type:
object
ExactPolicySource identifies the nonsecret authority of a leaf expression.
id
· required
Type:
string
id identifies that source without exposing credentials or policy content.
All schema constraints and annotations
{
"description": "id identifies that source without exposing credentials or policy content.",
"minLength": 1,
"type": "string"
}origin
· required
Schema:
ExactPolicyOrigin
origin distinguishes the authority that supplied this leaf.
All schema constraints and annotations
{
"$ref": "#/components/schemas/ExactPolicyOrigin",
"description": "origin distinguishes the authority that supplied this leaf.",
"not": {
"enum": [
"unspecified"
]
}
}All schema constraints and annotations
{
"description": "ExactPolicySource identifies the nonsecret authority of a leaf expression.",
"properties": {
"id": {
"description": "id identifies that source without exposing credentials or policy content.",
"minLength": 1,
"type": "string"
},
"origin": {
"$ref": "#/components/schemas/ExactPolicyOrigin",
"description": "origin distinguishes the authority that supplied this leaf.",
"not": {
"enum": [
"unspecified"
]
}
}
},
"required": [
"origin",
"id"
],
"title": "ExactPolicySource",
"type": "object"
}