= UseCase05 - Create a Listing ** Initiating actor: Owner ** == Description An owner creates a listing for an animal they own. After creation, the system shows the created listing. == Scenario 1. Owner opens "My Animals" page. [[Image(mypets.png)]] {{{ SELECT * FROM pet WHERE owner_id = ? }}} 2. Clicks on the "Create Listing" button. [[Image(listing.png)]] 3. Owner enters listing information and submits it. [[Image(listing2.png)]] 4. System creates the lisitng. {{{ SELECT * FROM owner WHERE user_id = ? INSERT INTO listing (owner_id, animal_id, description, price, status, created_at) VALUES (?, ?, ?, ?, 'ACTIVE', NOW()) }}} [[Image(listing3.png)]]