chromium/components/policy/core/common/json_schema_constants.h

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_POLICY_CORE_COMMON_JSON_SCHEMA_CONSTANTS_H_
#define COMPONENTS_POLICY_CORE_COMMON_JSON_SCHEMA_CONSTANTS_H_

// These constants are shared by code that uses JSON schemas.
namespace json_schema_constants {

extern const char kAdditionalProperties[];
extern const char kArray[];
extern const char kBoolean[];
extern const char kDescription[];
extern const char kEnum[];
extern const char kId[];
extern const char kInteger[];
extern const char kItems[];
extern const char kMaximum[];
extern const char kMinimum[];
extern const char kNumber[];
extern const char kObject[];
extern const char kPattern[];
extern const char kPatternProperties[];
extern const char kProperties[];
extern const char kRef[];
extern const char kRequired[];
extern const char kSensitiveValue[];
extern const char kString[];
extern const char kTitle[];
extern const char kType[];

}  // namespace json_schema_constants

#endif  // COMPONENTS_POLICY_CORE_COMMON_JSON_SCHEMA_CONSTANTS_H_