Created
February 8, 2014 13:26
-
-
Save Atlas48/8883687 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"conventionName": "GEEK", | |
"acronymFor": "Gaming Expo East Kent", | |
"Date": { | |
"days": [ | |
21, | |
22, | |
23 | |
], | |
"Month": "Febuary", | |
"Year": 2014 | |
}, | |
"shortDates": [ | |
"21.2.14", | |
"22.2.14", | |
"23.2.14" | |
], | |
"ticketPrices": { | |
"unitType":"GBP", | |
"singleDay": { | |
"Adult": 13, | |
"Child": 7, | |
"Under5s": null, | |
"Concession": 11, | |
"Family": 36, | |
"Evening": 5 | |
}, | |
"multiDay": { | |
"twodayPass": { | |
"Adult": 24, | |
"Child": 12, | |
"Concession": 20 | |
}, | |
"threedayPass": { | |
"Adult": 36, | |
"Child": 18, | |
"Concession": 30 | |
}, | |
"ageRequirements":{ | |
"minimumAdult":15, | |
"minimumuChild":5, | |
"maximumChild":14 | |
}, | |
"concessionDef":"Student and OAPs" | |
} | |
} | |
} |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<details> | |
<Date> | |
<Month>Febuary</Month> | |
<Year>2014</Year> | |
<days> | |
<date>21</date> | |
<date>22</date> | |
<date>23</date> | |
</days> | |
</Date> | |
<acronymFor>Gaming Expo East Kent</acronymFor> | |
<conventionName>GEEK</conventionName> | |
<shortDates> | |
<date>21.2.14</date> | |
<date>22.2.14</date> | |
<date>23.2.14</date> | |
</shortDates> | |
<ticketPrices> | |
<multiDay> | |
<ageRequirements> | |
<maximumChild>14</maximumChild> | |
<minimumAdult>15</minimumAdult> | |
<minimumuChild>5</minimumuChild> | |
</ageRequirements> | |
<concessionDef>Student and OAPs</concessionDef> | |
<threedayPass> | |
<Adult>36</Adult> | |
<Child>18</Child> | |
<Concession>30</Concession> | |
</threedayPass> | |
<twodayPass> | |
<Adult>24</Adult> | |
<Child>12</Child> | |
<Concession>20</Concession> | |
</twodayPass> | |
</multiDay> | |
<singleDay> | |
<Adult>13</Adult> | |
<Child>7</Child> | |
<Concession>11</Concession> | |
<Evening>5</Evening> | |
<Family>36</Family> | |
<Under5s null="true" /> | |
</singleDay> | |
<unitType>GBP</unitType> | |
</ticketPrices> | |
</details> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment