YAML JSON模式
在YAML中,JSON模式被视为大多数现代计算机语言的共同基础。它允许解析JSON文件。在YAML中,强烈建议考虑使用其他基于JSON模式的模式。主要原因是它包含了用户友好的键值组合。消息可以被编码为键,并在需要时使用。
JSON模式是纯量的,缺乏一个值。在JSON模式中,映射条目的表示形式以某个键和值对的格式呈现,其中null被视为有效。
示例
空的JSON模式如下所示:
!!null null: value for null key
key with null value: !!null null
JSON表示的输出如下所示:
{
"null": "value for null key",
"key with null value": null
}
示例
以下示例表示Boolean JSON模式 –
YAML is a superset of JSON: !!bool true
Pluto is a planet: !!bool false
以下是以JSON格式输出的结果−
{
"YAML is a superset of JSON": true,
"Pluto is a planet": false
}
示例
下面的示例表示整数JSON schema –
negative: !!int -12
zero: !!int 0
positive: !!int 34
{
"positive": 34,
"zero": 0,
"negative": -12
}
实例
JSON模式中的标签用以下示例表示-
A null: null
Booleans: [ true, false ]
Integers: [ 0, -0, 3, -19 ]
Floats: [ 0., -0.0, 12e03, -2E+05 ]
Invalid: [ True, Null, 0o7, 0x3A, +12.3 ]
以下是JSON输出的示例:
{
"Integers": [
0,
0,
3,
-19
],
"Booleans": [
true,
false
],
"A null": null,
"Invalid": [
true,
null,
"0o7",
58,
12.300000000000001
],
"Floats": [
0.0,
-0.0,
"12e03",
"-2E+05"
]
}