1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef COMPONENTS_POLICY_CORE_COMMON_JSON_SCHEMA_CONSTANTS_H_
6 #define COMPONENTS_POLICY_CORE_COMMON_JSON_SCHEMA_CONSTANTS_H_
7 
8 // These constants are shared by code that uses JSON schemas.
9 namespace json_schema_constants {
10 
11 extern const char kAdditionalProperties[];
12 extern const char kArray[];
13 extern const char kBoolean[];
14 extern const char kDescription[];
15 extern const char kEnum[];
16 extern const char kId[];
17 extern const char kInteger[];
18 extern const char kItems[];
19 extern const char kMaximum[];
20 extern const char kMinimum[];
21 extern const char kNumber[];
22 extern const char kObject[];
23 extern const char kPattern[];
24 extern const char kPatternProperties[];
25 extern const char kProperties[];
26 extern const char kRef[];
27 extern const char kRequired[];
28 extern const char kSensitiveValue[];
29 extern const char kString[];
30 extern const char kTitle[];
31 extern const char kType[];
32 
33 }  // namespace json_schema_constants
34 
35 #endif  // COMPONENTS_POLICY_CORE_COMMON_JSON_SCHEMA_CONSTANTS_H_
36