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#include "components/json_schema/json_schema_constants.h"
6
7namespace json_schema_constants {
8
9const char kAdditionalProperties[] = "additionalProperties";
10const char kAny[] = "any";
11const char kArray[] = "array";
12const char kBoolean[] = "boolean";
13const char kChoices[] = "choices";
14const char kDescription[] = "description";
15const char kEnum[] = "enum";
16const char kId[] = "id";
17const char kInteger[] = "integer";
18const char kItems[] = "items";
19const char kMaximum[] = "maximum";
20const char kMaxItems[] = "maxItems";
21const char kMaxLength[] = "maxLength";
22const char kMinimum[] = "minimum";
23const char kMinItems[] = "minItems";
24const char kMinLength[] = "minLength";
25const char kNull[] = "null";
26const char kNumber[] = "number";
27const char kObject[] = "object";
28const char kOptional[] = "optional";
29const char kPattern[] = "pattern";
30const char kPatternProperties[] = "patternProperties";
31const char kProperties[] = "properties";
32const char kRef[] = "$ref";
33const char kSchema[] = "$schema";
34const char kString[] = "string";
35const char kTitle[] = "title";
36const char kType[] = "type";
37
38}  // namespace json_schema_constants
39