JSON Feed for Ceylon provides domain objects and a parser for [JSON Feed](https://jsonfeed.org). To use, parse a JSON string using the `ceylon.json` module, and then convert the resultant `JsonObject` to a [[Feed]] as shown in the code below: ```ceylon import ceylon.json { JsonObject, parseJson = parse } import herd.jsonfeed.core { Feed, parseFeed } shared void run() { String rawJson = ...; assert (is JsonObject json = parseJson(rawJson)); Feed feed = parseFeed(json); } ```

Generate a badge for this artifact.

Type:
Type:
Badges are served from badges.mvnrepository.com.