-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathconstants.go
More file actions
29 lines (24 loc) · 1.12 KB
/
constants.go
File metadata and controls
29 lines (24 loc) · 1.12 KB
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
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package specerrors
// Constants to be used for the structured errors
const (
UnassignedCode = ""
// JSE - JSON Schema Errors that can be skipped
MessageRenameToEventOriginalValidation = "JSE00001"
// PSR - Package Spec [General] Rule
CodeNonGASpecOnGAPackage = "PSR00001"
CodePrereleaseFeatureOnGAPackage = "PSR00002"
// SVR - Semantic Validation Rules
CodeKibanaDashboardWithQueryButNoFilter = "SVR00001"
CodeKibanaDashboardWithoutFilter = "SVR00002"
CodeKibanaDanglingObjectsIDs = "SVR00003"
CodeVisualizationByValue = "SVR00004"
CodeMinimumKibanaVersion = "SVR00005"
CodePipelineTagRequired = "SVR00006"
CodeKibanaTagDuplicates = "SVR00007"
CodePipelineOnFailureEventKind = "SVR00008"
CodePipelineOnFailureMessage = "SVR00009"
CodeIntegrationInputQualifierRequired = "SVR00010"
)