travel/admin/node_modules/JSV/schemas/json-schema-draft-01/links.json

33 lines
549 B
JSON

{
"$schema" : "http://json-schema.org/hyper-schema#",
"id" : "http://json-schema.org/links#",
"type" : "object",
"properties" : {
"href" : {
"type" : "string"
},
"rel" : {
"type" : "string"
},
"method" : {
"type" : "string",
"default" : "GET",
"optional" : true
},
"enctype" : {
"type" : "string",
"requires" : "method",
"optional" : true
},
"properties" : {
"type" : "object",
"additionalProperties" : {"$ref" : "http://json-schema.org/hyper-schema#"},
"optional" : true
}
}
}