PolicyValue

  • Policy values are stored alongside their schema for clear association.

  • The policySchema field identifies the specific policy governing the value.

  • value holds the actual policy data, structured according to its schema, and represented in Struct format.

A particular value for a policy managed by the service.

JSON representation
{
  "policySchema": string,
  "value": {
    object
  }
}
Fields
policySchema

string

The fully qualified name of the policy schema associated with this policy.

value

object (Struct format)

The value of the policy that is compatible with the schema that it is associated with.