Last active
December 21, 2018 22:06
-
-
Save reedobrien/b5a8c62b65ada8a1a4cd8e29e1487d7c to your computer and use it in GitHub Desktop.
Revisions
-
reedobrien revised this gist
Dec 21, 2018 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,13 @@ --- foo: # Type Ta bar: eggs: green # URN for type Tb located, resolved, an populated. baz: huzzah or --- foo: # Type Ta bar: urn:example:... # URN for type Tb to be resolved by client if desired. baz: huzzah -
reedobrien revised this gist
Dec 21, 2018 . 2 changed files with 13 additions and 17 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,17 +0,0 @@ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ --- foo: // Type Ta bar: eggs: green // URN for type Tb located, resolved, an populated. baz: huzzah or --- foo: // Type Ta bar: urn:example:... //URN for type Tb to be resolved by client if desired. baz: huzzah -
reedobrien created this gist
Dec 21, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ { "foo": { // Type Ta "bar": "urn:example:...", // URN for type Tb to be resolved by client if desired. "baz": "huzzah", } } or { "foo": { // Type Ta "bar": { "eggs": "green" // Resolved, located, and popluated type Tb. }, "baz": "huzzah" } }