| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- module.exports = {
- users: [],
- profiles: [],
- tags: [
- {
- tag_id: 1,
- tag_category: 'verification',
- tag_description: 'verified',
- is_active: true,
- },
- ],
- tag_associations: [
- {
- tag_association_id: 1,
- profile_id: 1,
- tag_id: 1,
- is_deleted: false,
- },
- {
- tag_association_id: 2,
- profile_id: 2,
- tag_id: 1,
- is_deleted: false,
- },
- {
- tag_association_id: 3,
- profile_id: 3,
- tag_id: 1,
- is_deleted: false,
- },
- {
- tag_association_id: 4,
- profile_id: 5,
- tag_id: 1,
- is_deleted: false,
- },
- ],
- response_keys: [
- {
- response_key_id: 1,
- response_key_category: 'grit',
- response_key_prompt: 'what is your name',
- response_key_description: null,
- },
- {
- response_key_id: 2,
- response_key_category: 'openness',
- response_key_prompt: 'what is your favorite color',
- response_key_description: null,
- },
- {
- response_key_id: 3,
- response_key_category: 'bravery',
- response_key_prompt: 'what is your quest',
- response_key_description: null,
- },
- {
- response_key_id: 4,
- response_key_category: 'empathy',
- response_key_prompt:
- 'what is the average flight speed of an unladen swallow',
- response_key_description: null,
- },
- {
- response_key_id: 5,
- response_key_category: 'honesty',
- response_key_prompt: 'what is your favorite color',
- response_key_description: null,
- },
- {
- response_key_id: 6,
- response_key_category: 'respect',
- response_key_prompt: 'what kind of schedule are you looking for',
- response_key_description: null,
- },
- {
- response_key_id: 7,
- response_key_category: 'locationPref',
- response_key_prompt: 'what is your zip code',
- response_key_description: null,
- },
- ],
- responses: [],
- memberships: [],
- groupings: [],
- messages: [],
- match_queues: [],
- }
|