{"id":42273139,"url":"https://github.com/coder7475/yaml","last_synced_at":"2026-01-27T07:30:51.814Z","repository":{"id":254951411,"uuid":"847819869","full_name":"coder7475/yaml","owner":"coder7475","description":null,"archived":false,"fork":false,"pushed_at":"2024-09-07T04:41:59.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-09-07T05:49:19.520Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coder7475.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-26T15:55:10.000Z","updated_at":"2024-09-07T04:42:02.000Z","dependencies_parsed_at":"2024-08-29T08:43:03.644Z","dependency_job_id":null,"html_url":"https://github.com/coder7475/yaml","commit_stats":null,"previous_names":["coder7475/yaml"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/coder7475/yaml","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder7475%2Fyaml","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder7475%2Fyaml/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder7475%2Fyaml/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder7475%2Fyaml/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coder7475","download_url":"https://codeload.github.com/coder7475/yaml/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder7475%2Fyaml/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28808012,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T07:14:39.408Z","status":"ssl_error","status_checked_at":"2026-01-27T07:14:39.098Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-27T07:30:49.037Z","updated_at":"2026-01-27T07:30:51.808Z","avatar_url":"https://github.com/coder7475.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# YAML\n\n**The topics covered**:\n\n- Introduction\n\n- Syntax\n\n- Properties / Data Types\n\n- yaml tools\n\n## What is YAML?\n\n**YAML ain't markup language**.\n\nYAML is:\n\n- Data format used to exchange data\n\n- similar to file formats like like toml or ini\n\n- Similar to XML \u0026 JSON\n\n- These files contain text data arranged in a hierarchical structure\n\n- Store only data, not commands\n\n- Storing is called **Data Serialization**\n\nSo YAML is a data serialization language.\n\n## Data Serialization\n\n- YAML serializes objects to files and deserializes files to object\n\n## Benefits\n\n- Lightweight\n- Simple \u0026 Easy to Read\n- Friendly readable and writable\n- Strict syntax - indentation is important\n- Easily convertible to JSON, XML\n- Suitable for configuration settings\n- Used in most languages\n- Parsing is easy\n- Powerful when representing complex data\n- Simple to modify with any text editor\n- Many tools available\n\n## Disadvantages\n\n- It is a new format introduced recently, and a learning curve exists.\n- Not much popular other than XML and JSON\n- It is very complex to represent configuration in the hierarchy of data\n\n## What is the file extension?\n\nyaml files are created with the extension `.yaml` or `.yml`. You can use any IDE or text editor to open this file.\n\n## What is the YAML media type?\n\nMedia or MIME types are present in request headers with `Content-Type` and `Accept` during data transfer between systems.\n\nAccording to IANA , there is no official MIME type for YAML document content.\n\nHowever, it can be represented using MIME types such as `text/yaml`, `text/x-yaml`, or `application/x-yaml`.\n\nDuring the transfer of YAML data between a client and a server, implementation vendors include MIME type settings specified in requests and responses over the internet. The commonly used MIME format type for YAML is `text/yaml`.\n\nFollowing is the mime type for these documents\n\n```bash\ncontent-type: text/yaml\n```\n\nor\n\n```bash\naccepts: text/yaml\n```\n\nThe other possible options include:\n\n- text/yaml\n- text/yml\n- text/x-yaml\n- application/yaml\n- application/yml\n\nThe choice among these options depends on the browser and the supported programming language. For instance, **Chrome** accepts `application/yaml`.\n\n## References\n\n- [Complete YAML course](https://www.youtube.com/watch?v=IA90BTozdow\u0026list=PL9gnSGHSqcnoqBXdMwUTRod4Gi3eac2Ak\u0026index=6)\n\n- [Doc](https://www.w3schools.io/file/yaml-introduction/)\n\n## Tools\n\n- [YAML Lint](https://www.yamllint.com/)\n- [YAML VALIDATOR] (https://jsonformatter.org/yaml-validator)\n- [YAML to JSON](https://onlineyamltools.com/convert-yaml-to-json)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoder7475%2Fyaml","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoder7475%2Fyaml","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoder7475%2Fyaml/lists"}