YAML - JSON 模式

YAML 中的 JSON 模式被视为大多数现代计算机语言的共同点。它允许解析 JSON 文件。强烈建议在 YAML 中考虑 JSON 模式中的其他模式。这样做的主要原因是它包含用户友好的键值组合。消息可以编码为键,并​​可以在需要时使用。

JSON 模式是标量,缺少值。JSON 模式中的映射条目以某些键和值对的格式表示,其中 null 被视为有效。

示例

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
}

示例

以下示例表示布尔 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 模式 −

negative: !!int -12
zero: !!int 0
positive: !!int 34
整数生成的 JSON 模式的输出如下所示:
{
   "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"
   ]
}