{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "description": "Version v4",
    "properties": {
        "entityIds": {
            "items": {
                "type": "string"
            },
            "type": "array"
        },
        "context": {
            "type": "string"
        },
        "detailLevel": {
            "$ref": "/resources/schema/entity/v4/EntityDetailLevel.json"
        },
        "facets": {
            "items": {
                "type": "string"
            },
            "type": "array"
        },
        "date": {
            "type": "string",
            "format": "date-format"
        },
        "api_key": {
            "type": "string"
        },
        "user_id": {
            "type": "string"
        },
        "locale": {
            "type": "string"
        },
        "additional_attributes": {
            "type": "boolean"
        },
        "additional_data": {
            "items": {
                "enum": ["FUEL_TYPE"]
            },
            "type": "array"
        }
    },
    "required": ["entityIds", "user_id"],
    "title": "EntityDetailRequest",
    "type": "object"
}