{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "CreateModelInDataLabRequest",
	"type": "object",
	"description": "API Path: /dpalgo/v3/createModelInDataLabRequest, the Create Model In Data Lab Request object ",
	"properties": {
		"user_id": {
			"type": "string",
			"description": "User ID of user. Same as reg_vid in log_context"
		},
		"product_name": {
			"$ref": "/resources/schema/dpalgo/v3/ProductNameValues.json",
			"description": "Product Names supported for models"
		},
		"show_predictions": {
			"type": "boolean",
			"description": "Should Predictions be shown for the user. i.e. if false , model will be deleted."
		}				
	},
	"required": [
		"user_id",
		"product_name",
		"show_predictions"
	]
}