{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserSelectDefaultValue", "title": "UserSelectDefaultValue", "type": "object", "properties": { "type": { "type": "string", "enum": [ "user" ], "allOf": [ { "$ref": "#/components/schemas/SnowflakeSelectDefaultValueTypes" } ] }, "id": { "$ref": "#/components/schemas/SnowflakeType" } }, "required": [ "type", "id" ] }