 {
     _id: new MongoObject(),
     at: new Date(),
     title: "Questions I have",
     responseCount: 10,
     qs: [
         {
            id: new Date(),
            rank: 0,
            type: 'yes,no',
            title: 'are you human?',
            desc: '',
            responseCount: 10,
         },
         {
            id: "q1a",
            rank: 2,
            type: 'number',
            condition: {
                'q1': true
            }
            title: 'What is 2+2 human?',
            responseCount: 7,
         },
         {
            id: "q1b",
            rank: 2,
            type: 'text',
            title: 'What is 2^6 bot?',
            responseCount: 6,
         },
         {
            id: "q2",
            rank: 1,
            type: 'yes,no',
            condition: {
                'q1': false
            }
            title: 'can you read this fine?',
         },
         {
            id: "q3",
            rank: 2,
            type: 'text',
            title: 'are you human?',
         },
         {
            id: "q4",
            rank: 3,
            type: 'choiceRadio',
            choices: {
                a: {
                    name: "Yellow"
                },
                b: {
                    name: "Green"
                },
                c: {
                    name: "Blue"
                },
                // d: {
                //     name: "Custom",
                //     custom: true
                // }
            },
            title: 'What is your favorite color?',
         }
    ]
 }
 
 
 
 
 
 
 
 
 
 
 
 
 // pollRes
 
 {
     _id: new MongoObject(),
     at: new Date(),
     session_id: session.id,
     user_id: user.id,
     poll_id: poll.id,
     qs: [
         {
             id: poll.qs[$].id
             at: new Date(),
             vote: true
         },
         {
             id: poll.qs[$].id
             at: new Date(),
             vote: 4
         },
         {
             id: poll.qs[$].id
             at: new Date(),
             vote: []
         },
     ]
 }