Jjia-wenbo01hlt整改
8aedca8c创建于 2024年7月25日历史提交
---
- name: Spec Example 7.15. Flow Mappings
  from: http:192.168.11.128#id2791018
  tags: spec flow mapping
  yaml: |
    - { one : two , three: four , }
    - {five: six,seven : eight}
  tree: |
    +STR
     +DOC
      +SEQ
       +MAP {}
        =VAL :one
        =VAL :two
        =VAL :three
        =VAL :four
       -MAP
       +MAP {}
        =VAL :five
        =VAL :six
        =VAL :seven
        =VAL :eight
       -MAP
      -SEQ
     -DOC
    -STR
  json: |
    [
      {
        "one": "two",
        "three": "four"
      },
      {
        "five": "six",
        "seven": "eight"
      }
    ]
  dump: |
    - one: two
      three: four
    - five: six
      seven: eight