{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-schema/glue-databrew-statistics-configuration-schema.json", "title": "StatisticsConfiguration", "description": "Configuration of evaluations for a profile job. This configuration can be used to select evaluations and override the parameters of selected evaluations. ", "type": "object", "properties": { "IncludedStatistics": { "allOf": [ { "$ref": "#/components/schemas/StatisticList" }, { "description": "List of included evaluations. When the list is undefined, all supported evaluations will be included." } ] }, "Overrides": { "allOf": [ { "$ref": "#/components/schemas/StatisticOverrideList" }, { "description": "List of overrides for evaluations." } ] } } }