Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Each study has one (and only one) required consent that must be signed to enroll in the study, and any number of optional, supplemental consents that can be presented to the user.

class Consent {
    String guid;
    String name;
    String description;
    // Name of the approving IRB
    String approvedBy;
    DateTime approvedOn;
    DateTime approvalExpiresOn;
    List<DocumentSection> sections
    // timestamps, deleted, version
}

class DocumentSection {

}

  • No labels