YAML
YAML Ain't Markup Language, 마크업언어가 아닌 데이터 직렬화 양식임을 강조하는 재귀적 약자
주로 데이터를 구조화하고 전달하는데 사용
들여쓰기, 매핑(키-값), 시퀀스(값의 리스트), 주석, 문자열, 특수값(null, true, false), 앵커(&), 별칭(*)으로 구성
# 매핑 예제
person:
name: John
age: 30
city: New York
# 시퀀스 예제
fruits:
- apple
- banana
- orange
# 문자열 예제
description: "This is a string."
multiline: |
This is a multiline
string.
# 특수한 값 예제
boolean_values:
- true
- false
# 앵커 및 별칭 예제
anchors:
- &first_anchor This is the first anchor
- *first_anchor # 별칭을 사용하여 앵커 참조
https://standout.tistory.com/1490
'이론' 카테고리의 다른 글
EFTA 유럽 자유 무역 협회, European Free Trade Association (0) | 2024.04.15 |
---|---|
IT 인프라를 효율적으로 자동화하고 관리하는 Ansible (0) | 2024.04.02 |
Markup 마크업과 Markdown 마크다운 (0) | 2024.04.02 |
DDoS 대량의 트래픽을 전송하여 서비스를 중단하다 (0) | 2024.03.22 |
아키텍처 다이어그램, 구조와 구성 요소 간의 관계 (0) | 2024.02.29 |