-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.lkml
42 lines (36 loc) · 1.09 KB
/
manifest.lkml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
project_name: "looker_lams_poc"
#LAMS
#rule_exemptions: {
# F3: "Measures do not need a filter"
#}
#rule: field_label {
# description: "All fields should have a label"
# match: "$.model.*.view.*['dimension','measure'].*"
# expr_rule: (!== ::match:label undefined) ;;
#}
#rule: date_description {
# description: "All date fields descriptions should start with 'Date'"
# match: "$.model.*.view.*.dimension_group[?(@.timeframes)]"
# expr_rule: ($boolean ($match
# "^Date"
# ::match:description
# )) ;;
#}
#rule: value_format {
# description: "All measures should declare a value_format or a value_format_name"
# match: "$.model.*.view.*.measure.*"
# expr_rule: ($any
# (!== ::match:value_format undefined)
# (!== ::match:value_format_name undefined)
# ) ;;
#}
#rule: join_relationship {
# description: "All joins in an explore should declare a relationship"
# match: "$.model.*.explore.*.join.*"
# expr_rule: (!== ::match:relationship undefined) ;;
#}
#rule: tests {
# description: "The project should contain tests"
# match: "$.model.*"
# expr_rule: (!== ::match:test undefined) ;;
#}