Skip to content

Instantly share code, notes, and snippets.

@hburgund
Last active March 9, 2016 19:38
Show Gist options
  • Save hburgund/7c4b980484ff93bcd07c to your computer and use it in GitHub Desktop.
Save hburgund/7c4b980484ff93bcd07c to your computer and use it in GitHub Desktop.
Sample results from proposed new tags endpoint: http://devapi.digita11y.org/api/2/projects/1/tags/?session_id=1
{"tags":[
{
"id": 10,
"tag_category": 1,
"value": "Ropes Mansion",
"description": "a big house",
"data": "{'text': 'some optional JSON'}",
"relationships": [
{
"id": 100,
"parent": null
}
]
},
{
"id": 11,
"tag_category": 1,
"value": "Native Fashion",
"description": "nice digs",
"data": "some optional data",
"relationships": [
{
"id": 101,
"parent": null
}
]
},
{
"id": 12,
"tag_category": 1,
"value": "Strandbeest",
"description": "pvc madness",
"data": "some optional data",
"relationships": [
{
"id": 102,
"parent": null
}
]
},
{
"id": 20,
"tag_category": 2,
"value": "Kitchen",
"description": "do some cooking",
"data": "some optional data",
"relationships": [
{
"id": 103,
"parent": 100
}
]
},
{
"id": 21,
"tag_category": 2,
"value": "Dining Room",
"description": "eat some food",
"data": "{'text': 'some optional JSON'}",
"relationships": [
{
"id": 104,
"parent": 100
}
]
},
{
"id": 30,
"tag_category": 3,
"value": "Plates",
"description": "spinning",
"data": "some optional data",
"relationships": [
{
"id": 105,
"parent": 103
}
]
},
{
"id": 31,
"tag_category": 3,
"value": "The Maids",
"description": "help",
"data": "some optional data",
"relationships": [
{
"id": 106,
"parent": 103
}
]
},
{
"id": 32,
"tag_category": 3,
"value": "Historic Utensils",
"description": "do not break",
"data": "some optional data",
"relationships": [
{
"id": 107,
"parent": 103
}
]
},
{
"id": 33,
"tag_category": 3,
"value": "Recipes",
"description": "follow closely",
"data": "{'text': 'some optional JSON'}",
"relationships": [
{
"id": 108,
"parent": 103
}
]
},
{
"id": 40,
"tag_category": 4,
"value": "Male",
"description": "men",
"data": "some optional data",
"relationships": [
{
"id": 109,
"parent": null
}
]
},
{
"id": 41,
"tag_category": 4,
"value": "Female",
"description": "women",
"data": "some optional data",
"relationships": [
{
"id": 110,
"parent": null
}
]
},
{
"id": 50,
"tag_category": 5,
"value": "Describe the site from where you are standing.",
"description": "describe",
"data": "some optional data",
"relationships": [
{
"id": 111,
"parent": null
}
]
},
{
"id": 51,
"tag_category": 5,
"value": "Tell a short story about the history of where you are standing.",
"description": "story",
"data": "some optional data",
"relationships": [
{
"id": 112,
"parent": null
}
]
},
{
"id": 52,
"tag_category": 5,
"value": "Record ambient sounds the the site hears.",
"description": "ambient",
"data": "some optional data",
"relationships": [
{
"id": 113,
"parent": null
}
]
}
]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment