twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

json-ref (435B)


      1 {
      2 	"$schema" : "http://json-schema.org/draft-02/hyper-schema#",
      3 	"id" : "http://json-schema.org/draft-02/json-ref#",
      4 	
      5 	"items" : {"$ref" : "#"},
      6 	"additionalProperties" : {"$ref" : "#"},
      7 	
      8 	"links" : [
      9 		{
     10 			"href" : "{$ref}",
     11 			"rel" : "full"
     12 		},
     13 		
     14 		{
     15 			"href" : "{$schema}",
     16 			"rel" : "describedby"
     17 		},
     18 		
     19 		{
     20 			"href" : "{id}",
     21 			"rel" : "self"
     22 		}
     23 	],
     24 	
     25 	"fragmentResolution" : "dot-delimited"
     26 }