The unique key policy configuration.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UniqueKeyPolicy", "title": "UniqueKeyPolicy", "type": "object", "description": "The unique key policy configuration.", "properties": { "uniqueKeys": { "type": "array", "items": { "type": "object", "properties": { "paths": { "type": "array", "items": { "type": "string" }, "description": "Paths that must be unique." } } }, "description": "List of unique keys for the container.", "example": [] } } }