"Fossies" - the Fresh Open Source Software Archive 
Member "angular-cli-15.2.4/tests/angular_devkit/core/json/schema/serializers/1.schema.json" (16 Mar 2023, 863 Bytes) of package /linux/www/angular-cli-15.2.4.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) JSON source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 {
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "$id": "JsonSchema",
4 "type": "object",
5 "properties": {
6 "requiredKey": {
7 "type": "number"
8 },
9 "stringKeyDefault": {
10 "type": "string",
11 "default": "defaultValue"
12 },
13 "stringKey": {
14 "type": "string"
15 },
16 "booleanKey": {
17 "type": "boolean"
18 },
19 "numberKey": {
20 "type": "number"
21 },
22 "objectKey1": {
23 "type": "object",
24 "properties": {
25 "stringKey": {
26 "type": "string"
27 },
28 "stringKeyDefault": {
29 "type": "string",
30 "default": "defaultValue2"
31 },
32 "objectKey": {
33 "type": "object",
34 "properties": {
35 "stringKey": {
36 "type": "string"
37 }
38 }
39 }
40 }
41 }
42 },
43 "required": ["requiredKey"]
44 }