YAML-흐름 매핑

YAML의 흐름 매핑은 키 값 쌍의 정렬되지 않은 컬렉션을 나타냅니다. 매핑 노드라고도합니다. 키는 고유하게 유지되어야합니다. 흐름 매핑 구조에 중복 된 키가있는 경우 오류가 발생합니다. 키 순서는 직렬화 트리에서 생성됩니다.

흐름 매핑 구조의 예는 다음과 같습니다.

%YAML 1.1
paper:
   uuid: 8a8cbf60-e067-11e3-8b68-0800200c9a66
   name: On formally undecidable propositions of  Principia Mathematica and related systems I.
   author: Kurt Gödel.
tags:
   - tag:
      uuid: 98fb0d90-e067-11e3-8b68-0800200c9a66
      name: Mathematics
   - tag:
      uuid: 3f25f680-e068-11e3-8b68-0800200c9a66
      name: Logic

JSON 형식의 매핑 된 시퀀스 (순차 목록)의 출력은 다음과 같습니다.

{
   "paper": {
      "uuid": "8a8cbf60-e067-11e3-8b68-0800200c9a66",
      "name": "On formally undecidable propositions of Principia Mathematica and related systems I.",
      "author": "Kurt Gödel."
   },
   "tags": [
      {
         "tag": {
            "uuid": "98fb0d90-e067-11e3-8b68-0800200c9a66",
            "name": "Mathematics"
         }
      },
      {
         "tag": {
            "uuid": "3f25f680-e068-11e3-8b68-0800200c9a66",
            "name": "Logic"
         }
      }
   ]
}

위와 같이이 출력을 관찰하면 키 이름이 YAML 매핑 구조에서 고유하게 유지되는 것이 관찰됩니다.