{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "RSIRequest",
	"type": "object",
	"additionalProperties": false,
	"description": "Analytics-v3 .. RSI request object",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v3/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": ["RSI_REQUEST"]
		},
		"schema_definition": {
			"type": "string",
			"enum": ["RSIRequest"]
		},
		"type": {
			"type": "string",
			"enum":["SENT", "RECIEVED"],
			"description": "Specify if request was sent from RSI to HMI or received by HMI "
		},
		"search_id": {
            "type": "string",
            "description": "LogID of the search event that triggered the first result page. For example, in case of pagination, the second search event logged (i.e. the 2nd page) should capture search_id as the log id of the search that rendered the first page. For the first page search_id would be same as log_id."
        },
        "display_screen": {
            "type": "string",
            "description": "HMI display screen, sent only when type is received"
        },
		"nav_id": {
			"type": "string",
			"description": "nav_id of the associated nav event"
		}
	},
	"required": [
		"log_context",
		"event_name",
		"schema_definition",
		"type",
		"search_id"
	]
}