json-api-schema
Version:
JSON Api Schema is a JSON dialect that can describe any Web Based API that uses JSON to exchange data.
23 lines (14 loc) • 702 B
JavaScript
var Entity, Scope,
__hasProp = {}.hasOwnProperty,
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
Entity = require('./entity');
Scope = (function(_super) {
__extends(Scope, _super);
Scope.entity("Scope");
Scope.accessors("actions", "events", "resources", ["get-key", "put-key", "put-keys", "delete-key"]);
function Scope(options) {
Scope.__super__.constructor.call(this, options);
}
return Scope;
})(Entity);
module.exports = Scope;