Created
August 6, 2012 20:00
-
-
Save trans/3277989 to your computer and use it in GitHub Desktop.
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 characters
| { "!records": [ | |
| { "!record": { | |
| "game": { "!game &001": { | |
| "date": {"!!date": "March 2, 1962"}, | |
| "versus": "New York" | |
| }}, | |
| "notes": "!!! Awesome !!!", | |
| "number": 100, | |
| "player": { "!player &002": { | |
| "name": "Wilt Chamberlain", | |
| "team": "Philadelphia" | |
| }}, | |
| "record": "Most points single game" | |
| }}, | |
| { "!record": { | |
| "game": "*001", | |
| "notes": "... add note here ...", | |
| "number": 59, | |
| "player": "*002", | |
| "record": "Most points, one half" | |
| }} | |
| ]} |
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 characters
| --- | |
| !records: | |
| - !record: | |
| game: | |
| !game &001: | |
| date: { !!date: March 2, 1962 } | |
| versus: New York | |
| notes: !!! Awesome !!! | |
| number: 100 | |
| player: | |
| !player &002: | |
| name: Wilt Chamberlain | |
| team: Philadelphia | |
| record: Most points single game | |
| - !record: | |
| game: "*001" | |
| notes: ... add note here ... | |
| number: 59 | |
| player: "*002" | |
| record: Most points, one half |
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 characters
| [ | |
| "!records", | |
| { | |
| "!": "record", | |
| "game": { | |
| "!": "game", | |
| "&": "001", | |
| "date": "!!date March 2, 1962", | |
| "versus": "New York" | |
| }, | |
| "notes": ".!!! Awesome !!!", | |
| "number": 100, | |
| "player": { | |
| "!": "player", | |
| "&": "002", | |
| "name": "Wilt Chamberlain", | |
| "team": "Philadelphia" | |
| }, | |
| "record": "Most points single game" | |
| }, | |
| { | |
| "!": "record", | |
| "game": "*001", | |
| "notes": "... add note here ...", | |
| "number": 59, | |
| "player": "*002", | |
| "record": "Most points, one half" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment