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); } ```

Scope:
Scope:
Format:
Scope:
Scope:
Scope:
Scope:
Scope:
Scope:

Note: this artifact is located at Ceylon repository (https://modules.ceylon-lang.org/maven/1/)

Licenses

LicenseURL