Sample State - annkim10/pupfinder GitHub Wiki


{
    entities: {
        pups: {
            1: {
                id: 1, 
                org_id: 1,
                pupName: 'Chloe',
                pupBreed: 'Hound Mix',
                pupSize: 'Medium',
                pupGender: 'Female',
                pupAge: 'Adult',
                pupBio: 'Meet Chloe! She is a 2 year old, 38 pound, female, Hound Mix. This dashing southern girl has arrived to us here in NYC from our friends in South Carolina and she is full of that famous southern charm.'
            },
            2: {
                id: 2, 
                org_id: 1, 
                pupName: 'Victor',
                pupBreed: 'Miniature Poodle',
                pupSize: 'Small',
                pupGender: 'Male',
                pupAge: 'Senior',
                pupBio: 'Meet Victor our senior superstar! He is a 10 year old, 10 pound, male, Miniature Poodle. This precious boy is truly what makes rescue work so special. Victor has arrived to the ALR family from our friends in South Carolina where he was found as a stray' 
            }
        },
        rescueOrgs: {
            1: {
                id: 1, 
                orgName: 'Animal Lighthouse Rescue',
                orgAddress: 'PO Box 30349 New York, NY 10011',
                orgEmail: '[email protected]',
                orgPhone: '999-999-9999',
                orgWebsite: 'www.ALRcares.com',
                orgBio: 'We are Animal Lighthouse Rescue, a non-profit organization dedicated to the rescue of satos through our no-kill shelter El Faro de los Animales and a team of volunteers in New York. Our mission is to better the quality of life for abandoned satos in Puerto Rico by educating the local communities, helping establish humane treatment options, and placing them in loving homes.'
                pupsIds: [1, 2]
            }
        },
        users: {
            10: {
                id: 10,
                username: 'petlover24',
            },
            11: {
                id: 11,
                username: 'animal_lighthouse_rescue_admin',
            },
        },
        favorites: {
            1: {
                id: 1, 
                userId: 1, 
                pupId: 1,
            }
        },
        ui: {
            modal: 'login'
        },
        errors: {
            login: ['Invalid Credentials'],
            userForm: ['Please fill out all required fields']
        },
        session: {
            currentUserId: 10
        }

    }
}